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 gkittelson 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: rixx
  • Order by date
  1. rixx

    SQL Sum Function Question

    Thanks, Bob. I didn't see a difference either but I don't know SQL well enough to know if a ++ operator did something special. Regards, rixx
  2. rixx

    SQL Sum Function Question

    I am trying to understand a SQL statement created by someone else. The Sql statement built is the following: INSERT INTO Table2 ( Division, Customer_Number, Customer_Name, Invoice_Number, Invoice_Date, Net_Invoice_Amount, Freight_amount, Invoice_Amount) SELECT Table1.[Division]...
  3. rixx

    Error with Access object

    I will try that. Thanks for the help. I'll keep you posted and let the forum know if it works. rixx
  4. rixx

    Error with Access object

    I am trying to run a couple of reports in Access from a VB6 app. I am able to run it fine on my machine, however when I install it on another machine, I get a Windows error saying that my executable caused a problem and the app shuts down (much like the IE error asking to send/don't send...
  5. rixx

    Need Help emailing using vba through Outlook

    I found an article on MSDN which addresses this issue. If anyone is interested, the link is: http://support.microsoft.com/default.aspx?scid=kb;EN-US;290499. Rick
  6. rixx

    Need Help emailing using vba through Outlook

    Hello, I am trying to automatically email reports converted to .pdf files to the entire sales force. I have been able to generate the .pdf files and can email them just fine. However, prior to sending each email, an Outlook message box appears stating something like "an attachment is...
  7. rixx

    Passing data to another form

    Jon, I get the Type Mismatch error even before it gets to that point. The debuggers points to this statement: Set dbs = CurrentDb For some reason, it won't allow me to set dbs as the currentdb. I added the ampersands: Set rs1 = dbs.OpenRecordset("SELECT * FROM MyTable WHERE...
  8. rixx

    Passing data to another form

    Jon, I think I now have a proper reference to the DAO objects because I'm no longer getting that error. However, I do get a Type Mismatch and the debugger points to the statement: Set dbs = CurrentDb In the immediate window, I try to print CurrentDb and get the Type Mismatch error. What...
  9. rixx

    Passing data to another form

    Jon et. al., I tried the following: Dim dbs As DAO.Database Dim rs1 As DAO.Recordset Set dbs = CurrentDb Set rs1 = dbs.OpenRecordSet("SELECT * From MyTable Where [FieldName] = '[Literal Value]'") But when I run this piece of code, I get a message saying "Compile Error...
  10. rixx

    Passing data to another form

    Thanks, Jon. I'll try it out. Rick
  11. rixx

    Passing data to another form

    I saw this topic in another thread, but I haven't been able to apply any of those tips. I am trying to create a drill down from a text box and created a double click event to open a form and populate it with data keyed off of the value of the text box. I tried to do the Do.Cmd formname and in...
  12. rixx

    Cannot find where the path is set

    FancyPrarie, I now see the tables are linked to the server and that's where it's pointing. Now, is there any way to change the links from the .mdb file on the production server and point it to the .mdb file on my dev station? Thanks again
  13. rixx

    Cannot find where the path is set

    Hello, I've been asked to make some enhancements to an application written by someone else. I've loaded all the files on my workstation but when I fire up the app, I get a message: "\\server1\gls\sys\gls_data.mdb is not a valid path. Make sure the path name is spelled correctly and...
  14. rixx

    Cannot summerize a formula

    Thanks for the assist. The running total evaluating on the formula worked perfectly. rixx
  15. rixx

    Cannot summerize a formula

    Hello All, I need to show duplicate records in the details section of a report but I do not want the amounts to double when I do a total on that field. I created a formula which does this: If Previous ({EmployeeDetail.LoanNumber}) = {EmployeeDetail.LoanNumber} then 0 else...

Part and Inventory Search

Back
Top