PDA

View Full Version : Questions about Visual Basic


A-Husker-4-Life
05-25-2007, 10:18 PM
I'm trying to learn more about VB and possibly make my own text game, could somebody recommend any good websites about that topic??

I have another question about VB, how do you write multi line text or how do you display it??

21C
05-26-2007, 01:27 AM
I'm trying to learn more about VB and possibly make my own text game, could somebody recommend any good websites about that topic??
I would suggest finding some source code that does what you want it to do and adapt it to your needs. If you are using VB6 then a good starting point is here:
http://digilander.libero.it/curiellogiuseppe/VisualDesk/All-in-one.html
I have another question about VB, how do you write multi line text or how do you display it??
If you are talking about a text box then set its property for Multiline to be True. You can then use vbCrLf to add Carriage Returns and Line Feeds to start new lines.

The best suggestion I have for starting out is to find some working code, see what it does and then see what happens when you make changes.

Fidatelo
05-26-2007, 02:42 AM
http://msdn2.microsoft.com/en-us/vbasic/ms789086.aspx

hoosierdude
05-26-2007, 08:30 AM
Plus you can ask your questions on here as well, and there are a few people that can help you out with things if you run into problems.

Good Luck!

A-Husker-4-Life
05-26-2007, 08:38 AM
WOW, I think this is going to be a great starting point... Thanks guys..