|
-
Jun 18th, 2000, 10:45 AM
#1
Thread Starter
Hyperactive Member
first...
Shell "C:\windows\program.exe", vbNormalFocus
what does the vbNormalFocus do exactly?
How would I write a program dir into the autoexec.bat file?
-
Jun 18th, 2000, 10:53 AM
#2
vbNormalFocus or 1 means that the program will be shown as normal. Look in your VB Help file under "Shell constants". It won't be minimized or anything.
And to write a line to autoexec.bat:
[/code]Open "c:\autoexec.bat" For Append As #1
Print #1, "PATH C:\myapp"
Close #1
[/code]
-
Jun 18th, 2000, 11:00 AM
#3
Thread Starter
Hyperactive Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|