Aug 27, 2007 #1 tyang01 Technical User Joined Feb 1, 2007 Messages 46 Location US I'm trying to pass a string variable from one form to another. Can someone point me in the right direction?
I'm trying to pass a string variable from one form to another. Can someone point me in the right direction?
Aug 27, 2007 #2 RuralGuy Technical User Joined Jun 27, 2002 Messages 446 Location US Either use the OpenArgs argument of the OpenForm command or go through the Forms collection. HTH RuralGuy (RG for short) acXP winXP Pro Please respond to this forum so all may benefit Upvote 0 Downvote
Either use the OpenArgs argument of the OpenForm command or go through the Forms collection. HTH RuralGuy (RG for short) acXP winXP Pro Please respond to this forum so all may benefit
Aug 27, 2007 #3 ZOR Technical User Joined Jan 30, 2002 Messages 2,963 Location GB Create a new module, and put your variable in there as a Public variable. Public Toy as string Obviously Toy was just an example, and if its an integer then change string to integer etc. Upvote 0 Downvote
Create a new module, and put your variable in there as a Public variable. Public Toy as string Obviously Toy was just an example, and if its an integer then change string to integer etc.