|
|
#1 (permalink) |
|
Monster Member
Join Date: Jan 2007
Location: .net 3.5 SP1
Age: 18
Posts: 2,402
Rep Power: 5
|
Heyy guys, never really been huge in the coding department as it will show, but i could use a hand if you don't mind
![]() intention: as each name is added it will move down one line and then be written to a .txt doco code as far: Code:
Private Sub optSlow_Click()
If optChina = True Then
txtInfo = txtInfo.Text & "Yim Chan <NEW LINE> Yow Choi <NEW LINE>"
Else
End If
End Sub
![]() ty
__________________
;]
|
|
|
|
|
|
|
|
#2 (permalink) |
|
Pro Member
Join Date: Jun 2006
Age: 19
Posts: 5,593
Rep Power: 8
|
Code:
Private Sub optSlow_Click()
If optChina = True Then
txtInfo = txtInfo.Text & "Yim Chan" & vbCrLf & "Yow Choi" & vbCrLf
Else
End If
End Sub
__________________
There are no stupid questions... but there are alot of inquisitive idiots. - |
|
|
|
|
|
#7 (permalink) |
|
Pro Member
Join Date: Jun 2006
Age: 19
Posts: 5,593
Rep Power: 8
|
Ahh.. but see you need both
vbCrLf is carriage return and line feed (Chr(10) and Chr(13)).. vbNewLine is only.. line feed I think..chem
__________________
There are no stupid questions... but there are alot of inquisitive idiots. - |
|
|
|
|
|
#9 (permalink) | |
|
Pro Member
Join Date: Jun 2006
Age: 19
Posts: 5,593
Rep Power: 8
|
Quote:
). Lucky the RichTextBox control passes them though.chem
__________________
There are no stupid questions... but there are alot of inquisitive idiots. - |
|
|
|
|







