|
|
 |
|
|
|
|
|
Hello ,
This is Tutorial #5 By Me 
1 ) Insert An Rich Text Box If you dont have one . ---------------------------------------------------------- The Methord used is quite simple . All You need to do is use the Sel In All Subjects wanted in the Rich Text Box
2 ) Insert this code :
| QUOTE | richtextbox1.SelColor = &HFFF& ' The Colour Code is wierd . But Just use the colour coder used in the Visual Basic Program to colour objects and copy the colour code into the & parts and it will make it a short version
richtextbox1.SelItalic = False richtextbox1.SelBold = True richtextbox1.SelText = "Please Hold, Connecting To The Server..." & vbCrLf 'vbCrLf means a new line so it dont delete the previous line
richtextbox1.SelColor = &H8000& richtextbox1.SelItalic = False richtextbox1.SelBold = True richtextbox1.SelText = "Disconnected!" & vbCrLf ' You Can Use The Same code as many times as you like wihtout confustion on the program |
|
|
|
|