When I open an application I want to send the name of it into a variable (since one form is being used to open many different applications). How does VB recognize the name of the app? What is the Get AppName syntax?
Many Thanks
Printable View
When I open an application I want to send the name of it into a variable (since one form is being used to open many different applications). How does VB recognize the name of the app? What is the Get AppName syntax?
Many Thanks
Try thisVB Code:
Private Sub Command1_Click() MsgBox App.EXEName End Sub
Got It, Thanks!