Click here to Skip to main content
15,896,727 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionScanner Activation Pin
Thoombath28-Mar-06 20:17
Thoombath28-Mar-06 20:17 
QuestionRetrieving value from Subitem of Listview Pin
wilde28-Mar-06 20:12
wilde28-Mar-06 20:12 
AnswerRe: Retrieving value from Subitem of Listview Pin
alien viper28-Mar-06 20:33
alien viper28-Mar-06 20:33 
QuestionComparing strings with variable lengths/misspells/... Pin
mayhem_rules28-Mar-06 18:59
mayhem_rules28-Mar-06 18:59 
AnswerRe: Comparing strings with variable lengths/misspells/... Pin
dptalt29-Mar-06 2:33
dptalt29-Mar-06 2:33 
QuestionUnicode supported characters in filenames Pin
sp_ranjan28-Mar-06 18:48
sp_ranjan28-Mar-06 18:48 
QuestionRichtextbox.Line property Pin
wilde28-Mar-06 18:06
wilde28-Mar-06 18:06 
AnswerRe: Richtextbox.Line property Pin
Joshua Quick28-Mar-06 19:28
Joshua Quick28-Mar-06 19:28 
You need to iterate through each string element in your string array and append them to the RichTextBox.Text property. You can do this via array indexing or ForEach.

Based on your previous post, I'm guessing that you also want to append a newline to each string in your array. You can do this via Environment.NewLine.

Dim myStrings() As String = {"Hello", "World"}
Dim nextString As String
For Each nextString In myStrings
   myRichTextBox.Text &= nextString & Environment.NewLine
Next

Questionvb.net 2005 school assignment Pin
vb2005.net@hotmail.com28-Mar-06 16:40
vb2005.net@hotmail.com28-Mar-06 16:40 
AnswerRe: vb.net 2005 school assignment Pin
Chatura Dilan28-Mar-06 17:23
Chatura Dilan28-Mar-06 17:23 
AnswerRe: vb.net 2005 school assignment Pin
Dave Kreskowiak29-Mar-06 1:14
mveDave Kreskowiak29-Mar-06 1:14 
Questionadding new line in Ricgtextbox Pin
wilde28-Mar-06 14:49
wilde28-Mar-06 14:49 
AnswerRe: adding new line in Ricgtextbox Pin
merlynml28-Mar-06 16:23
merlynml28-Mar-06 16:23 
GeneralRe: adding new line in Richtextbox Pin
wilde28-Mar-06 16:40
wilde28-Mar-06 16:40 
QuestionPoor performance of VB.net HashTable Class Pin
jjbhey28-Mar-06 14:19
jjbhey28-Mar-06 14:19 
AnswerRe: Poor performance of VB.net HashTable Class Pin
Christian Graus28-Mar-06 14:50
protectorChristian Graus28-Mar-06 14:50 
GeneralRe: Poor performance of VB.net HashTable Class Pin
jjbhey28-Mar-06 17:52
jjbhey28-Mar-06 17:52 
GeneralRe: Poor performance of VB.net HashTable Class Pin
Joshua Quick28-Mar-06 19:19
Joshua Quick28-Mar-06 19:19 
Questionxml Pin
SVb.net28-Mar-06 13:19
SVb.net28-Mar-06 13:19 
AnswerRe: xml Pin
Christian Graus28-Mar-06 14:06
protectorChristian Graus28-Mar-06 14:06 
Questioncrystat report.net Pin
SVb.net28-Mar-06 11:15
SVb.net28-Mar-06 11:15 
QuestionOpen File Dialog Pin
ADY00728-Mar-06 8:28
ADY00728-Mar-06 8:28 
AnswerRe: Open File Dialog Pin
CWIZO28-Mar-06 8:53
CWIZO28-Mar-06 8:53 
AnswerRe: Open File Dialog Pin
IBetNoBodyWillHaveThisNameOrAlias28-Mar-06 8:53
IBetNoBodyWillHaveThisNameOrAlias28-Mar-06 8:53 
GeneralRe: Open File Dialog Pin
ADY00728-Mar-06 9:23
ADY00728-Mar-06 9:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.