hi masters..
anyone know what it shell? and how to do it? any code more helps...
thx..
Best Regards
shell function used to apply/run other application and sava the task ID of that application as feedback value. so if none application or failed to call then the feedback value is 0.
this following code is used sintax :
shell(path_Name[,style][,wait][,timeout])
path_name = executable file with the full path of the application which it want to call
Style = a model of application window which it want to call (ex minimize,normal etc).
Wait = a boolean value that prescriptive whether shell function has to wait vb.net finish before working. false is the default value.
TimeOut = a wait time that it needful by shell function to start working if Wait in true value.
Ok.this a little explain. hope it helps..
can you give a sample code??
and what a type for style??i didn't have any idea..
thx..
this is a value of style :
AppWinStyle.Hide
AppWinStyle.NormalFocus
AppWinStyle.MinimizedFocus
AppWinStyle.MaximizedFocus
AppWinStyle.NormalNoFocus
AppWinStyle.MinimizedNoFocus
this sample code :
Shell("NOTEPAD.EXE", AppWinStyle.MinimizedNoFocus)
notepad didn't have to use full path cause location of notepad is in the windows folder
Shell("C:\Documents and Settings\Jerry\My Documents\AntiVrs.exe", AppWinStyle.MinimizedNoFocus)
is this applicable in visual basic 2005?
Welcome @yaje.
>is this applicable in visual basic 2005?
Yes. Please do not resurrect old or solved threads. If you want to ask question, start your own thread.
Thread Closed.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.