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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ElSteveO

  1. ElSteveO

    Access Insert Statement Runtime error '3134'

    So it sounds like I didn't use the proper format but Access converted it for me. As long as it works I'm happy, but I will try and use the proper format in the future.
  2. ElSteveO

    Access Insert Statement Runtime error '3134'

    Here's the current code in my database: Private Sub cmdSaveQ_Click() Dim strSQL As String strSQL = " insert into tblquotes" & _ "(tickname, tickprice, wfsize, bordername, borderht, borderprice, qdate, style, cust, tcost, fcost, qcost, kcost, qmu, notes)" & _ "values" & _...
  3. ElSteveO

    Access Insert Statement Runtime error '3134'

    PH, the way I wrote it works. It appends the table with the proper data. I'm not sure I understand how your suggestion is different. I'm not saying my way is better, just that it works. Regardless, I appreciate the feedback. steve
  4. ElSteveO

    Access Insert Statement Runtime error '3134'

    Thanks Andy. PHV - I didn't follow it. Perhaps I don't understand it. I believe you are saying the single quotes go around text, but not all my fields are text fields. Any input is appreciated. Thanks for your help. Steve
  5. ElSteveO

    Access Insert Statement Runtime error '3134'

    Andy, I replaced my code with your code but didn't notice anything different. Then I purposely put the comma back in the statement to induce the same error. I thought the debug.print statement would show my error in the immediate window, but, again, I didn't notice a difference. It printed my...
  6. ElSteveO

    Access Insert Statement Runtime error '3134'

    Andy, I appreciate your help! I will definitely try your method. All the best, Steve
  7. ElSteveO

    Access Insert Statement Runtime error '3134'

    I'm going to provide my own answer. I removed the comma after the first closing parenthesis and it worked. DoCmd.RunSQL " insert into tblquotes" & _ "(tickname, tickprice, wfsize, bordername, borderht, borderprice, qdate, style, cust, tcost, fcost, qcost, kcost, qmu)[highlight...
  8. ElSteveO

    Access Insert Statement Runtime error '3134'

    Hello, I have searched the forums and can't find an answer. I get a runtime error '3134' with the following insert statement: Private Sub cmdSaveQ_Click() DoCmd.RunSQL " insert into tblquotes" & _ "(tickname, tickprice, wfsize, bordername, borderht, borderprice, qdate, style...
  9. ElSteveO

    Photos in Access

    That "pallete" code was in the Northwind DB. I just put a comment sign in front of that code and now I don't get that error.
  10. ElSteveO

    Photos in Access

    Whoops, I spoke to soon. I have a line of code that says, "If Not IsNull(Me!Photo) Then Me.PaintPalette = Me!Photo.ObjectPalette" It works great for the photos that are in the Northwind DB, but when I add my photo I get a run-time error 2196 saying, "Microsoft Access can't retrieve the value...
  11. ElSteveO

    Photos in Access

    MaxDD, I figured out what you said and it worked! Thanks again to everyone.
  12. ElSteveO

    Photos in Access

    MaxDD, when I go to Hkey_classes_root\.bmp I see 5 different names. They are: Default Reg_sz oisbmpfile content type reg_sz image/bmp perceived type reg_sz image and two for Roxio How do I actually change the key, and which of these do I change? Thanks very much for the advice.
  13. ElSteveO

    Photos in Access

    thanks dhookum! that makes sense. I'll try to figure out how to do so.
  14. ElSteveO

    Using Access 2000 w/Office 2007 installed

    I'm using 2000 and am so happy. Thanks for the help.

Part and Inventory Search

Back
Top