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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by TCVance

  1. TCVance

    Percentage value turning wrong

    Is your field linked to a table. If so try makeing the field in the table a "Double" or "Single" instead of a "Long Interger". Hope this helps.
  2. TCVance

    Access 2000 comes up in Read Only mode

    We have a Access 2000 database that just comes up in Read-Only mode. We have full rights to the directory and there is no Access Security restrictions. The database was converted from Access 97 to Access 2000 recently. Thats about all that I know. Any ideas? We are lost as to what could be...
  3. TCVance

    subtracting with currencies

    Now I can't subtrack. I meant to say $500 - $1000.
  4. TCVance

    subtracting with currencies

    $1000 - $500 does = -$500. But if you want the absolute value of the difference you might use: answer = Abs({equation]).
  5. TCVance

    Overflow error in AVG function

    About the only I can think of is any of your fields NULL?
  6. TCVance

    Problem with Form and Subform

    If joehrne's suggestion doesn't work you might try: Docmd.openreport "HOME Buildings",acprint,,"[HOME Buildings]![BuildingNumber] = [Forms]![MAIN FORM]![HOME Building subform]![BuildingNumber]" Good Luck
  7. TCVance

    Help message on a button

    I think I got it. Thanks for your help.
  8. TCVance

    Help message on a button

    That works great, but when I do that I also get a grayed out menu box. Any ideas how to turn the menu box off?
  9. TCVance

    Help message on a button

    Is there a way to display a help message on a button without it comming in focus or active?
  10. TCVance

    Report Selection Form , not working with IsDate funtion

    If I understand what you want to do with your report. That is to list both the Active and InActive employees. The way you have the report set up now it will only list the Active or the InActive based on the input you entered in the End-Date. What you need to do is find a way for your report...
  11. TCVance

    Passing one value to multiple tabs

    The way I would do it (and it maybe off the wall) is to set up main form with the loan number in it with the 7 tabs, then make a subform in each of the tabs. The link between the main form and the subforms would be the loan number. Just another way of looking at it.
  12. TCVance

    Correct syntax for converting time to string field

    You might try "Format(time(),"hhnn")".
  13. TCVance

    A97: Switchboard

    I didn't know if you was still needing this code or not. Here it is anyway. You need to make a label in the switchboard where you want the menu title to be and name it "OptionLabel0". Then change the "FillOptions" sub routine in switchboard code. Following is part of the...
  14. TCVance

    A97: Switchboard

    You can do it with some minor changes to the code behind the Switchboard form. Let me know if you're interested in the code changes.
  15. TCVance

    Calculating Functions Using Two Tables

    The way that I would do this form would to bring down both the Item # and the percent in the combo box. The percent would be the second item and have a lenght of 0 inches(found in the properties list of combo field). Then use an Exit Event on the Change field to do the calculation. That would...

Part and Inventory Search

Back
Top