Results 1 to 3 of 3

Thread: help me pls!

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jan 2008
    Posts
    209

    Talking help me pls!

    question1: how to connect to the internet by using "command_click"? anyway, without using webbrowser.navigate...

    question2: how to make "auto patching" in game launcher? using .cab file...

    question3: how to call the .ini or . txt file? i am using game launcher and i want to make customizable by editing in .ini file or .txt file?

    pls help me guys!

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: help me pls!

    Quote Originally Posted by jhaps007
    question1: how to connect to the internet by using "command_click"? anyway, without using webbrowser.navigate...
    Here is one way
    Code:
    Private 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
    
    Private Sub Command1_Click() 
       Dim lngOpenPage As Long
         lngOpenPage = ShellExecute(Form1.hwnd, "Open", "http://www.vbforums.com",  0&, 0&, 0&)
    End Sub

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Jan 2008
    Posts
    209

    Re: help me pls!

    thank you sir, i gonna try this one...^_^
    good day to all!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width