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. 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...
  16. TCVance

    Subsubform

    I'll give it a try. I would make a form with a sub-form. In the main form I would have two combo boxes. The first combo box would query the main table and allow you to pick the main product item you want. The second combo box would query the sub-product table and list all the sub-products...
  17. TCVance

    Combo Box to Text Box

    In your query of table2 show both fields that you want on the form. Then in the attributes of the combo box make sure the you have 2 columns. You can have the second column have a length of 0", this will hide the second column when the combo box has focus. Create an event procedure for...
  18. TCVance

    Using a form for User name & password

    This might not be what you want, but you can make security groups and sign indivduals to these groups. Then assign the groups the access you want them to have to the tables (ex: read only).
  19. TCVance

    Help with Query

    If I was doing the query, all I would do is make a Grouping query of the the table. To do this I would create a query using the Process Type field and one other field. From the VIEW menu opition I would select the TOTALS opition. On the query grid I would leave the Process Type as GROUP BY...
  20. TCVance

    HIPAA & Access

    I don't work on HIPAA, but other members of my team do. They work with HIPAA on the mainframe, where it ommunicates with other Health and Provider programs. You were asking for more information on security and other information in general on HIPAA. I asked the lead analyst where they go for...

Part and Inventory Search

Back
Top