SecuirtyZone Posted February 23, 2015 Share Posted February 23, 2015 (edited) hello i want use call " something like this " ! $aaaaa = "fileinstall" $bbbbb = "program.exe" $ccccc = @tempdir $ddddd = "/" $eeeee = run call($aaaaa , $bbbbb , $ccccc & $ddddd & $bbbbb) call($eeeee , $ccccc & $ddddd & $bbbbb) Edited February 23, 2015 by SecuirtyZone Link to comment Share on other sites More sharing options...
Solution Trong Posted February 23, 2015 Solution Share Posted February 23, 2015 hello i want use call " something like this " ! $aaaaa = "fileinstall" $bbbbb = "program.exe" $ccccc = @tempdir $ddddd = "/" $eeeee = run call($aaaaa , $bbbbb , $ccccc & $ddddd & $bbbbb) call($eeeee , $ccccc & $ddddd & $bbbbb) something like this: $aaaaa = "fileinstall" $bbbbb = "program.exe" $ccccc = @tempdir $ddddd = "\" $eeeee = "run" $xxx=$ccccc & $ddddd & $bbbbb $yyy=$ccccc & $ddddd & $bbbbb _call($aaaaa , $bbbbb , $xxx) _call($eeeee , $yyy) Func _Call($z , $c , $x="") If $x="" Then Return MsgBox(0,"",$z& ": "& $c) MsgBox(0,$z& ": "& $c, $x) EndFunc Regards, Link to comment Share on other sites More sharing options...
TheSaint Posted February 23, 2015 Share Posted February 23, 2015 (edited) It seems to me you are incorrectly trying to use the Call function? What you probably need, is something like. MyCallFunc("fileinstall", "program.exe", @tempdir, "/", run) Func MyCallFunc($aaaaa, $bbbbb, $ccccc, $ddddd, $bbbbb) ; your commands go here ; especially where you join by assignment - $path = $ccccc & $ddddd & $bbbbb EndFunc Note though, that "/" should probably be "" and run won't work. run should probably be $run and be assigned a value previously (i.e. $run = 1) Then you use it in your function, by having something like - If $run = 1 Then Run($path) So in essence you would have - $run = 1 MyCallFunc("fileinstall", "program.exe", @tempdir, "\", $run) Not sure why you need to single out "" or "/" as being separate in the manner you do? Edited February 23, 2015 by TheSaint SecuirtyZone 1 Make sure brain is in gear before opening mouth! Remember, what is not said, can be just as important as what is said. Spoiler What is the Secret Key? Life is like a Donut If I put effort into communication, I expect you to read properly & fully, or just not comment. Ignoring those who try to divert conversation with irrelevancies. If I'm intent on insulting you or being rude, I will be obvious, not ambiguous about it. I'm only big and bad, to those who have an over-active imagination. I may have the Artistic Liesense to disagree with you. TheSaint's Toolbox (be advised many downloads are not working due to ISP screwup with my storage) Link to comment Share on other sites More sharing options...
SecuirtyZone Posted February 23, 2015 Author Share Posted February 23, 2015 Thank you guys for help me Link to comment Share on other sites More sharing options...
Trong Posted February 23, 2015 Share Posted February 23, 2015 (edited) Thank you guys for help me Maybe: Global $FileInstall="C:\Windows\Notepad.exe" Global $InstallPath= @TempDir&"\Program.exe" Global $RunAfterInstall=0 If ($CmdLine[0] > 0) Then ;Run App.exe \run If StringInStr($CmdLineRaw,"\run") Then $RunAfterInstall=1 EndIf ;InstallAndRun($FileInstall , $InstallPath , $RunAfterInstall) Func InstallAndRun($FileInstall , $InstallPath , $RunAfterInstall=0) FileInstall($FileInstall,$InstallPath,1) If FileExists($InstallPath) Then If $RunAfterInstall Then Run($InstallPath) Else MsgBox(48,"FileInstall Error","Can't wirte file:" &$InstallPath) EndIf EndFunc Edited February 23, 2015 by Trong Regards, Link to comment Share on other sites More sharing options...
BrewManNH Posted February 23, 2015 Share Posted February 23, 2015 FileInstall will not work with a variable as the filename and path. Also, FileInstall will install the files to the compiled exe regardless of any conditional statements, you can only use the conditional statements when trying to extract the files from the exe, it always installs the files when it sees the function. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
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