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...
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...
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...
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...
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...
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...
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, _...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.