Recent content by VBGOD

  1. V

    Pics of your SO?

    Feet
  2. V

    need some quick vb help

    You might also want to make the border fixed.
  3. V

    Writing VB.NET App To Read From A Magnetic Stripe Reader

    As said before, it's very simple. Just swipe the card, and your Magnetic Stripe Reader will read the data. Before you swipe the card, open up notepad. Swipe the card. All of the characters will be dumped into that window (if notepad has the focus). A basic string will look something like...
  4. V

    visual basic validation

    VB 6 If Len(txtAccountNumber.Text) <> 16 Then ':( End If VB .NET If txtAccountNumber.Text.Length <> 16 Then ':( End If
  5. V

    Visual Basic.net question for you experts

    I guess I'm too late, but..... Val ("") will return 0 CType ("", Integer) is invalid Val("A") will return 0 CType ("A", Integer) is also invalid.
  6. V

    Visual Basic beginner: where to start?

    Hey! Thanks a lot! :cool:
  7. V

    Visual Basic beginner: where to start?

    If you're just starting out, take a look at VB .NET It's much more complicated than VB 6.0, but the rewards are higher. I have begun a little tutorial: http://www.vbgod.com/vb.net/ Enjoy!
  8. V

    Easy visual basic question

    VB 6 Dim anandtech As ADODB.Recordset Set anandtech = New ADODB.Recordset anandtech.Open "Select Top 1 * From Main SomeTable", YourConnStr, 2, 2 If anandtech.EOF = False Then YourLabel.Caption = anandtech.Fields("FieldName").Value End If VB .NET Dim anandtech As ADODB.Recordset = New...
  9. V

    PS2-Linux development kit

    Can't post pictures... Oh well.. For more info: http://www.ps2linux.scea.com/ http://www.playstation-basic.com/
  10. V

    PS2-Linux development kit

    http://www.ps2linux.scea.com/main.jpg
  11. V

    PS2-Linux development kit

    What's in the kit? For starters, a bunch of goodies. DVD-ROM containing Beta Release 1 of Linux for PS2 40 GByte Hard Disc Drive 10 BASE-T/100 BASE-TX Ethernet Interface USB Keyboard USB Mouse PlayStation 2 VGA AV Connector (HD 15 plus Stereo Audio) - Included on the DVD Disc...