Search found 9 matches
Search found 9 matches
Page 1 of 1
- by Son_Of_Diablo
- Thu Oct 13, 2011 11:34 am
- Forum: Coding Help & Support
- Topic: [SOLVED] [HELP] Read RichTextBox line by line
- Replies: 9
- Views: 2086
You can do that by using a Timer and something like this:
Public RotateCount = 0
Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
If RotateCount = RichTextBox1.Lines.Count Then
RotateCount = 0
End If
Label4.Text = RichTextBox1.Lines(RotateCount ...
Public RotateCount = 0
Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
If RotateCount = RichTextBox1.Lines.Count Then
RotateCount = 0
End If
Label4.Text = RichTextBox1.Lines(RotateCount ...
- by Son_Of_Diablo
- Thu Oct 13, 2011 6:05 am
- Forum: Coding Help & Support
- Topic: [SOLVED] [HELP] Read RichTextBox line by line
- Replies: 9
- Views: 2086
Im a little confused about what you are trying to do do you want the text from richtextbox to show in the label all at once or are you trying to do some type of rotating banner type thing where it shows 1 line at a time in the label?
You got it right! :D
I want to show 1 line at a time and then ...
- by Son_Of_Diablo
- Wed Oct 12, 2011 11:58 am
- Forum: Coding Help & Support
- Topic: [SOLVED] [HELP] Read RichTextBox line by line
- Replies: 9
- Views: 2086
mandai wrote:Using vbLf instead of vbCrLf will fix that.
Different .Net versions will see the code differently.
I get the same result when i use vbLf and vbCrLf :?
- by Son_Of_Diablo
- Wed Oct 12, 2011 11:49 am
- Forum: Coding Help & Support
- Topic: [SOLVED] [HELP] Read RichTextBox line by line
- Replies: 9
- Views: 2086
When setting the label text you should use this:
Label14.Text += RichTextBox1.Lines(i) & vbCrLf
For each line, this will append the text and write a new line string.
Not exactly what i wanted, I want it to show the lines one by one so lets say the textbox looks like this:
A
B
C
Then the ...
Label14.Text += RichTextBox1.Lines(i) & vbCrLf
For each line, this will append the text and write a new line string.
Not exactly what i wanted, I want it to show the lines one by one so lets say the textbox looks like this:
A
B
C
Then the ...
- by Son_Of_Diablo
- Wed Oct 12, 2011 11:26 am
- Forum: Coding Help & Support
- Topic: [SOLVED] [HELP] Read RichTextBox line by line
- Replies: 9
- Views: 2086
I need help with reading a RichTextBox line by line I have this code:
But can't get it to work
It just skips to the last line cryer;
Anyone know how?
Thanks!
Code: Select all
For i As Integer = 0 To RichTextBox1.Lines.Length - 1
Label14.Text = (RichTextBox1.Lines(i))
Next
But can't get it to work
It just skips to the last line cryer;
Anyone know how?
Thanks!

- by Son_Of_Diablo
- Wed Jun 01, 2011 6:48 pm
- Forum: Tutorial Requests
- Topic: Teamviewer like program
- Replies: 11
- Views: 3583
U never done something with Visual Basic eh ?!
I bet if i search for it on Google i would get hundreds of Results with Good Tutorials for that.
I have done some work in Visual Basic yes!
And i have tried Google and i didn't get a anything i could use, so if you don't have any usefull to say ...
I bet if i search for it on Google i would get hundreds of Results with Good Tutorials for that.
I have done some work in Visual Basic yes!
And i have tried Google and i didn't get a anything i could use, so if you don't have any usefull to say ...
- by Son_Of_Diablo
- Wed Jun 01, 2011 4:25 pm
- Forum: Tutorial Requests
- Topic: Teamviewer like program
- Replies: 11
- Views: 3583
Agust1337 wrote:Well I'll see what I can do, I'll pm you with my results
Thanks you really much!

- by Son_Of_Diablo
- Wed Jun 01, 2011 3:24 pm
- Forum: Tutorial Requests
- Topic: Teamviewer like program
- Replies: 11
- Views: 3583
Agust1337 wrote:Hello Son_Of_Diablo,
I do not know if this is a working Remote Control application, but sure looks like it.
Palantir
It is written in c#, but you could probable translate into VB with this translater:
Converter Telerik
Thanks thant's what i mean

But can't convert the code :(
- by Son_Of_Diablo
- Wed Jun 01, 2011 12:43 pm
- Forum: Tutorial Requests
- Topic: Teamviewer like program
- Replies: 11
- Views: 3583
Hey I'm looking for a tutorial on how to make a remote desktop program like Teamviewer.
can anyone make one or give me a link to one please?
can anyone make one or give me a link to one please?

Search found 9 matches
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023