Search results for query: *

  1. F

    Multiple logins

    onr more thing , how do i make the password acceptance case senstive ?
  2. F

    Multiple logins

    yeah , got the idea now .Thnks guys
  3. F

    Multiple logins

    I have a table in sql server with some member id and passwords ,I need to verify the validity.I wrote the cose for a single user /password the code im pasting below.Im just stuck when there are multiple users .Just need a lil bit of help in this .Thx str = "select uid ,pass from members...
  4. F

    Retriving image from SQL

    I have a single image file stored in sql server , now i need to view it in vb.net .should i use a picturepox or a imagelist .Also i know how to retrive text using sqldatareader .Does the same thing work for image retrival too?Thx
  5. F

    error handling in VB.net

    ok i got it , was very simple.Thnks jab and btw i had to use exception cos this was one of the condition given in the question .Anyway thx a lot
  6. F

    error handling in VB.net

    Its not a homework ,Im learning .Net by myself so the trouble .Its a single dimensional array .I used the conditional statement and the code is posted below . Try If i <= 10 Then MsgBox(a(i)) End If Catch myex As IndexOutOfRangeException...
  7. F

    error handling in VB.net

    Just need help with this program This is to declare a single dimension array of size 10 and write an error handling (try ..catch) in case the user attempts to access a non existent array element. I can do this without the try catch exception .can u guys help me out in this .Thnks
Back
Top