Box Grandmaster Cheater
Reputation: 0
Joined: 16 Oct 2007 Posts: 541
|
Posted: Sun Jun 08, 2008 6:47 am Post subject: how to open ie7 with a link for vb6 |
|
|
put this in a modulatore | Code: | 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)
Public Const SW_NORMAL = 1
Public Sub OpenWebsite(strWebsite As String)
If ShellExecute(&O0, "Open", strWebsite, vbNullString, vbNullString, SW_NORMAL) < 33 Then
End If
End Sub
|
and put this on a command button
| Code: |
private sub command1_click()
OpenWebsite (text1.text)
end sub |
you may have to edit alittle
_________________
| zurkei wrote: | | Wow box your a real dick, I can't believe I actually thought that you were telling the truth... |
Fact: no one tells the truth on cheat engine fourms
Last edited by Box on Sun Jun 08, 2008 12:13 pm; edited 1 time in total |
|