|
-
Aug 13th, 2004, 07:52 AM
#1
Thread Starter
Addicted Member
Significance of dim[Resolved]
What is the significance of dim a
a=shell
When they both do the same ,also when either of the 2 run IE goes to the task bar id like it to open max..?
Code
Example 1
Private Sub Form_Load()
Shell ("C:\Program FILES\Internet Explorer\IEXPLORE.EXE")
End Sub
.................................................................................................... .....
Example 2
Private Sub Form_Load()
Dim a
a = Shell("C:\Program FILES\Internet Explorer\IEXPLORE.EXE")
End Sub
Thanks all
Paul
Last edited by whothis; Aug 13th, 2004 at 08:34 AM.
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
|