i joined when i was 13/14 (im 16 now)
i was like you, i could kinda do vb and pascal and now i study computing at college
Umm best bet is a book - beware as some are really in depth
do you have any programming software already?
if you have Visual basic 6 i can give you loads of stuff (im studying it at college)
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601
visual basic is liek pascal but easier:
e.g
private sub command1_click
dim name as string
name=inputbox("Enter name:")
msgbox "Welcome &name& "
end sub
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601
look at that visual basic express i talked to u about on msn
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601
VB is good for learning, but don't get too caught up programming in it. I started programming at 11, and now I'm 20. It took me a long time (>2 years) to realise there was more out there than VB, and that I was using it for (mostly) the wrong things.
You will find though; if you can pick up one language, it's quite easy to move onto another. I'd suggest Java if you want something as simple as VB but with a better structure, and C++ if you want to learn loads. I never finished learning C++.
Delphi's a nice thing but the syntax is strange (similar to VB) when compared to other Object-Orientated languages.
What sort of things do you want to program?
MattEvans
Veteran Poster
1,386 posts since Jul 2006
Reputation Points: 522
Solved Threads: 64
im getting into VB. i got a small (bit bigger thab pocket sized) book, made by microsoft press for £12.99 and it came with VB express edition
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601
in VB6 do (formname.show)
e.g
private sub command1_click
form2.show
end sub
in .NET its a bit more complex
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601
if you install everything its less than 600 meg
if you dont install the MSDN or SQL its much less
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601