MuNNa Posted October 21, 2005 Posted October 21, 2005 Hii All; I wanna know if there is any way to make any program run in the background... like for eg.: i wanna telnet a client and i dont want a dos window to be visible to me. The whole process should be done in the background., IF it is possible, can any1 guide me for the same. Thnx MuNNa
kjactive Posted October 21, 2005 Posted October 21, 2005 It's posible to run in background in two manners - just don't make a gui ( Run and runwaity can do just the same operations with or without a gui to responce to ) OR just don't insert a GUISetState() function after the gui createing - simple as that... kjactive Au3PP 4.1 - Autoit3 preprocessor, optimize speed, performance to scripts and do executes....[/url]Au3Calibur - Create libraries of commonly used code excerptsWords manipulate UDF, functions that is lent from the rexx language, topics and index file includedCustomDialog UDF to include custom made dialogs like a extended colorpick requester to scripts...[url="ftp://fritidshjemmet.com/Autoit3/SysColor.zip"]SysColor UDF a low level color library to manipulate RGB and Hex values...Shell32 UDF to Automate Windows® operating tasks from native dialog and Wizards browsers... Optimized the CodeWicard with options to generate browser code etc...
LxP Posted October 21, 2005 Posted October 21, 2005 Welcome to the forums!Here is an example of running a DOS command in a hidden fashion:RunWait(@ComSpec & ' /c dir /b /s \*.gif', '', @SW_HIDE)Here is an example of starting Notepad in a hidden fashion (although it is useless):Run('Notepad', '', @SW_HIDE)The @SW_HIDE is used to prevent display of the console window. Please refer to Run() and RunWait() in the AutoIt help file for more information.P.S. Please post your questions to the Support forum next time. :">
MuNNa Posted October 21, 2005 Author Posted October 21, 2005 (edited) Hiii Thank u all veryyyyyyyyyy muchhhhhhhh. I checked it out with telnet and it worked. MuNNa Edited October 21, 2005 by MuNNa
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