question
hi
how can i open a file from a visual basic interface if the file is in anywhere in the computer
and then send the file name to an EXE file to do operation on the opened file?
Private Sub Command1_Click()
CommonDialog1.ShowOPen
A = Shell(CommonDialog1.FileName)
End Sub
after opening the file , can i send its name to EXE file????????
how????///
|