Recent content by SirDrums

  1. S

    Can't Open table if query run first.

    Strange problem. I have a link table in my DB that seemed to be working fine. I referenced the table in a query and the query worked fine. I close and reopen access and run the query and I get a message that access can't fine the link table. Then when try to open the table directly it...
  2. S

    AutoExec Macro Doesn't run

    The macro just runs a create table query. Very simple and runs fine when it actually runs. I do not know of another way to get this macro to run when a another program opens a connection to the mdb. The reason it need to run is so it can refresh the table (delete, recreate).
  3. S

    AutoExec Macro Doesn't run

    Is there a way to get the autoexec to run in this scenario? We have an app that opens a MDB programatically and I want to run a macro when it 'opens' the mdb. I have no control of the app itself so I am trying to find a way to run this macro.
  4. S

    AutoExec Macro Doesn't run

    I have created an autoexec macro that runs just fine when I open access directly. However, when the .mdb is accessed by another application (.ldb placed on file and the access program itself isnt run) the macro does not run. Is there a trick to this? How do I get the macro to run even if the...
  5. S

    How to create Link table when MDB is created

    Two plus computers are involved but they all create there own version of the mdb on theri C drives when the app is launched. THe app i would like to write would have to sit on everyones machine individually.
  6. S

    How to create Link table when MDB is created

    Hey guys, I was wonder if the following is possible: 1. Monitor a certain folder on C drive. 2. Look for a certain MDB to be created. 3. When the MDB is found create a link table in it. The reason i need this is because we use a application that creates a local mdb. In this local mdb i need...
  7. S

    Auto Size Property = Small Print Preview

    When I launch one of my reports from a form, the preview displays in a very small window. THe report in the window is zoomed to 75% but the window it self is something like 1"x1" When I turn thr auto size property on the report to OFF the window is created larger (not perfect). When I open...
  8. S

    Printing from Print Preview window

    I think I will try adding a label that does not print. THough I do not know how to set the label so it will not print. Is there are hidden property? I didn't see one for labels that controls wether its printed or not.
  9. S

    Printing from Print Preview window

    Thats my problem. When I right click on the preview I do not get an option to print. actually I do not get a right click menu at all. I can go to the report directly and preview and I get a right click menu but when I open the report from a form the menu is disabled.
  10. S

    Printing from Print Preview window

    I am sure this is real simple but I am triping up on it. I have a report I open from a form in print preview but I cannot get the option to allow the user to go ahead and print the report when they are done reviewing it. I though you should be able to right click on the report and get the...
  11. S

    Query return the same record many times over.

    I figured it out and how this happened I do not know. THe table Piping was listed in the query design as Piping_1 just like I brought the table into the query twice. But the sql string said piping. When I forced the table to be called Piping instead of piping_1 and ran it, it freaked out and...
  12. S

    Multiple Left Join Issue

    yup. i just use it. I didnt program it. It works though.
  13. S

    Query return the same record many times over.

    inner join returns the same mess that left join did. This is fustrating but I'll keep at it.
  14. S

    Query return the same record many times over.

    Sure SELECT PIPING.COMP_ID, RELATIONSHIPINSTANCE.RELATIONSHIPTYPE, RELATIONSHIPINSTANCE.ID1 FROM PIPING LEFT JOIN RELATIONSHPINSTANCE ON PIPING.COMP_ID = RELATIONSHIPINSTANCE.ID2 WHERE (((RELATIONSHIPINSTANCE.RELATIONSHIPTYPE)=3)); This returns what I expect, just a small list of items...
  15. S

    Query return the same record many times over.

    I checked SQL and it is a Left join SELECT PIPING.COMP_ID,[QUERY1].COMP_ID FROM PIPING LEFT JOIN [QUERY1] ON PIPING.COMP_ID = [QUERY1].COMP_ID The COMP_ID's in the table and query match and when I run this manually like stated above I get 1 record. When I run it through the sql above I...
Back
Top Bottom