Is is possible to put the name of a selected/highlighted file from a filelist box into a label, the name in the label needs to change every time the selected/highlighted file does.
Please help!!
Printable View
Is is possible to put the name of a selected/highlighted file from a filelist box into a label, the name in the label needs to change every time the selected/highlighted file does.
Please help!!
easy!,
have a file list box and a label
'''''''''
Private Sub File1_Click()
Label1.Caption = File1.filename
End Sub
'''''''''
Almost to easy!!!
Thank you