Yeah I really want to learn how to use C++, because people say if you want to make games, that is definatly the program to use, but the one I used just isn't that good, so I am thinking of getting Visual C++, even if it is an older version, because since I am comfortable with Visual Basic, I figure C++ will look similar and not too overwhelming for me at first. The coolest game I made in Visual Basics was this cheeze-o game called "Hover Wars" which was basically the up to down scroller game where you just fight an enemy boss, but the graphics were kind of fun.
Anyways yeah, I looked at the Rich Text Box thing and couldn't find anything. But then I used my trusty www.pscode.com and found this code snipplet right way
Code:
'**************************************
' Name: Easy WordWrap in RichTextBoxes
' Description:Create a WordWrap function
' for your program using a RichTextBox in
' one easy line of code!
' By: Matt Shrock
'
'This code is copyrighted and has' limited warranties.Please see http://w
' ww.Planet-Source-Code.com/vb/scripts/Sho
' wCode.asp?txtCodeId=2527&lngWId=1'for details.
'**************************************
RichTextBox1.RightMargin = RichTextBox1.Width
And what do you know, it does work
now it isn't the greatest looking thing when you look at yourself typing on the screen since it bumps for a second....but for a second. You'll get what I am talking about when you start typing. And FYI I put that code in the
Code:
Private Sub RichTextBox1_Change()
area. Maybe you can send me the program when it is done! I would be glad to test it for you.