i,m struggling with creating code
i know how add a string to a list box, but i'm stuck on how to get that string in the listbox to load an image into the picture box and a text file into the text box. both the image and text files have tha same name a the string.
my other problem is once the image and text has been loaded i then want to launch/execute an external file/program from a command button within the program i'm creating.
i'm using VB 2008 Express Edition with SP1
i have got the basic fuctions of the command buttons wotking but i'm stuck with the rest
i was considering binding the listbox, picture box and text box to a dataset but i'm unsure on how to do that.
i,m also stuck on the install button function. i wanted this button to execute an external setup file.
CODE
Public Class Homes
Private Sub cmdExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdExit.Click
End
End Sub
Private Sub cmdBack_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdBack.Click
Me.Visible = False
MainMenu.Visible = True
End Sub
Private Sub cmdHelp_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdHelp.Click
Help.Visible = True
End Sub
End Class
please help
those who can help me will be credited in the program
Jamie
This post has been edited by eathan580: 21 Aug, 2008 - 04:01 AM