Clever1mba Posted May 19, 2005 Posted May 19, 2005 Hello any one like to tell me can we bind 2 files in 1 file i mean when i run my application it bind to second application
hlstriker Posted May 19, 2005 Posted May 19, 2005 Do you mean have an application you make run another one already made? If so use this code... Run("A:\dir to prog.\progname.exe") If that's not what you mean, post again and I will try to help all I can The best Honda forums!RuneScape High Alching for Profit!
hlstriker Posted May 19, 2005 Posted May 19, 2005 #include <GUIConstants.au3> GUICreate ( "Test", 190, 84 ) GUISetState (@SW_SHOW) $exe1 = GUICtrlCreateButton( "Open exe 1", 47, 16, 100, 22 ) $exe2 = GUICtrlCreateButton( "Open exe 2", 47, 50, 100, 22 ) While 1 $msg = GUIGetMsg() Select Case $msg = $exe1 ;Run Program number 1 Run("C:\Prog Dir\Program Name1.exe") Case $msg = $exe2 ;Run Program number 2 Run("C:\Prog Dir\Program Name2.exe") Case $msg = $GUI_EVENT_CLOSE ;;; Exitloop EndSelect WEnd I think that's what you mean. Sorry if it's not. The best Honda forums!RuneScape High Alching for Profit!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now