Click here to Skip to main content
15,899,314 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Set tab stop in vb.net [modified] Pin
New_Coder8-Jun-06 3:16
New_Coder8-Jun-06 3:16 
AnswerRe: Set tab stop in vb.net [modified] Pin
Member 22716556-Jun-06 23:36
Member 22716556-Jun-06 23:36 
QuestionHow to get ProductVersion in .Net 2005 Pin
Steven J. Reed6-Jun-06 8:59
Steven J. Reed6-Jun-06 8:59 
AnswerRe: How to get ProductVersion in .Net 2005 Pin
progload6-Jun-06 9:21
progload6-Jun-06 9:21 
GeneralRe: How to get ProductVersion in .Net 2005 Pin
Steven J. Reed6-Jun-06 9:30
Steven J. Reed6-Jun-06 9:30 
GeneralRe: How to get ProductVersion in .Net 2005 Pin
progload6-Jun-06 9:45
progload6-Jun-06 9:45 
Questionhow to change the textbox control source property Pin
iramg6-Jun-06 8:27
iramg6-Jun-06 8:27 
AnswerRe: how to change the textbox control source property Pin
Kschuler6-Jun-06 8:44
Kschuler6-Jun-06 8:44 
Your question is hard to understand. Are you just asking how to put text from a textbox into your own string? If so, that looks like this:

Dim myString as String = txtMyTextbox.Text

Then you can manipulate the myString value without changing the text currently in the textbox. Is that what you were asking for?

Or wait...maybe you mean you want to use the textboxes TextChanged Event. When ever the text inside the box changes it fires. It would look something like this:

Private myString as String = ""<br />
<br />
Private Sub txtMyTextbox_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtMyTextbox.TextChanged<br />
     myString = txtMyTextbox.Text<br />
End Sub

GeneralRe: how to change the textbox control source property Pin
iramg8-Jun-06 7:56
iramg8-Jun-06 7:56 
GeneralRe: how to change the textbox control source property Pin
Kschuler8-Jun-06 8:08
Kschuler8-Jun-06 8:08 
QuestionHow to rename a file name Pin
Jijo thomas6-Jun-06 7:54
Jijo thomas6-Jun-06 7:54 
AnswerRe: How to rename a file name Pin
Kschuler6-Jun-06 8:59
Kschuler6-Jun-06 8:59 
AnswerRe: How to rename a file name Pin
Guffa6-Jun-06 9:04
Guffa6-Jun-06 9:04 
GeneralRe: How to rename a file name Pin
Kschuler6-Jun-06 9:08
Kschuler6-Jun-06 9:08 
AnswerRe: How to rename a file name Pin
Guffa6-Jun-06 9:02
Guffa6-Jun-06 9:02 
QuestionHow to Export a Datatable to Ms Access or SQL server Pin
changeez6-Jun-06 7:46
changeez6-Jun-06 7:46 
Questionconnected to the internet or not ?? Pin
Tamimi - Code6-Jun-06 3:07
Tamimi - Code6-Jun-06 3:07 
AnswerRe: connected to the internet or not ?? Pin
J4amieC6-Jun-06 4:12
J4amieC6-Jun-06 4:12 
AnswerRe: connected to the internet or not ?? Pin
Steven J Jowett8-Jun-06 23:06
Steven J Jowett8-Jun-06 23:06 
Questionserialport response Pin
mikica176-Jun-06 2:04
mikica176-Jun-06 2:04 
QuestionText Box Validation [modified] Pin
N0V3M83R6-Jun-06 1:47
N0V3M83R6-Jun-06 1:47 
AnswerRe: Text Box Validation [modified] Pin
albCode6-Jun-06 2:48
albCode6-Jun-06 2:48 
AnswerRe: Text Box Validation [modified] Pin
changeez7-Jun-06 21:32
changeez7-Jun-06 21:32 
QuestionVB.net Stored Procedure [modified] Pin
MohamadJaber6-Jun-06 1:06
MohamadJaber6-Jun-06 1:06 
AnswerRe: VB.net Stored Procedure Pin
J4amieC6-Jun-06 1:18
J4amieC6-Jun-06 1:18 

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.