Click here to Skip to main content
15,921,941 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Catalin - SQL &VB Pin
Colin Angus Mackay11-May-05 3:12
Colin Angus Mackay11-May-05 3:12 
GeneralRe: Catalin - SQL &VB Pin
Rizwan Bashir11-May-05 3:13
Rizwan Bashir11-May-05 3:13 
GeneralRe: Catalin - SQL &VB Pin
Colin Angus Mackay11-May-05 3:46
Colin Angus Mackay11-May-05 3:46 
Questionhow to dissable print option in word and also dissable addin's Pin
chashe11-May-05 2:50
chashe11-May-05 2:50 
AnswerRe: how to dissable print option in word and also dissable addin's Pin
vertig073011-May-05 3:16
vertig073011-May-05 3:16 
GeneralRe: how to dissable print option in word and also dissable addin's Pin
Dave Kreskowiak11-May-05 5:49
mveDave Kreskowiak11-May-05 5:49 
Questionhow to auto-fill a textbox? Pin
Lisana11-May-05 2:34
Lisana11-May-05 2:34 
AnswerRe: how to auto-fill a textbox? Pin
Dave Kreskowiak11-May-05 2:49
mveDave Kreskowiak11-May-05 2:49 
Handle the TextChanged events of the 3 text boxes, you could even do this with a single function. Combine the contents of the 3 text boxes and place the result in the FullName textbox.
Private Sub NameTextBoxesChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FirstName.TextChanged, MiddleName.TextChanged, LastName.TextChanged
    FullName.Text = LastName.Text & ", " & FirstName.Text & " " & MiddleName.Text
End Sub



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

AnswerRe: how to auto-fill a textbox? Pin
Joe Cleland11-May-05 13:53
Joe Cleland11-May-05 13:53 
GeneralRe: how to auto-fill a textbox? Pin
Dave Kreskowiak11-May-05 15:50
mveDave Kreskowiak11-May-05 15:50 
GeneralRe: how to auto-fill a textbox? Pin
Joe Cleland12-May-05 5:07
Joe Cleland12-May-05 5:07 
GeneralSqlConnection Error Pin
nitin_ion11-May-05 1:47
nitin_ion11-May-05 1:47 
GeneralRe: SqlConnection Error Pin
Dave Kreskowiak11-May-05 2:44
mveDave Kreskowiak11-May-05 2:44 
GeneralRe: SqlConnection Error Pin
nitin_ion11-May-05 17:28
nitin_ion11-May-05 17:28 
GeneralRe: SqlConnection Error Pin
Dave Kreskowiak12-May-05 1:32
mveDave Kreskowiak12-May-05 1:32 
GeneralRe: SqlConnection Error Pin
nitin_ion12-May-05 1:39
nitin_ion12-May-05 1:39 
GeneralClose form form another one Pin
johnjsm10-May-05 23:48
johnjsm10-May-05 23:48 
GeneralRe: Close form form another one Pin
Dave Kreskowiak11-May-05 2:42
mveDave Kreskowiak11-May-05 2:42 
GeneralRe: Close form form another one Pin
johnjsm11-May-05 3:07
johnjsm11-May-05 3:07 
GeneralRe: Close form form another one Pin
Rizwan Bashir11-May-05 3:17
Rizwan Bashir11-May-05 3:17 
GeneralRe: Close form form another one Pin
Dave Kreskowiak11-May-05 5:46
mveDave Kreskowiak11-May-05 5:46 
GeneralRe: Close form form another one Pin
Dave Kreskowiak11-May-05 5:43
mveDave Kreskowiak11-May-05 5:43 
GeneralPrinting a form/page Pin
LAYEEQ AHMED KHAN10-May-05 23:14
LAYEEQ AHMED KHAN10-May-05 23:14 
GeneralRe: Printing a form/page Pin
Dave Kreskowiak11-May-05 2:42
mveDave Kreskowiak11-May-05 2:42 
GeneralRe: Printing a form/page Pin
Treacherous_112-May-05 5:20
Treacherous_112-May-05 5:20 

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.