View Single Post
Old 04-13-2004, 05:55 PM   #1 (permalink)
Ov3rKiLL
Banned
 
visual basic 6 help

hey guys i need help i just started vb6 and dont know much.
k ths is the prob: i got a list and i have 2 names on the list and on the side i have a text box so it can display a message of the program inthe list. for the first program in the list which is cd-mate when i run the program and i click on the the name it shows the info ont he text box. but heres the prob: when i run the prog and lcik ont he 2nd name which is nero then it shows the same info as it showed for cd-mate, so i need you guys to help me and seperate the code so that i can have seperate infos for each program in the list. this si the code that i have in the list box window inorder for the info to come out int he text box.

Private Sub List1_Click()
Text1.Text = "6.14"
End Sub
Ov3rKiLL is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47