|
-
Apr 10th, 2001, 03:18 PM
#1
hi
i need some api function that go to "url"(without open then webbrowser!)
simple, i have code (asp) that do somthing in this url..
is it possible?
thanks
-
Apr 10th, 2001, 03:44 PM
#2
Not navigate to a website, you could use a WebBrowser control.
Code:
WebBrowser1.Navigate "www.vb-world.net"
-
Apr 10th, 2001, 03:52 PM
#3
thanks......but
thanks......
but again..
this is function in dll file, so i can't use activex controls
-
Apr 11th, 2001, 01:42 AM
#4
Confused!
I dont understand why u cannot use ActiveX controls?
-
Apr 11th, 2001, 03:29 PM
#5
because of
because i writer the code in dll file
so i can't use "controls"
-
Apr 12th, 2001, 12:09 AM
#6
maybe this?
i dont know if this is what ur lookin for.
Public Const SW_SHOWNORMAL = 1
Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Dim retval as long, webpage as string
webpage = "www.hotmail.com"
retval = shellexecute(form1.hwnd, "open", webpage, "", "", SW_SHOWNORMAL)
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
|