Hallo,
I had this code on a previous written application which worked fine.
However, note when either of the forms was opened all the others were closed and hence this code worked fine. Now, my new task is to open a form on top of the other. For example, FrmPracDetails and FrmPracNotes will be opened at the same time. This gives a wrong value to TextBox3 and hence data not extracted from the database. How can I have the above code updated so that it will consider the value in both forms..Code:Me.TextBox3.Text = FrmPracDetails.TextBox5.Text & FrmCreateNewPractice.TextBox1.Text & FrmPracNotes.TextBox3.Text & FrmColNotes.TextBox3.Text & FrmContNotes.TextBox3.Text
Thanks


Reply With Quote