Search results

  1. A

    Syntax Error in changing a field’s contents

    Thank you Gasman for your suggestion, BUT for some reason they do not work on the new Access 2003 form we tried to create. We will go back to using an OLD form that works. Your suggestions are appreciated. Marylyn
  2. A

    Syntax Error in changing a field’s contents

    Thanks Bob for your note about the cross posting, which will not happen again. I / we are under a pressure at the charity as all of their reports have to be completed by December 29th and little things like changing the field name from Yes to No are slowing us down. Regards, Marylyn
  3. A

    Syntax Error in changing a field’s contents

    = = = Thank you The_Doc_Man for your comments. We are volunteers at a charity helping to run their office. The code that we tried to transfer to a new form does NOT work, while it does work on their OLD forms. So I will use the old forms. Thank you, Marylyn
  4. A

    Syntax Error in changing a field’s contents

    Thank you Bob for your suggestion, we have tried to use your suggested code in our Access 2003 database without success. The error message that we get is // Run-time error’3144’: Syntax error in UPDATE statement. = = = = I am trying to; In the Field Investigate, change from Yes, => No or In the...
  5. A

    Syntax Error in changing a field’s contents

    We have been trying to correct the code in this Access 2003 form without success and continue to have a syntax error. Any assistance will be appreciated. Thank you Marylyn
  6. A

    Change field name from Yes to No

    Uncle Gizmo thank you for the Link. Nicole
  7. A

    Query To Change A Word

    Thank you GPGeorge for your suggestion which we entered as below, but we received an error when using your code. Dim strSQL As String strSQL = "update Investments01_tbl" & _ "set investigate = 'No' " & _ "where Investmentl_ID in (SELECT Investmentl_ID from (" & Replace$(Me.RecordSource, ";"...
  8. A

    Query To Change A Word

    Thank you Pat Hartman for your suggestions. I have attached the table “Investments01_tbl” and used your debugging suggestion but did not change the query and a new error occurs Compile Error “Ambiguous name detected: Clear_Investigate_Yes_Click” Nicole
  9. A

    Query To Change A Word

    Thank you Mike Krailo for your suggestion. I have attached a Valid Table but did not change the query and the same error continues. Run-time error ’3144’ Nicole
  10. A

    Query To Change A Word

    Thank you The_Doc_Man for your note, the code below is what we have tried. Private Sub Clear_Investigate_Yes_Click() ' Fuction Name ===> In the field Investigate, Change "Yes" => "No" ' Table Name ==> update Investments01_tbl ' Field Name ==> investigate ' Change Data in Field Investigate, from...
  11. A

    Query To Change A Word

    Could we please have assistance in changing the data in a field. The code that I have entered does not work. A = Change Data in Field Investigate, from Yes to No B = Change Data in Field Investigate, from Watch to No Thank You Fabiola
  12. A

    Report printing problem using a Query.

    Hello Arnelgp, thank you for your help, your database is 99% Complete. Could you please adjust the Portfolio combo box, as I cannot get it to co-operate. Thank you. // Crystal 2023_Dec_09; Arnelgp your assistance in fixing our database was CORRECT. "Our" problem was that there was no data in...
  13. A

    Ole Server Isn't Registered

    Thank you all for your suggestions, but I could not remove the picture, so I Deleted the report and than Recreated the report. Nicole
  14. A

    Ole Server Isn't Registered

    We had ADDED a picture to our Access 2003 report many years ago. We would like to remove the picture now, but keep receiving the message. "The Ole Server Isn't Registered" We reinstall the Office 2003 MsAccess program. Could I please receive a suggestion on how to fix this problem?
  15. A

    Report printing problem using a Query.

    Thank you Arnelgp for the Combo Box Form adjustments that you made. I made an error in their groupings = = = Group Printing = A Could you please assist us by letting the user choose; Investigate => All or the records marked with Yes Currency => All or the records marked with a currency such as...
  16. A

    Conversion Error Access 2003 to Access 2007

    Hello, Pat Hartman and thank you for your past suggestions. Could you please send us the code that you use to back up your databases when closing, as the user forgets to =>File => Backup Database before closing their program? At the present time we use a timed Batch file to backup our data...
  17. A

    Report printing problem using a Query.

    99%. Thank you arnelgp for getting our Combo Box Form to work. Would you please show us how to send the chosen data to the Report so that we can print this data using our report form? I notice that you are waiting for Jelly Beans, may we send you some? We do appreciate your assistances. Crystal
  18. A

    Report printing problem using a Query.

    Could I please, receive assistance in printing a report using 5 different combo box choices in our Access 2003 Database? Your suggestions will be appreciated. Thank you, Nicole
  19. A

    Access 2003 upgrade to Access 2007

    We would like to upgrade our software from Access 2003 to Access 2007. Do we have to do anything special or just upgrade our databases? Thank you. Nicole
  20. A

    Preview report before printing

    I am trying to preview a report before printing which uses the following code for printing; ‘= = = Old Code = = = Private Sub cmdPrint_Click() Dim repFilter As String If IsNull(Me.cmbFindAccountYearMOR) = True Then Exit Sub Else repFilter = "[AccountingYear] = '" & CStr(cmbFindAccountYearMOR) &...
Back
Top Bottom