How to Load your Default WebBrowser with the TextBox Control:
How to Load your Default WebBrowser with the TextBox Control:
API Declarations
Declare Function ShellExecute Lib "Shell32.dll" Alias "ShellExecuteA"(ByVal hwnd As Long,ByVal mxOperation As String,ByVal mxParameters As String,ByVal mxDirectory As String,ByVal nShowCmd As Long) As long
Rate How to Load your Default WebBrowser with the TextBox Control:
(1(1 Vote))
[GeneralDeclaration]
Const comSwNoraml = 1
Private Sub cmdLounch_Click()
ShellExecute hwnd, "Open", Text1.Text ,vbNullString,vbNullString,ComSwNormal
This Function will Load your Default Browser with the Web Address on the Text Box.
Test:TextBox Type: "http://www.microsoft.com/"
Click the Command Button:
How to Load your Default WebBrowser with the TextBox Control: Comments
No comments yet — be the first to post one!
Post a Comment