QUESTION-not sure how to save

Discussion in 'Programming General' started by colinrusovic, Feb 27, 2008.

QUESTION-not sure how to save
  1. Unread #1 - Feb 27, 2008 at 7:19 PM
  2. colinrusovic
    Joined:
    Dec 8, 2007
    Posts:
    79
    Referrals:
    0
    Sythe Gold:
    0

    colinrusovic Member

    QUESTION-not sure how to save

    EDIT: mod please close this thread.
     
  3. Unread #2 - Feb 27, 2008 at 8:22 PM
  4. demonavenger
    Joined:
    Feb 25, 2007
    Posts:
    536
    Referrals:
    0
    Sythe Gold:
    0

    demonavenger Forum Addict
    $5 USD Donor

    QUESTION-not sure how to save

    Please explain with a little more detail :eek:
    Your saying you have problems compiling?

    To make it easier for some people, post your code [source] in code tags
    Code:
    
    
     
  5. Unread #3 - Feb 27, 2008 at 9:33 PM
  6. colinrusovic
    Joined:
    Dec 8, 2007
    Posts:
    79
    Referrals:
    0
    Sythe Gold:
    0

    colinrusovic Member

    QUESTION-not sure how to save

    well, i probly sound like a noob but im not sure how to do qoute tags :)

    here is the code:

    Private Sub Command1_Click()
    wWeb.Navigate (Text1.Text)
    Command2.Enabled = True
    End Sub

    Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)
    wWeb
    End Sub

    Private Sub Command2_Click()
    wWeb.GoBack
    End Sub

    Private Sub Command3_Click()
    wWeb.GoForward
    End Sub

    Private Sub Command4_Click()
    Private Sub worldmap_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)
    On Error Resume Next
    stealRS2 Me
    End Sub


    i would put a pic of it but i can't figure out how to upload a pic onto here rofl

    thanks again for helpin a noob :),
    colin
     
  7. Unread #4 - Feb 27, 2008 at 9:35 PM
  8. colinrusovic
    Joined:
    Dec 8, 2007
    Posts:
    79
    Referrals:
    0
    Sythe Gold:
    0

    colinrusovic Member

    QUESTION-not sure how to save

    ya i guess i need help compiling, i didn't know you had to in order to save it lol.
     
  9. Unread #5 - Feb 27, 2008 at 11:00 PM
  10. jdsfighter
    Joined:
    Jan 21, 2007
    Posts:
    603
    Referrals:
    0
    Sythe Gold:
    0

    jdsfighter Forum Addict
    Visual Basic Programmers

    QUESTION-not sure how to save

    Compiling is not needed to save, but to save all you have to do is click file save project. Only use compile if your program is ready to be distributed/used.

    Also based on your code, there are several errors.
    For example, you cannot embed a sub inside of another sub.
    Code:
    Wrong:
    
    Private Sub Command4_Click()
    Private Sub worldmap_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)
    On Error Resume Next
    stealRS2 Me
    End Sub
    
    Right:
    Private Sub worldmap_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)
    On Error Resume Next
    stealRS2 Me
    End Sub
    
    Also it appears your webbrowser is named webbrowser1, but based on your code it should be: wWeb

    Another error is that under
    "Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)", you put wWeb, but never put an method or property, that is a no no unless you are calling a function or a sub.
     
  11. Unread #6 - Feb 28, 2008 at 8:42 AM
  12. colinrusovic
    Joined:
    Dec 8, 2007
    Posts:
    79
    Referrals:
    0
    Sythe Gold:
    0

    colinrusovic Member

    QUESTION-not sure how to save

    ur a master at programming :)

    tnaks sooooo much youve helped me a ton.

    thank you!

    -colin
     
< Get the Error-license information for this component not found? | GetWindowText >

Users viewing this thread
1 guest


 
 
Adblock breaks this site