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. Axworthy

    Delete with WHERE Clause.

    Jet SQL requires DELETE * FROM instead of DELETE FROM that works for most other versions of SQL.
  2. Axworthy

    PDF Meld

    Are you looking to merge multiple PDFs into one? I have always used an external program called PDFTK.exe that I call using command line parameters to get this done. Hopefully someone has a more elegant solution.
  3. Axworthy

    "There isn't enough memory to perform this operation..." error after upgrading from Access

    If it is a specific form that is causing the error, you can try to export it to text and re-import it: application.saveastext acForm, "frmFormname", "C:\Temp\frmFormname.txt" then application.loadfromtext acForm, "frmFormname", "C:\Temp\frmFormname.txt
  4. Axworthy

    thread703-757058 I use the followi

    A little long, but you could write it like this: [City] & iif(len(nz(City, "")) > 0 and len(nz(State, "")) > 0, ", ", "") & [State] & " " & [Zip] This will only show the comma if there is both a city and a state.
  5. Axworthy

    Help with SQL inner join statement

    I believe you will need to put parenthesis around the second join: from ((Group_Reason_Table and then R.PID = F.PID) so it looks like this: SELECT R.PID, R.Total AS RTotal, L.Total AS LTotal, F.Total AS FTotal, J.Total AS JTotal FROM ((Group_Reason_Table AS R INNER JOIN Group_Reason_Table AS...
  6. Axworthy

    Conditional formatting on Yes/No fields

    If [SubTaskComplete] is a checkbox, you may want to change the expression to [SubTaskComplete]=True
  7. Axworthy

    Any Like for Like replacement for Calendar in Access 2003?

    I've been using a pop-up calendar I got from Access 97 Developer's Handbook and continue to use it in Access 365. It seems to work well for me.
  8. Axworthy

    Access 2010 datasheet subform issue

    This seems to only happen with users running Access 2010. If a form has a subform that is a datasheet, and that datasheet has an Order By set, it sometimes shows with no records. Alternatively, sometimes it shows the records in the datasheet (which is based on a query) but when I change...
  9. Axworthy

    Setting specific printer in design of reports - Is there a quicker way?

    Laurie, I develop in Access 2003 mostly. Clients use 2007, 2010 and the one that I most want to do this on uses 2013.
  10. Axworthy

    Setting specific printer in design of reports - Is there a quicker way?

    Here is my problem. The client want these 3 reports to default to this printer, these 12 reports to go to that printer and these 4 label reports to go to the label printer. Sooner or later they get some new printers and want them all defaulting to other printers. To do that, I have to go into...
  11. Axworthy

    2003 to 2007 MS Access

    I have run several systems with a 2003 back end and front ends in 2003, 2007 and 2010 with no problems.
  12. Axworthy

    Changing a server in an Access Data Project file

    To change the server, choose Connection under the File menu.
  13. Axworthy

    Corrupt VBA Modules

    I just leave them there. Maybe once every few months, I'll go in and delete them. I copy them into a subfolder and then run from there so every so often, I can just clear the folder.
  14. Axworthy

    Corrupt VBA Modules

    What I would do is have the users start the system using a vbs script that copies the front end to a new mdb (you could use their username as the name of the new front end) and then run that front end. Even if you do this in the same directory as the front end and back end, any corruption can be...
  15. Axworthy

    Can I open my 32bit app in 64bit office 2010

    What I've found is that 64-bit Access wants the keyword ptrSafe, which 32-bit does not recognize. Here's one way I have been able to maintain one system that works on both versions: #If VBA7 And WIN64 Then Private Declare PtrSafe Function .... #Else Private Declare Function...
  16. Axworthy

    DLookup and Date Comparison

    Whenever I need to use dates in a SQL statement or a DLookup, I use a simple function: Function SQLDate(datDate As Date) As String SQLDate = "#" & Format(datDate, "mm/dd/yyyy") & "#" End Function Then you can change your statement to this: CustDiscount = DLookup("[CustDisc]"...
  17. Axworthy

    MS Access 2007 - Can it open/use prior MS Access Versions?

    I regularly open Access 2000 - 2003 databases using both Access 2007 and 2010. I have read and written data to linked tables in an Access 97 mdb but have not opened the 97 mdb.
  18. Axworthy

    Report field width problem after conversion to Access 2010

    Is the date printing in the same format? Both 2003 and 2010 should be using the regional settings and should print the same but I would verify that they are the same.
  19. Axworthy

    Slow to start

    This is a shot in the dark but... Are your ODBC sources set up under System DSN or User DSN? For some reason, I changed some from System to User and a system loaded a lot faster. I've not investigated why. I assumed that they were the same for the current user.
  20. Axworthy

    Access2007. Simple way to have ribbon not visible

    The only way that I know how to hide them is to check off Allow Full Menus (under Access Options / Current Database) and then I choose my menu from Menu Bar (which appears when I load a 2000-2003 mdb in Access 2007. I end up with my custom menu and no ribbon.

Part and Inventory Search

Back
Top