Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: StylizIT
  • Order by date
  1. StylizIT

    regex how to find the " char in a string

    thanks for the help, but I already fixed my problem:) I used regex.ismatch(me.text, "\W"). The problem I'm facing now is that I also want to check if the first char in a string is a space with regex. If so it should return false. You can better regret that you have done something than regret...
  2. StylizIT

    regex how to find the " char in a string

    anyone know the expression to find the " character in a string? You can better regret that you have done something than regret the fact you done nothing
  3. StylizIT

    my dbms transforms my dates

    sorry guys for my disapaering lately, I was working on another project. The problem has been solved, the dates were like this: insert into tb1(date1)values(01-01-2004) this gives problems. now they are inserted like this: insert into tb1(date1)values('01-01-2004') I only don't understand 1...
  4. StylizIT

    my dbms transforms my dates

    Where The experts at??? You can better regret that you have done something than regret the fact you done nothing
  5. StylizIT

    my dbms transforms my dates

    Hi all, i 've got a real strange problem. I 'v got an asp.net/vb.net application and a mssql db at the end. I have a form where I can insert some info in the tables. Everything went well for a couple of months, but now my dates transform on a real strange way. no matter wich date I give up...
  6. StylizIT

    Backup my deleted records

    Hi all, I have a db with 15 tables and I want to keep records that have been deleted. Now I don't know where to start: Must I keep the same structure as the main db or can I also dump all the data in one table? what are the advantages and disatvantages of the named possibilities. If someone...
  7. StylizIT

    Homepage-address sticks around

    already solved it: in your link code you need to put the full address including http:// otherwise your browser interprets it as a directory of the current site. You can better regret that you have done something than regret the fact you done nothing
  8. StylizIT

    Homepage-address sticks around

    Hi, In my window I have a heyperlink to another page. Lets say www.tek-tips.com, when I click on the hyperlink it opens a new I-explorer, but has in the address-bar the next link: http://my-homepage-address/www.tek-tips.com. Can anyone help me from this.. You can better regret that you have...
  9. StylizIT

    datagrid is confused.

    I already fixed it, When I push the button it gives a value to a variable. When you click the paging-thing, the variable= "" So i build a check to see the length and only do something when the length > 0. Thnx Anyway You can better regret that you have done something than regret the fact...
  10. StylizIT

    datagrid is confused.

    Hi all, I've got a datagrid and it worx almost perfect, the only thing that's bothering me is next: The paging-property of the grid is set to true and it is paging well. But now I've got a button in my datagrid and the button gets a couple of statistics of the column where the button is. The...
  11. StylizIT

    refilling dropdownlist on another page

    thanks Isadore, I'm gonna do some research on java those routines, and wait for that solution that was posted. You can better regret that you have done something than regret the fact you done nothing
  12. StylizIT

    refilling dropdownlist on another page

    Hi guys, I'm developing an asp.net application and I'm having trouble finding a solution for refilling my dropdownlist. I've created a function for filling the dropdownlist, but when I open a popupwindow and add more items to the drop downlist and then close the popup, I can't allow the main...
  13. StylizIT

    string format error

    you can't use operators to compare strings, you can use (age.text.length > 0) this wil check and see if you've typed anything or you need to use the "string.compare" function You can better regret that you have done something than regret the fact you done nothing
  14. StylizIT

    No Idea where to start1

    Hi all, I have got a question about generating an overview, I don't know how to do it exactly. I want to generate a datagrid with users, roles, and three extra columns: in those extra columns I want to get the permissions, first column if he has the permission for insert, second for update...
  15. StylizIT

    multi user, declaring variables

    thanks for this information, you told me exactly what I was looking for;) thanks m8. You can better regret that you have done something than regret the fact you done nothing
  16. StylizIT

    multi user, declaring variables

    thanks for your reply m8, I have one more question though, I've read some stuff about statemanagement. But here's the thing: if I have a from, and on that form I declare some variables which will hold data retreived form the database. What will happen then if two users request that form and have...
  17. StylizIT

    multi user, declaring variables

    hi people, I just wanted to know if it is required to declare all variables I need troughout my program as a session variable. Cause right now most of the forms in my application are using session variables. But I'm wondering if it is a good thing or a bad thing to use so many session variables...
  18. StylizIT

    Encrypt Code

    Hi all, I have a asp.net application and I want to host it by the company I devolped it for. And is it possible to encrypt the code in an asp.net/vb.net application? So that the code cannot be seen by others and if this is possible, please tell me how. Thnx in advance. You can better...
  19. StylizIT

    mail.mailmessage = "Gone crazy"

    hi guys, I know it's a stupid subject name but couldn't come up with anything else. Sending mail with asp.net is discussed over the internet many times. I searched google, msdn and any forum but couldn't solve this one on my one. I've got the next code and it should work(or I'm missing...
  20. StylizIT

    removeat function from dropdownlist

    I'm having problems with my code, it ain't doing what it's supposed to do. It is supposed to get a value from a dropdownlist and check if it exists in the array. if not it removes that item from the dropdown list and select the next value from the list. But when I run my application it just...

Part and Inventory Search

Back
Top