Page 2 of 2 FirstFirst 12
Results 16 to 28 of 28
  1. #16
    reaper's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    The Deep South
    Posts
    5,247
    Reputation
    58
    Thanks
    1,077
    My Mood
    Relaxed
    lolland's video tutorials helped a lot, he looks at basic GUI work in video 6

    https://www.mpgh.net/forum/33-visual-...olland-hd.html

    Or if you want to add a background image......

    Last edited by reaper; 07-14-2010 at 07:35 AM.

  2. #17
    bayley60's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Turn Around!
    Posts
    215
    Reputation
    12
    Thanks
    33
    yea how wold i make one of those background images?

  3. #18
    mnpeepno2's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In a barren wasteland
    Posts
    905
    Reputation
    10
    Thanks
    81
    everyone has a different way of learning, some are auditorial learners, some are visual learners, and the last of people are kinesthetic learners.

    Visual = Books (.NET programmer's cookbook, ect...)
    Auditorial = Audiobooks, youtube, ect.
    Kinesthetic = Experimenting, youtube, varies...


    -----------------------------------------------

    My site: here
    My Blog: here
    My member's area: here
    Minecraft Sever Forum: here


    Minecraft Servers:

    Public:



    Private:



  4. #19
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by bayley60 View Post
    yea how wold i make one of those background images?
    If you haven't figured that out yet, here's how you can do it:



    Learn vb from the following website:

    https://www.homeandlearn.co.uk/net/vbnet.html

    When you've done all the tutorials from that website, comeback here and ask what ever you want.
    Last edited by Hassan; 07-15-2010 at 01:15 AM.

  5. #20
    bayley60's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Turn Around!
    Posts
    215
    Reputation
    12
    Thanks
    33
    ok thanks guys for all ur help

    Quote Originally Posted by FLAMESABER View Post
    If you haven't figured that out yet, here's how you can do it:



    Learn vb from the following website:

    Microsoft Visual Basic .NET tutorials for Beginners

    When you've done all the tutorials from that website, comeback here and ask what ever you want.

    ok yea i know how to do that what i was meaning how do i make a custon background image in photoshop like a picture
    Last edited by bayley60; 07-15-2010 at 10:46 AM.

  6. #21
    TheRealOne's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Portugal
    Posts
    36
    Reputation
    15
    Thanks
    7
    My Mood
    Cold
    Well, I advice you to start with Lolland video tuts (its sticky in this seccion)... Honestly, he explained all the simple stuff in a way that everyone can understand... After that just see youtube videos...
    Also, I (sometimes) take a long code and try turning it into little pieces of code and try to understand what each line does... After knowing some basics you should also try to make a long piece of code that you found some where smaller (just to practice)...
    Last edited by Lolland; 07-16-2010 at 08:50 AM. Reason: It's lolland, and who's lollhand?
    Learning VB and C


    Objectives:
    1 Post
    2 Posts
    10 Posts
    50 Posts
    100 Posts
    Making a Tuturial
    Make a tool (and releasing it)
    Making my own set of tools (and release it)
    [IMG]https://i111.photobucke*****m/albums/n121/golmor/learntoprogram-1.png[/IMG]

  7. #22
    Luisjoseda's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    El Paso
    Posts
    119
    Reputation
    10
    Thanks
    102
    My Mood
    Goofy
    I sort of just learned my self with some help from youtube, they have great tutorials to make anything.
    Previously made PvPShark.
    Now developing OreoPvP.

  8. #23
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Heres something to start off with

    Code:
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    textbox1.text = "Hello World"
    End Sub
    Make a button and a textbox and insert that code into your button. LOL You just created your first hello world
    Last edited by flameswor10; 07-17-2010 at 09:16 PM.
    No I do not make game hacks anymore, please stop asking.

  9. #24
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    And LOL you even did this wrong \failure

    Textbox1.Text = "Hello world"

    String have to be in between "".

    lold



  10. #25
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    oh right.. STFU xD
    I did it off the top of my head...
    No I do not make game hacks anymore, please stop asking.

  11. #26
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by flameswor10 View Post
    oh right.. STFU xD
    I did it off the top of my head...
    LOL liar. You even included the

    [php]Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click[/php]

    So, either you're a freak and memorized the whole Sub Procedure heading for a Button1_Click sub, yet somehow can't remember to add string quotations

    OR

    you fucked up.


    I think number two is more likely

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  12. #27
    qddW$#%^jtyjtyj's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    721
    Reputation
    7
    Thanks
    148
    My Mood
    Mellow
    Quote Originally Posted by J-Deezy View Post


    LOL liar. You even included the

    [php]Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click[/php]

    So, either you're a freak and memorized the whole Sub Procedure heading for a Button1_Click sub, yet somehow can't remember to add string quotations

    OR

    you fucked up.


    I think number two is more likely
    LOL

    The message you have entered is too short. Lenghten it with 10 characters << FUCK you!

  13. #28
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    No. I wrote the code off the top of my head.. Not the actual thingy.. I did that in VB xD
    Do you want me to try the whole Button procedure shit??
    No I do not make game hacks anymore, please stop asking.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. help learning
    By Fmxz in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 1
    Last Post: 09-14-2010, 04:14 AM
  2. Help learning WinAPI?
    By JayFabulous in forum C++/C Programming
    Replies: 1
    Last Post: 09-05-2010, 04:51 AM
  3. [Help]Learn VB[Closed][Solved]
    By Drake in forum Visual Basic Programming
    Replies: 12
    Last Post: 07-20-2010, 11:15 PM
  4. BIG NOOB here please help learn coding
    By brysonlee in forum C++/C Programming
    Replies: 25
    Last Post: 05-07-2010, 12:28 PM
  5. need help learning glitches
    By BinDrinkin in forum CrossFire Glitches
    Replies: 7
    Last Post: 04-13-2010, 02:13 AM