!!Your First VB6 Program!! Its That Easy.

Discussion in 'Programming General' started by zaks, Dec 25, 2007.

!!Your First VB6 Program!! Its That Easy.
  1. Unread #1 - Dec 25, 2007 at 11:26 PM
  2. zaks
    Joined:
    May 5, 2007
    Posts:
    55
    Referrals:
    1
    Sythe Gold:
    0

    zaks Member

    !!Your First VB6 Program!! Its That Easy.

    ok.... you got visual basic six and it looks really complicated huh?
    im going to show you one of the simplest programs you will ever make..

    you will need the following..

    (1. 1 command box (the blank button looking thing)

    (2. 1 label (the big "A")

    ----------
    step 1 make a new .exe

    step 2 make a new label (stretch it across the form that you just made)

    step 3 make a command button any size will do

    step 4 click back on the lable rename it " lblHelloworld " and erase the caption

    step 5 click back on the command button rename it " cmdhelloworld " type hello world in the caption

    step 6 ok heres the hardest part and its easy ;) double click the command button that you just renamed to cmdhelloworld you should see this
    Code:
    Private Sub cmdhello_Click()
    
    End Sub
    
    all you have to do is click in the empty space between the two and add this
    Code:
    lblhelloworld.caption = "Your Text Here, it's that easy"
    it will look like this
    Code:
    Private Sub cndhello_Click()
    lblhelloworld.Caption = "Your Text Here, it's that easy"
    End Sub
    
    step 7 run the form (press F5) then click your Command button and watch what you created

    step 8 play around with it and see what happens
    -----------------------------------------------
    yep its that easy
     
  3. Unread #2 - Dec 25, 2007 at 11:57 PM
  4. The Devils Son
    Joined:
    Jul 2, 2007
    Posts:
    333
    Referrals:
    0
    Sythe Gold:
    0

    The Devils Son Forum Addict
    Banned

    !!Your First VB6 Program!! Its That Easy.

    I beg to differ.

    I find HelloWorlds a disgrace to programming. You should never start by doing a HelloWorld Tutuorial, they have nothing to do with anything, there boring and throws newbies off because they couldn't make any better than that which is basicly nothing.
     
  5. Unread #3 - Dec 26, 2007 at 10:17 AM
  6. zaks
    Joined:
    May 5, 2007
    Posts:
    55
    Referrals:
    1
    Sythe Gold:
    0

    zaks Member

    !!Your First VB6 Program!! Its That Easy.

    i just made it to show that its not as hard as most people think.
     
  7. Unread #4 - Dec 26, 2007 at 5:46 PM
  8. The Devils Son
    Joined:
    Jul 2, 2007
    Posts:
    333
    Referrals:
    0
    Sythe Gold:
    0

    The Devils Son Forum Addict
    Banned

    !!Your First VB6 Program!! Its That Easy.

    Most newbies don't think it is hard at all, give them a good login form Tutorial and they willed thrilled by how easy THAT is, then they can work off from it instead of knowing how easy a "HellWorld" app is, there shit and useless and the newbies even know that is to easy and want better and need better.

    Try again and maybe you will succeed :)
     
  9. Unread #5 - Dec 26, 2007 at 6:16 PM
  10. timk777
    Joined:
    Feb 19, 2007
    Posts:
    156
    Referrals:
    0
    Sythe Gold:
    0

    timk777 Active Member

    !!Your First VB6 Program!! Its That Easy.

    Wait a minute.... People think vb6 is hard? Why didn't anyone inform me of this?!?
     
  11. Unread #6 - Dec 26, 2007 at 7:17 PM
  12. The Devils Son
    Joined:
    Jul 2, 2007
    Posts:
    333
    Referrals:
    0
    Sythe Gold:
    0

    The Devils Son Forum Addict
    Banned

    !!Your First VB6 Program!! Its That Easy.

    thats just false facts :p

    I know what you mean though :D
     
  13. Unread #7 - Dec 27, 2007 at 2:54 PM
  14. Terrankiller
    Joined:
    May 7, 2005
    Posts:
    1,286
    Referrals:
    1
    Sythe Gold:
    1

    Terrankiller Ex-Administrator
    Retired Administrator Visual Basic Programmers

    !!Your First VB6 Program!! Its That Easy.

    Your first program should not include any forms what so ever. This first program doesn't really constitute as a program.
     
  15. Unread #8 - Dec 27, 2007 at 3:46 PM
  16. Pimping_One
    Joined:
    Jul 17, 2007
    Posts:
    457
    Referrals:
    0
    Sythe Gold:
    0

    Pimping_One Forum Addict
    Banned

    !!Your First VB6 Program!! Its That Easy.

    My First Program was a Color Picker, My Second One Was a Web Browser that saved history, had back, forward, and stop buttons... people aren't retarted mate.
     
  17. Unread #9 - Dec 31, 2007 at 10:18 PM
  18. Blupig
    Joined:
    Nov 23, 2006
    Posts:
    7,145
    Referrals:
    16
    Sythe Gold:
    1,609
    Discord Unique ID:
    178533992981594112
    Valentine's Singing Competition Winner Member of the Month Winner MushyMuncher Gohan has AIDS Extreme Homosex World War 3 I'm LAAAAAAAME
    Off Topic Participant

    Blupig BEEF TOILET
    $5 USD Donor

    !!Your First VB6 Program!! Its That Easy.

    My first program was actually quite complicated; translated english to L337 sp34k and back.
     
  19. Unread #10 - Jan 1, 2008 at 2:31 AM
  20. Covey
    Joined:
    Sep 9, 2005
    Posts:
    4,510
    Referrals:
    9
    Sythe Gold:
    9
    Discord Unique ID:
    807246764155338833
    Discord Username:
    Covey#1816

    Covey Creator of EliteSwitch
    Retired Sectional Moderator Visual Basic Programmers

    !!Your First VB6 Program!! Its That Easy.

    lol
    Code:
    Public Function LeetSpeak(ByVal strText As String) As String
        Dim i As Long, strChr As String
        strText = Trim(strText)
        If strText = Empty Then
            Exit Function
        End If
        For i = 1 To Len(strText)
            strChr = Mid(strText, i, 1)
            Select Case strChr
                Case "a", "A"
                    LeetSpeak = LeetSpeak & "4"
                Case "e", "E"
                    LeetSpeak = LeetSpeak & "3"
                Case "r", "R"
                    LeetSpeak = LeetSpeak & "2"
                Case "l", "L"
                    LeetSpeak = LeetSpeak & "1"
                Case "s", "S"
                    LeetSpeak = LeetSpeak & "5"
                Case Else
                    LeetSpeak = LeetSpeak & strChr
            End Select
        Next i
    End Function
    etc, i was bored :D
     
  21. Unread #11 - Jan 5, 2008 at 8:59 AM
  22. skate4lifee
    Joined:
    Jul 22, 2007
    Posts:
    108
    Referrals:
    1
    Sythe Gold:
    0

    skate4lifee Active Member

    !!Your First VB6 Program!! Its That Easy.

    who ever said visual basic was hard, it was designed to be easy to learn and use.
     
  23. Unread #12 - Jan 5, 2008 at 11:59 AM
  24. Jazz00006
    Joined:
    Aug 26, 2005
    Posts:
    807
    Referrals:
    0
    Sythe Gold:
    0

    Jazz00006 Apprentice
    Visual Basic Programmers

    !!Your First VB6 Program!! Its That Easy.

    And easy to fail
     
  25. Unread #13 - Jan 7, 2008 at 7:18 PM
  26. The Dark
    Joined:
    Jan 21, 2007
    Posts:
    1,601
    Referrals:
    0
    Sythe Gold:
    0

    The Dark Guru
    Banned

    !!Your First VB6 Program!! Its That Easy.

    If this is made for a first timer, probably explaining what everything does would help? Like a Private Sub? And what's happening when you click the button? That's assuming you know, and weren't looking for easy credit.
     
  27. Unread #14 - Jan 7, 2008 at 8:04 PM
  28. kronz420
    Referrals:
    0

    kronz420 Guest

    !!Your First VB6 Program!! Its That Easy.

    i have no clue how to do any of this but i wanna learn.
     
  29. Unread #15 - Jan 11, 2008 at 2:40 AM
  30. skate4lifee
    Joined:
    Jul 22, 2007
    Posts:
    108
    Referrals:
    1
    Sythe Gold:
    0

    skate4lifee Active Member

    !!Your First VB6 Program!! Its That Easy.

    'tis true.
     
  31. Unread #16 - Jan 12, 2008 at 12:30 PM
  32. Typhoon
    Joined:
    Jan 21, 2007
    Posts:
    452
    Referrals:
    0
    Sythe Gold:
    0

    Typhoon Forum Addict

    !!Your First VB6 Program!! Its That Easy.

    I learned by the "HelloWorld Tutorial" but that was in school. Its a good tutorial. I dont have any problem with it. I dont see why other people do.
     
  33. Unread #17 - Jan 12, 2008 at 9:29 PM
  34. Jazz00006
    Joined:
    Aug 26, 2005
    Posts:
    807
    Referrals:
    0
    Sythe Gold:
    0

    Jazz00006 Apprentice
    Visual Basic Programmers

    !!Your First VB6 Program!! Its That Easy.

    For crying out loud. Stop spamming this thread just for your post count.
     
  35. Unread #18 - Jan 21, 2008 at 4:08 PM
  36. tomanderson12
    Joined:
    Jan 21, 2008
    Posts:
    53
    Referrals:
    0
    Sythe Gold:
    0

    tomanderson12 Member

    !!Your First VB6 Program!! Its That Easy.

    Its not really a program in my eyes, it serves no purpose and doesnt really teach anyone anything for starting VB,
     
  37. Unread #19 - Jan 21, 2008 at 9:11 PM
  38. warpclaw
    Joined:
    May 5, 2007
    Posts:
    434
    Referrals:
    0
    Sythe Gold:
    0

    warpclaw Forum Addict
    Banned

    !!Your First VB6 Program!! Its That Easy.

    Thaks for the tutorial.. i past from begginer so i dont need this... but begginers will need this so my bro will like it
     
  39. Unread #20 - Jan 25, 2008 at 2:41 AM
  40. Vengenced
    Joined:
    Dec 19, 2007
    Posts:
    179
    Referrals:
    0
    Sythe Gold:
    0

    Vengenced Active Member
    Banned

    !!Your First VB6 Program!! Its That Easy.

    Fantastic, ;l

    This is shit and I still cant do it...

    How dumb am I.
     
< [suggestion] application request section? | vb2005 datagrid records editing locked with the priviledge to edit only newly added r >

Users viewing this thread
1 guest


 
 
Adblock breaks this site