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 SkipVought 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. ciskris

    Command button not closing form, getting an on click error .....

    The button still does not work when I close the form and application and go back in. I do get the same error message also. The name of my command button is cmdCloseVisitEdit and the name of the procedure is cmdCloseVisitEdit_Click(). The only code in the procedure is cmd.Close...
  2. ciskris

    Command button not closing form, getting an on click error .....

    I have 5 forms so far in my database and am currently working on a data entry form. The first four forms all have exit buttons that close the form and open a main menu. For some reason on my fifth form the exit button brings up an error when it is clicked: The expression On Click you entered...
  3. ciskris

    Calendar control help - it won't send the value on the click event

    I am having trouble with a calendar control on a form that pops-up when a user enters a date text box. First I am getting an error about the on load event for the form because that is where I set the date for the calendar to today's date. Then once I cancel the error message, it does put the...
  4. ciskris

    Need a way to fill in a memo box with an option group button

    I will try that. Thanks for the help.
  5. ciskris

    Need a way to fill in a memo box with an option group button

    Is there a way to select an option group button or checkbox and have a memo box pop-up to fill in with text? I have a user that has questions on a form. Each question can be answered with choosing from 4 choices and the last choice is Other and needs to be specified. Please let me know if...
  6. ciskris

    Subform on main form - having problems with main forms key field

    A little background first: I have a main data entry form where you choose a Contract ID from a drop down and an autonumber field ID is activated when you tab form it to the drop down. This autonumber ID is the key for the table under the form. On this main form I have a subform that only...
  7. ciskris

    Changing the color of a command button

    Is there anyway to change the color of a command button from the default gray color? I now you can change the background color of some controls but I haven't found anything for buttons.
  8. ciskris

    Edit form does not display all fields in a record but the ID

    Thanks Jeff for your code suggestion. I added it to my search form and it worked. Now when I open up an edit form I see all of the fields that have been filled in for the ID I was searching on. I can finally finish up my database and train the users on it. Thanks again.
  9. ciskris

    Edit form does not display all fields in a record but the ID

    Sorry about the confusion. That code was given to me by a coworker trying to help me with the solution. I am trying to pull up an existing record. I will add your code to what I have and take out the acNewRec. Can I still keep the code for locking the records and unlocking them?
  10. ciskris

    Edit form does not display all fields in a record but the ID

    I am using the code: txtContractID = cboProvider DoCmd.OpenForm "editform" DoCmd.Close acForm, "currentform" This code is in the click event for the button on the search form. On the edit form I don't have an open event but a form_load where I...
  11. ciskris

    Edit form does not display all fields in a record but the ID

    I have a search form where you select an ID from a drop-down and the command buttons(for edit forms) below the drop-down are enabled if that ID is contained in the table that is queried for each of the edit form buttons. When you click on an edit form button the ID becomes a global variable...
  12. ciskris

    Function to loop thru multiple records with same id to calculate on

    I am pulling the patient id, proc code and pay amount with a query and then adding a new field in the query with the module that contains the loop. My new query field would look something like this: payoutamt: pay([patID],[payamt]). The calculations on the pay amount would possibly be saved to...
  13. ciskris

    Function to loop thru multiple records with same id to calculate on

    Am having trouble building a function to loop through a recordset that contains records that can have one or more billing codes under the same patient number. I need to calculate 100% of the highest paying amount, 50% of the second highest and 25% on all remaining amounts. I have a Do While...

Part and Inventory Search

Back
Top