Click here to Skip to main content
15,902,839 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHow to pass values between 2 mdi childs?(without new form) Pin
DeDelva4-Sep-11 12:12
DeDelva4-Sep-11 12:12 
AnswerRe: How to pass values between 2 mdi childs?(without new form) Pin
Simon_Whale4-Sep-11 12:38
Simon_Whale4-Sep-11 12:38 
AnswerRe: How to pass values between 2 mdi childs?(without new form) Pin
DaveAuld4-Sep-11 12:43
professionalDaveAuld4-Sep-11 12:43 
QuestionRe: How to pass values between 2 mdi childs?(without new form) Pin
DeDelva5-Sep-11 1:34
DeDelva5-Sep-11 1:34 
AnswerRe: How to pass values between 2 mdi childs?(without new form) Pin
DaveAuld5-Sep-11 1:59
professionalDaveAuld5-Sep-11 1:59 
QuestionRe: How to pass values between 2 mdi childs?(without new form) Pin
DeDelva5-Sep-11 2:44
DeDelva5-Sep-11 2:44 
AnswerRe: How to pass values between 2 mdi childs?(without new form) Pin
DaveAuld5-Sep-11 3:23
professionalDaveAuld5-Sep-11 3:23 
QuestionRe: How to pass values between 2 mdi childs?(without new form) Pin
DeDelva5-Sep-11 6:27
DeDelva5-Sep-11 6:27 
Dave,

Thanks again you really are a patient man right?...

Anyway, I can find the form and i know that it exists i will pass some code to give you a better view before i stop working with mdi containers.(last question hehe).

what i realllllyy need to accomplish is this:

Form A is a list of costumers where i can fill in textboxes with data. If i want to change a costumers data i click on a button search. This will go to form B where i can search through a datagridview of custumers.If i click a celrow the row data has to go to form A in the txt's.

Form B code:
SQL
If Not (e.RowIndex = -1) Then
            DataGridView1.Rows(e.RowIndex).Selected = True
        End If
        i = DataGridView1.CurrentRow.Index
        formA.TextBox1.Text = DataGridView1.Item(0, i).Value.ToString()

enso....
simply explained is that i need a formA.show() before it will pass the dgvitems in the txt.
I work between 2 mdichildrens so i cannot do this, also not possible the work with new because the form is already opened.

Can somebody help me out of this misery??? Frown | :(

Sorry for bothering


greetz
& thx dave;)
AnswerRe: How to pass values between 2 mdi childs?(without new form) Pin
DaveAuld5-Sep-11 7:20
professionalDaveAuld5-Sep-11 7:20 
JokeRe: How to pass values between 2 mdi childs?(without new form) Pin
DeDelva5-Sep-11 9:31
DeDelva5-Sep-11 9:31 
QuestionRe: How to pass values between 2 mdi childs?(without new form) Pin
DeDelva26-Sep-11 5:03
DeDelva26-Sep-11 5:03 
AnswerRe: How to pass values between 2 mdi childs?(without new form) Pin
DaveAuld26-Sep-11 5:33
professionalDaveAuld26-Sep-11 5:33 
QuestionRe: How to pass values between 2 mdi childs?(without new form) Pin
DeDelva26-Sep-11 7:01
DeDelva26-Sep-11 7:01 
AnswerRe: How to pass values between 2 mdi childs?(without new form) Pin
DaveyM697-Sep-11 1:31
professionalDaveyM697-Sep-11 1:31 
QuestionShell Function Gives Error 53 File Not Found in Windows 7 Pin
emrtnz2-Sep-11 17:50
emrtnz2-Sep-11 17:50 
AnswerRe: Shell Function Gives Error 53 File Not Found in Windows 7 Pin
DaveAuld2-Sep-11 23:52
professionalDaveAuld2-Sep-11 23:52 
AnswerRe: Shell Function Gives Error 53 File Not Found in Windows 7 Pin
emrtnz9-Sep-11 7:10
emrtnz9-Sep-11 7:10 
GeneralRe: Shell Function Gives Error 53 File Not Found in Windows 7 Pin
DaveAuld9-Sep-11 7:13
professionalDaveAuld9-Sep-11 7:13 
Questionhow to coonect mysql database with my vb6.0 project Pin
UD(IA)1-Sep-11 23:24
UD(IA)1-Sep-11 23:24 
AnswerRe: how to coonect mysql database with my vb6.0 project Pin
Wayne Gaylard2-Sep-11 1:15
professionalWayne Gaylard2-Sep-11 1:15 
GeneralRe: how to coonect mysql database with my vb6.0 project Pin
Nagy Vilmos2-Sep-11 2:45
professionalNagy Vilmos2-Sep-11 2:45 
AnswerRe: how to coonect mysql database with my vb6.0 project Pin
Nagy Vilmos2-Sep-11 2:50
professionalNagy Vilmos2-Sep-11 2:50 
AnswerRe: how to coonect mysql database with my vb6.0 project Pin
Bert Mitton2-Sep-11 7:50
professionalBert Mitton2-Sep-11 7:50 
Questiondispose on entity framework Pin
dcode251-Sep-11 5:27
dcode251-Sep-11 5:27 
AnswerRe: dispose on entity framework Pin
Dave Kreskowiak1-Sep-11 7:45
mveDave Kreskowiak1-Sep-11 7:45 

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.