Search results

  1. J

    Need Equal Length Columns - HELP !!!

    Could you post the database included some data and the report (+ name of the report), because I don't really want to input/enter some fake data + make a report when you already have it. Remember to "Compact & Repair" it and then zip it then you haven't post 10 post yet!
  2. J

    Error 2105 and 2106

    Sorry - personally I find you code a little "to messy", where it is jumping here and there and back again, trigger some of the build in events like the Current event. You need to find out where you code trigger the Edit command/statement, then it can't be right that the form start up in Edit...
  3. J

    Need Equal Length Columns - HELP !!!

    The only way I can see you maybe will be able to get it, is to manipulate the page length by code.
  4. J

    Syntax Error 3075 - works on one form but not the other!

    Yes you've created one, you call it Text24, but you're NOT using it, so it really doesn't help. :) Below the code shows how it should look like! DoCmd.OpenForm "frmUpdate", , , "visitID = " & Me.Text24
  5. J

    Error 2105 and 2106

    The problem is that the form is in Edit Mode when you press the button. You can test the above statement by adding the below code: Private Sub cmdNext_Click() 'On Error GoTo Err_Handler: If Me.Dirty Then Me.Undo End If DoCmd.GoToRecord , , acNext ..
  6. J

    Syntax Error 3075 - works on one form but not the other!

    No problem - what I mean is the code you had in frmExam, should work but it didn't, therefore I wrote a "little" corrupt. Too much corrupt that your code worked, but not so much corrupt that the form would not open or other errors appeared. The proper way should have been that you included a...
  7. J

    Syntax Error 3075 - works on one form but not the other!

    You're welcome. The form frmExam seems to be a "little" corrupt, so ... :)
  8. J

    iIF using Multiple conditions

    Are the 11 tables coming from some data in Excel? Have you looked at the Union query? Show some example data in a database or Excel sheet.
  9. J

    Question Error on sum function

    Here is the database again.
  10. J

    iIF using Multiple conditions

    What is the idea of inserting the data from 11 tables into 1 table?? A way to do that is using a union query!
  11. J

    Syntax Error 3075 - works on one form but not the other!

    Put Me! in the front of the code then it works. DoCmd.OpenForm "frmUpdate", , , "visitID = " & Me!visitID
  12. J

    Set Record Source using a string in VBA

    That was one thing but you also need to change: From: Me!fsubFieldDataEditor.Form.SourceObject = strForm To: Me.fsubFieldDataEditor.SourceObject = strForm
  13. J

    Set Record Source using a string in VBA

    Here is the database back. I've added a new "form" which update automatic when the combobox change, the other is corrected to what you wrote you would like to have.
  14. J

    Set Record Source using a string in VBA

    Could you post your database, with some sample data, zip it + the name of the form.
  15. J

    How to set decimal places

    Can't you use the round function? https://www.techonthenet.com/access/functions/numeric/round.php
  16. J

    Set Record Source using a string in VBA

    Do you want to change the data in a form or do you want to change the form showing in the fsubFieldDataEditor container? If data then it is RecordSource instead of SourceObject!
  17. J

    Solved Automatically update a chart based on a combobox

    You need to use a crosstab query.
  18. J

    Invalid Syntax - Nz Formula

    Because there are a lot of wrong code/statements: First take away all the NZ so it isn't disturb you, because it seems that you use the function without thinking, then you can built it up piece by piece.
  19. J

    Group Header & Footer Background Color not Printing

    Is it possible for you to post the database with some sample data, (zip it) and the name of the report?
  20. J

    Mailing Address

    Post your database with some sample data + name of the form!
Back
Top Bottom