Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. mobuto

    Link Forms

    Thanks
  2. mobuto

    Link Forms

    Is this the right procedure to clear the infomation ElseIf Check2.Value = 0 then MyValue.clear
  3. mobuto

    Number will not display in text box

    Thanks a bunch, works great.
  4. mobuto

    Link Forms

    Thanks vb5prgmr, worked great.
  5. mobuto

    Link Forms

    Yes, I am working with Access.
  6. mobuto

    Number will not display in text box

    I have written this cdoe for my database, Private Sub Text333_KeyPress(KeyAscii As Integer) If KeyAscii = 48 Then DoCmd.Close acForm, "Medication Problems", acSaveYes DoCmd.OpenForm "Medication Problems (Short Form)" ElseIf KeyAscii = 49 Then Text335.SetFocus...
  7. mobuto

    data control

    I have written this cdoe for my database, Private Sub Text333_KeyPress(KeyAscii As Integer) If KeyAscii = 48 Then DoCmd.Close acForm, "Medication Problems", acSaveYes DoCmd.OpenForm "Medication Problems (Short Form)" ElseIf KeyAscii = 49 Then Text335.SetFocus...
  8. mobuto

    Link Forms

    Can anyone give me advice on how to link controls in a form. I want to give the user the ability to click a check box. By clicking the check box, information from say control 1 on form 1, will automatically be put in control 2 on form 2, in essence I want to link controls on two seperate forms...
  9. mobuto

    Prompt user with directions

    I am having trouble writing code so that I may be able to give the user of my database directions when they click on a control. The idea is that users will click an option button in a option group, afterwards a prompt will appear telling them that Phase I is complete. Help is greatly appreciated.
  10. mobuto

    Change focus from a text box after text has been written

    I basically want a user to be able to write an answer to a question in a text box, after they write the text in the text box, I would like the focus to switch to another control when the user hits enter.
  11. mobuto

    Activate a text box from a option group

    Thanks a bunch
  12. mobuto

    Activate a text box from a option group

    My problem is that I have an option group with two option boxes, one says yes and the value is 1, and the other option box says no and the value is 2. What I want to do is that when a user clicks the option button yes, I want the focus to move to text box 98, otherwise, when the user clicks the...

Part and Inventory Search

Back
Top