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 IamaSherpa 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: idbands
  • Order by date
  1. idbands

    How do I make this form using records from a different table?

    I have 2 tables - orders and orderitems. I need to make two refund tables that are exactly like orders and orderitems. I did this, no problem. Now I have a refund form that users will use when doing an order refund that should write new records to the refund_orders and refund_orderitems...
  2. idbands

    How do I set this option without SQL Server? (Arithabort)

    I finally made a little more progress, however, I'm still stuck in the same place. I copied and pasted the (structure, not data) and tried my "insert" on that table and it works. But when I try the same statement on the original table, I get the same Arithabort issue. Any ideas?
  3. idbands

    How do I set this option without SQL Server? (Arithabort)

    Here's the basic insert statement I have (see below). I talked to a developer of the 3rd party application and he said "On to the ARITHABORT problem - "SET ARITHABORT ON" needs to be executed on the connection being used. I'm not familiar enough with Access, can that be done in your...
  4. idbands

    How do I set this option without SQL Server? (Arithabort)

    We have a 3rd party application that we use that uses SQL Server. I don't know too much about SQL Server; I think we only have the client version installed? I can access the SQL Server tables through Microsoft Access (via the SQL Server ODBC driver) and run lots of queries and updates which I...
  5. idbands

    How do I set this option without SQL Server? (Arithabort)

    I wasn't sure which forum to try. I'll try that. Thanks!
  6. idbands

    How do I set this option without SQL Server? (Arithabort)

    We have a 3rd party application that we use that uses SQL Server. I don't know too much about SQL Server; I think we only have the client version installed? I can access the SQL Server tables through Microsoft Access (via the SQL Server ODBC driver) and run lots of queries and updates which I...
  7. idbands

    Need customer invoice. Are there report templates?

    I actually love Access for many reasons but I HATE HATE HATE the reporting module. I've gotten by so far without needing to write a report in years, but now I need just a basic customer invoice that looks PROFESSIONAL which is nothing I could accomplish in Access. Are there report templates...
  8. idbands

    Help with making this query updateable with 3 joins.

    I should also mention that the Code field is a lovely Memo field so when I do an inner join on the Code field, I always get an error about how I can't join to a memo field.
  9. idbands

    Help with making this query updateable with 3 joins.

    I'm really struggling with this. I have this query: SELECT OrderNumber, Code, dbo_OrderItems.Status FROM [Picking], dbo_OrderItems, dbo_Orders WHERE ((clng([Picking].CONumber)=dbo_Orders.OrderNumber) And (([Picking].ItemNo)=dbo_OrderItems.Code) And (([Picking].isShort)=-1) And...
  10. idbands

    Can I store query rslts to mem so query isn't run over & over again?

    Nevermind, I figured it out. :) I just wrote all of the data to a temporary table and then deleted the table at the end of the query. Duh.
  11. idbands

    Can I store query rslts to mem so query isn't run over & over again?

    I hardly ever write VBA code but through a lot of research I was able to put this together (below). The code is supposed to take Order Item records from an Access query, group them by Order Number, and put the information into a fixed-length file (there is one file for each order). It was...
  12. idbands

    Sub or Function not defined? How to fix?

    Thanks for the posts, guys. We found this application here http://www.4tops.com/ that will do a e-mail merge with Access data and seems pretty sophisticated and easy to use. In the help there were instructions on how to add the code. We're having trouble getting support from the company...
  13. idbands

    Sub or Function not defined? How to fix?

    We have a program that sends e-mails through Outlook and Outlook previously popped up with an error warning that an outside program was trying to send a message. To get around this error, we were told to enter this VBA code: Public Function ammolSendMail(strTo As String, _...
  14. idbands

    How to update records when there is a multiple join?

    Thanks, Duane. That simple question totally made me realize what I was doing wrong. I should have linked everything by OrderItemID instead of OrderID. Thank you!
  15. idbands

    How to update records when there is a multiple join?

    I have two tables a, b. Table A has a bunch of data. Table B has nothing in it (the two fields in the table are Order Number and Notes). My query pulls a bunch of data from A and then you can type in a comment in the Notes field that then gets written to table B. My query looks like this...

Part and Inventory Search

Back
Top