[Help Request]Transpiring to VB.NET

Discussion in 'Programming General' started by Markizano, Sep 15, 2007.

[Help Request]Transpiring to VB.NET
  1. Unread #1 - Sep 15, 2007 at 1:05 PM
  2. Markizano
    Joined:
    Mar 2, 2006
    Posts:
    100
    Referrals:
    0
    Sythe Gold:
    0

    Markizano Active Member
    Banned

    [Help Request]Transpiring to VB.NET

    I am making a request to learn VB.NET, I already know VB6 and SCAR, so I'm decently familiar with the programming language. I just need to know the basic syntax and how the language works. Since I'm in college and VB.NET is on my schedule for some future terms, I want to be prepared for what is to come. It shouldn't be too much of a challenge to teach since I know how to program, because all I need is to (basically) translate. Any tips or mini-tuts on how the language is helpful and I appreciate it.

    Markizano
     
  3. Unread #2 - Sep 15, 2007 at 10:29 PM
  4. X Zero
    Joined:
    Jan 21, 2007
    Posts:
    577
    Referrals:
    0
    Sythe Gold:
    0

    X Zero Forum Addict

    [Help Request]Transpiring to VB.NET

    Well, really if u know vb6 going into vb .net shouldn't be much of a hassle.
     
  5. Unread #3 - Sep 16, 2007 at 11:54 PM
  6. Markizano
    Joined:
    Mar 2, 2006
    Posts:
    100
    Referrals:
    0
    Sythe Gold:
    0

    Markizano Active Member
    Banned

    [Help Request]Transpiring to VB.NET

    idk, i just think it would be easiest for someone to teach me the nuances of .net and sythe is a handy resource for me.
     
  7. Unread #4 - Sep 17, 2007 at 4:54 AM
  8. Swan
    Joined:
    Jan 23, 2007
    Posts:
    4,957
    Referrals:
    0
    Sythe Gold:
    0
    Sythe's 10th Anniversary Member of the Month Winner

    Swan When They Cry...
    Retired Global Moderator

    [Help Request]Transpiring to VB.NET

    I can help you. Add my MSN.

    A very very VERY important thing to realise about VB .Net is it is completely object oriented. You don't need to worry about all that confusing crap in VB6 - though .Net will seem confusing if you don't know what a class or a namespace is.

    For example, you can declare a variable, like a graphic

    Dim g As Graphics

    where graphics is actually a set of functions, variables, the works. Thats called a class.

    The Syntax isn't much different - its simpler.

    VB6:
    Code:
    Dim i As Integer, num As Integer
    for i = 0 to 10
       num = num + i
    next
    VB .Net:
    Code:
    Dim num As Integer
    For i As Integer = 0 to 10
       num += i
    next
     
< Vb Connection | First Java program made purely by myself. >

Users viewing this thread
1 guest


 
 
Adblock breaks this site