Recent content by buratti

  1. B

    "ActiveX component can't create object" when calling QuickBooks SDK functions

    Re: "ActiveX component can't create object" when calling QuickBooks SDK functions Never mind.... I installed only Access 2007 32bit along side of Office 2013 64 bit. Then just opened up a copy of my database pre 64bit modifications and then everything was working just as it was previously...
  2. B

    "ActiveX component can't create object" when calling QuickBooks SDK functions

    Re: "ActiveX component can't create object" when calling QuickBooks SDK functions OK, so i jumped the gun a little on this post as I think I found out at least "why" I am getting errors. Viewing the following site, it seems like the QuickBooks SDK only supports 32 bit systems...
  3. B

    "ActiveX component can't create object" when calling QuickBooks SDK functions

    "ActiveX component can't create object" when calling QuickBooks SDK functions Hello, I have an older database created with Access 2010 (32bit) that I haven't uses in a while. This DB had lots of VBA code used to communicate with Quickbooks using their SDK which information can be found here...
  4. B

    Query for most common values

    Hey all Thanks for the suggestions. Sounds like they should work. I haven’t tried it yet though as I ran into other snags with access in general regarding not being able to import a simple spreadsheet into any database, then getting some random active x error. Been working on those which is...
  5. B

    Query for most common values

    I have a table holding banking transaction information (exported from quickbooks). This table holds a few thousand records. I am using Access to get some quick results so this database does not have a separate “payee” table with a relationship to the transaction but is only a single table with...
  6. B

    Snapshot from before and after an entry

    Ok so this question might be a little off topic for this heading but hopefully someone can at least point me in the right direction. My company software uses a MySQL database for its back end data. Its front end software is pretty primitive and basic. I am using MS Access to make up for the...
  7. B

    Display list of invoices from customers that has more than 1 invoice

    I don't know if this would be a query question, report question, or even an Excel question but here it is... I need to file an annual report that lists all customers (with basic info like name, invoice date, service address and total amount) who had more than 1 invoice in our system for the year...
  8. B

    two page report with different data layouts

    Thanks for a suggestion. I've been tinkering with this all weekend, but still cant seem to figure it out. I was originally having trouble getting the layout correct for just one page, yet alone figuring out the two page report. The way I figured out the layout of the one page is that I just...
  9. B

    two page report with different data layouts

    I have a 2 page paper form/report (however you want to categorize it) that I manually have to fill out and submit every month. I am trying to digitize this process using Access but am having difficulties. This paper form is actually pretty simple. The top third of both pages contain just...
  10. B

    Totals query grouped across columns

    I have a simple question but its hard to explain exactly what I mean. Ill give it a try... I have simple table data structured as follows; [Origin], , [Weight]. The Code field is a lookup field that will contain one of 8 choices; 10, 13, 13c, 23, 25, 27, 27a, & other. The other fields are pretty...
  11. B

    How can I modify this query design to make it updatable?

    Thanks... Inner joins yields the same results as described originally. In all honesty this query data is not intended for a form/report to be bound to. It is intended to be manipulated via VBA code (opened as a VBA recordset) and data updated within that code.
  12. B

    How can I modify this query design to make it updatable?

    I am trying to create a query consisting of 3 different tables. All tables have a relationship on the CustomerID field. My problem is that every variety of design I come up with, the query is still NOT updatable and I need it to be. Here's the strange thing... When I create this query in...
  13. B

    How to pause code when calling custom message box form?

    Thanks Bob Fitz and Mile-O... Those were 2 ideas I thought up after posting this. nanscombe - I never worked with tempvars before. Will try it out and see how it works for this situation.
  14. B

    How to pause code when calling custom message box form?

    Thanks didn't know that. Now any suggestions on how to have that form return a value to the calling procedure? for now I just plan on using something in the message box form like (forgive syntax, haven't actually written it yet): "Forms!"calling form"!ControlName.Value = "value...
  15. B

    How to pause code when calling custom message box form?

    I have created a custom message box form that suits my needs for this particular situation. It is called (opened) in the middle of a bunch of other VBA procedures. What I am having a problem with is how do I "pause" the rest of the code from running after the message box call? For example...
Back
Top Bottom