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: *

  • Users: bdm1
  • Order by date
  1. bdm1

    Mgs does not display

    Thanks all for responding. It has been quite a few years since I did any of this And forgive me, but am not familiar with TGML. The paymentType must be selected and only certain payments will be membership dues, therefore the Paid thru date will be updated. The other payment types do not...
  2. bdm1

    Mgs does not display

    I converted an app from Access 2003 to 2010 in windows 7. All worked fine except that if the PaymentType is not selected, it should display a message that a PaymentType should be selected before proceeding further. It worked fine in old version but not in 2010. Below is the code. Can't...
  3. bdm1

    code to look up data from another table

    Thanks so much for your reply, lionelhill. I don’t have much experience in this type of coding so the methods you describe are intriguing but a bit over my head. Will do more research to better understand what you are advising. BTW, this is volunteer project so it is not as if my life...
  4. bdm1

    code to look up data from another table

    Before posting my sos, I had looked at and studied the dlookup function. But I must be doing something wrong, because I could not get it to work with the if statement. That is why I posted hoping for some further guidance. Thanks for the suggestion though. i will just have to keep trying....
  5. bdm1

    code to look up data from another table

    I have a lending library database (access 2010 on Windows xp). I have another patron registration database. I can link the Transactions (book loans) table to the registration database. Now what I would like to do is when a patron registers into the library and an item is overdue, a message...
  6. bdm1

    Store text not number in Option Group

    In Access 2007, I have an option group bound to a field in a table. When user makes a choice, what is recorded in the field is the Option Value number. How do i get it to store the Text Value. Thanks
  7. bdm1

    Auto Update Field

    Am designing an application in Access 2007 and cannot seem to get VB code to update field. Am using a tab form to enter payments and need to have the paid through date calculated automatically and entered into the paid through field in the Subscriber table. Below is the code for the after...
  8. bdm1

    Reports Menu

    The text box does populate with all the reports. The error occurs when a report is selected. I have used this procedure in the past, although in prior versions of Access, with no problems. Am thinking that this may be some quirk in 2007. Am still trying to get used to this version.
  9. bdm1

    Reports Menu

    Working in Access 2007. I have a form with an unbound text box which populates reports via a query: SELECT MsysObjects.Name, MsysObjects.Type FROM MsysObjects WHERE (((MsysObjects.Type)=-32764) AND ((Left$([Name],1)) Not Like "x*")) ORDER BY MsysObjects.Name; The users can choose a report...
  10. bdm1

    Access database designed on a MAC virtual PC

    Thanks PHV for your fast response. And how would I accomplish enabling code execution on the pc/
  11. bdm1

    Access database designed on a MAC virtual PC

    I have an MS access 2007 database designed on the windows virtual machine on a MAC. Everything works just grand if it is running on the MAC but when I load it on a Windows XP PC, the macros and event procedures do not work. I have checked all references and all are the same. Code also compiles...
  12. bdm1

    #error in date calculation

    I am using the query grid to calculate a future date based on a specific date field. All is fine except #error appears if there is no value in the specific date field. This is the code in the query grid: Next IEP: DateSerial(Year([Last iep date]),Month([Last iep date])+6,Day([Last iep date]))...
  13. bdm1

    #error

    Hi all, I have a function to calculated the length of time between specific dates and return results in terms of years, months, and days. This function is called in the query grid as: Length of time: Age([Start Date]) If the start date is null, it will return #error in the calculated field...
  14. bdm1

    Different page orientation in same report

    In a 2 page report, is it possible to have the first page print landscape and the second page print portrait orientation? If so, this would allow for duplex printing rather than printing the first page, reinserting and printing the second page. This second page would also have to be a second...
  15. bdm1

    Clear Form

    Thanks JB, works like a charm....
  16. bdm1

    Clear Form

    I need to keep the record in the underlying table and then clear the form...Thanks
  17. bdm1

    Clear Form

    I have an Access application which sends messages via Outlook. All works well except that when Outlook closes and the user is returned to Access, the original message is still on the form. I would like the form to be cleared and ready to accept new data. Below is the code used. Any...
  18. bdm1

    Strange Combo Box behavior when using keyboard and arrow keys

    Real strange problem...I have a form based on a table. A combo box retrieves the matching record when selected. All worked fine until now. Records show in the combo list but when selected, I get the error message that the text entered isn't an item in the list. This does not happen with...
  19. bdm1

    Hide Database Window

    I designed an application in Access 2000 using the code to hide the database window. The application opens to the Switchboard. All work just fine except the REPORTS menu. Clicking on a report, nothing happens. I have tried several options, including creating a new form just for the reports...
  20. bdm1

    Remove unwanted characters

    I have inherited an access table that needs cleaning. the Document Name field contains unwanted characters that I need to get rid of. This is what it looks like now: IRT%20INTERIOR%20TRIM.pdf What I need to do is remove all instances of %20. Is there a routine that will accomplishe this? I...

Part and Inventory Search

Back
Top