It shouldn't be this hard

Reply

Join Date: Sep 2007
Posts: 1
Reputation: blinkonon is an unknown quantity at this point 
Solved Threads: 0
blinkonon blinkonon is offline Offline
Newbie Poster

It shouldn't be this hard

 
0
  #1
Sep 19th, 2007
Should be simple but my brain is about to explode. My database has a form frmPets. I am simply trying to take a field (text) from that form and populate other related forms without actually having to open those forms right away. After 2 weeks of searching and banging my head against the keyboard I'm about to go starkers!

I followed Stan Yost's thread but no result for me.

frmPets
type in the pet's name in the PetName text box.

frmPrescription
take the previously entered PetName from frmPets and display it on this form in a text box.

frmConsult
take the previously entered PetName from frmPets and display it on this form in a text box.

I don't want to add a cmd button to open and populate the new forms. I need to have the forms populated when the user opens them.

By the way - I am so new at MS Access and coding that you can still smell that new software scent on me Thanks for any help you may be able to give me!
Reply With Quote Quick reply to this message  
Join Date: Aug 2007
Posts: 160
Reputation: kb.net is an unknown quantity at this point 
Solved Threads: 26
kb.net's Avatar
kb.net kb.net is offline Offline
Junior Poster

Re: It shouldn't be this hard

 
0
  #2
Sep 20th, 2007
Hi,

You have to create a module, and in that module declare a public variable (ex: Public PetNam as string). Now in frmPet and on the textbox after update event (or change event) add the following code:
PetNam = Me.txtPetNam (where txtPetNam is the text box in which the name is filled).
Now on the other form open event add the below code:
Me.txtPet = PetNam (where txtPet is the name of the text box in frmPrescription).
It is never about the number of languages you know, you either have the logic of programming or you don't ...

Some of the codes I post are collected from different sites during the past couple of years, so I would like to thank them for their help and for enabling me to help.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC