Click here to Skip to main content
16,008,954 members
Home / Discussions / Visual Basic
   

Visual Basic

 
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 
AnswerRe: how to auto-fill a textbox? Pin
Joe Cleland11-May-05 13:53
Joe Cleland11-May-05 13:53 
In VB.Net this should work (code is untested):
<br />
Private Sub Textbox_TextChanged(Sender as Object, e as EventArgs) Handles first_name.TextChanged, middle_name.TextChanged, last_name.TextChanged<br />
<br />
full_name.Text = first_name.Text & " " & middle_name.Text & " " & last_name.Text<br />
<br />
End Sub<br />

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 
GeneralForms Pin
gone8310-May-05 21:19
gone8310-May-05 21:19 

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.