How do I tell a function to return the param I would like it to return?
Something like
Function PBMain()
Local Res as Dword
Res = AvStartProg("calc.exe")
Msgbox Res
End Function
Function AvStartProg(Run as string) as dword
Local P1, P2, P3 as Dword
Return (P2) ' can't find it this and also this won't work Return P2
End Function
Something like
Function PBMain()
Local Res as Dword
Res = AvStartProg("calc.exe")
Msgbox Res
End Function
Function AvStartProg(Run as string) as dword
Local P1, P2, P3 as Dword
Return (P2) ' can't find it this and also this won't work Return P2
End Function
Comment