from one field to another

kentendresen

Registered User.
Local time
Today, 17:43
Joined
Nov 13, 2002
Messages
49
Hi

I have a form where I have listed a lot of questions. I want to mark one of the questions, click a button, and that question moves over to another field. Is that possible? And if yes, how do I fix that?!

Thanks!
 
Kent,

Use the AfterUpdate event of one question to:

Me.YourNextField.SetFocus

Note: The tab control order can also determine this.

Wayne
 
Thank you, but...

I'm not good at this, so I need some more explanation or code. I have a long list of questions, and I want a button who can move selected question over to the next empty list, so that the user can print out 20 selected questions afterwards...
 
To transfer text from one field to another...
Code:
Me.YourEmptyTextBox = Me.YourTextBoxWithData

IMO
 
It didn't work!

I have a long list, with around 150 questions. When I click on one question, the question get marked. Then I want to just click a button, and the marked question moves to the empty list.

Maybe I use the code you have suggested wrong?!

Thanks!
 
Can you post your DB

IMO
 
Here is a snapshot of how I want it! (Not from the real database, but anyway...)
 

Attachments

  • maketest.gif
    maketest.gif
    85.3 KB · Views: 163

Users who are viewing this thread

Back
Top Bottom