Jump to content

how i can use call like this


Go to solution Solved by Trong,

Recommended Posts

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 by SecuirtyZone
Link to comment
Share on other sites

  • Solution

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

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 by TheSaint

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)

userbar.png

Link to comment
Share on other sites

Thank you guys for help me  :ILA3:  

 

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 by Trong

Regards,
 

Link to comment
Share on other sites

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 Gude
How 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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...