Click here to Skip to main content
16,004,974 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionRe: Setup Pin
Anonymous15-Oct-05 0:07
Anonymous15-Oct-05 0:07 
AnswerRe: Setup Pin
Jerry___15-Oct-05 5:17
Jerry___15-Oct-05 5:17 
AnswerRe: Setup Pin
rwestgraham15-Oct-05 9:49
rwestgraham15-Oct-05 9:49 
QuestionListbox With data Pin
_mubashir14-Oct-05 23:56
_mubashir14-Oct-05 23:56 
QuestionMultiple Links in Tables Cells in MS Word Pin
padmakumarg14-Oct-05 22:17
padmakumarg14-Oct-05 22:17 
QuestionHeadings in MS Word. Pin
padmakumarg14-Oct-05 22:10
padmakumarg14-Oct-05 22:10 
QuestionTextbox to Textbox ? Pin
Anonymous14-Oct-05 17:39
Anonymous14-Oct-05 17:39 
AnswerRe: Textbox to Textbox ? Pin
jo0ls15-Oct-05 12:12
jo0ls15-Oct-05 12:12 
pass the textbox byref when you open the form. To do this you can add a sub new to the form:

second form:

private textboxOnMainForm as textbox

Sub New(byref tb as textbox)
textBoxOnMainForm = tb
end sub

Main Form...

sub button1_click(blah blah)
dim f as new secondForm(me.textbox66)
f.show
end sub


This way the second is given the textbox when it is instantiated, as it is passed by ref, changes will stick to the original textbox.
GeneralRe: Textbox to Textbox ? Pin
Anonymous15-Oct-05 14:49
Anonymous15-Oct-05 14:49 
QuestionRead from txt file Pin
kenexcelon14-Oct-05 14:41
kenexcelon14-Oct-05 14:41 
AnswerRe: Read from txt file Pin
kenexcelon14-Oct-05 15:30
kenexcelon14-Oct-05 15:30 
AnswerRe: Read from txt file Pin
kenexcelon15-Oct-05 15:58
kenexcelon15-Oct-05 15:58 
QuestionMoving on from For statements Pin
Dr. Pool14-Oct-05 12:54
Dr. Pool14-Oct-05 12:54 
AnswerRe: Moving on from For statements Pin
Dr. Pool15-Oct-05 3:32
Dr. Pool15-Oct-05 3:32 
QuestionRegistries : i want to make a app same as regedit Pin
varun conday14-Oct-05 9:53
varun conday14-Oct-05 9:53 
Questionconverting .exe to source code Pin
Anonymous14-Oct-05 9:13
Anonymous14-Oct-05 9:13 
AnswerRe: converting .exe to source code Pin
Dave Kreskowiak14-Oct-05 12:15
mveDave Kreskowiak14-Oct-05 12:15 
AnswerRe: converting .exe to source code Pin
Amr M. K.19-Oct-05 4:25
Amr M. K.19-Oct-05 4:25 
QuestionRandom Numbers Pin
icouldntthinkofagoodname14-Oct-05 7:49
icouldntthinkofagoodname14-Oct-05 7:49 
AnswerRe: Random Numbers Pin
rwestgraham14-Oct-05 9:08
rwestgraham14-Oct-05 9:08 
AnswerRe: Random Numbers Pin
Alfista7114-Oct-05 9:15
Alfista7114-Oct-05 9:15 
AnswerRe: Random Numbers Pin
Dave Kreskowiak14-Oct-05 12:13
mveDave Kreskowiak14-Oct-05 12:13 
QuestionTooltip overlaying Treeview entries Pin
14-Oct-05 7:21
suss14-Oct-05 7:21 
QuestionQuestion on VB Pin
icDavid14-Oct-05 6:36
icDavid14-Oct-05 6:36 
AnswerRe: Question on VB Pin
Qhalis14-Oct-05 6:38
Qhalis14-Oct-05 6:38 

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.