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 SkipVought 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: *

  1. LaDeana1

    Drop Default Syntax Error

    Thanks cjashwell! Worked perfectly! A star for you. I'm used to using SQL and forget that I can easily go through the jet.
  2. LaDeana1

    Add records with loop and display custom error message for err:3022

    Try adding .edit just before you loop and after the with statement.
  3. LaDeana1

    Drop Default Syntax Error

    I'm trying to drop the Default on a field in my MSACCESS 2000 table Here is my Code: dbs.execute "ALTER TABLE tblJobs ALTER COLUMN JOBNoOnFile_R DROP DEFAULT" I'm getting syntax error and don't see why. Does anyone know what I'm missing Thanks for your help, LaDeana
  4. LaDeana1

    set a dao recordset object to a query with parameters

    I have a query which uses a formfields as it's parameter. I can use code to open this query docmd.openquery however, when I try to set it as a dao recordset, I get "Too Few Parameters expected Expected 2." I am using txtfromdate and txttodate from a form and the query runs great even in code...
  5. LaDeana1

    Link foxpro table using code

    I have some old foxpro 2.6 tables which need to be linked to my access db in code. I have an ado connection string which works for me to access the tables: "Provider=vfpoledb;" & "Data Source=W:\testf;" & _ "Mode=ReadWrite|Share Deny None; Collating Sequence=Machine; Password=''" Can I use...
  6. LaDeana1

    Sql Server Integration

    I have developed a database with a sql server 2000 backend and now need my mac users to work with the data. Does anyone know if there are OLEDB drivers available for sql server which are compatible with Excel x? I would need to run stored procedures from Excel. Has anyone successfully used...
  7. LaDeana1

    Textbox calc.

    If you use the expression builder, the "«Expr»" should be replaced with your expression. Try: =IF(ISTEXT([Text56])=TRUE;"";IF( [Selling Price Wholesale] <>"";IF([Selling Price Wholesale]< [Text51];[Text51] * [Text56];[Selling Price Wholesale] );[Text51]*[Text56])) Also, you may want to name...
  8. LaDeana1

    Automate Foxpro 2.6 Free Table Links

    Thanks for your suggestion. I posted it on their forum but they suggested to add pks to the table, which I'm unable to do. Thanks
  9. LaDeana1

    Linking free tables

    The keys are maintained in the cdx files. They are running all our production data so changing any data structure in these tables may result in horrible problems which I wouldn't be able to fix. Thanks so much for reading my post. If you have any other suggestions please send them along! I...
  10. LaDeana1

    Linking free tables

    I am trying to link foxpro 2.6 free tables and their indexes in msaccess through code. (.dbf file and it's associated .cdx file) I'm able to link them using dbase IV however, the indexes will not update when deleting or adding records. I have tried to create an inf file which points to it's...
  11. LaDeana1

    Automate Foxpro 2.6 Free Table Links

    I am trying to link foxpro 2.6 free tables and their indexes through code. (.dbf file and it's associated .cdx file) I'm able to link them using dbase IV however, the indexes will not update when deleting or adding records. I have tried to create an inf file which points to it's cdx index...
  12. LaDeana1

    use &quot;Find&quot; methods on Replication ID fields

    I know this is an older post but I found if someone else stumbles on this as I did try to change the SET statement to: Set rsMaster = CurrentDb.OpenRecordset("Select * from T-Promos") It worked for me.
  13. LaDeana1

    Suppressing Word 2000 header and footer

    Try inserting your page break as a &quot;next page section break&quot; instead. This will let you have different headers and footers.

Part and Inventory Search

Back
Top