Search results

  1. DHookom

    Title and images missing in Buttons

    I would mess with the font size or button height.
  2. DHookom

    Bold font for numbers more than -1

    You can use code in the on format event of the report section to change the font size. Your code will also need to return the font to the regular size as needed.
  3. DHookom

    White Space in Reports

    So, you expect the top property of the bottom subreport to decrease if the other sub reports are not present? Are the 2 middle subreports set to a very minimal height? Can you share the design view screenshot of the main report?
  4. DHookom

    Solved Help adjusting chart's min/max Y-Axis value using code

    Did you first attempt to compile the code? I don’t think you had Option Explicit at the top of your report’s module.
  5. DHookom

    Solved Help adjusting chart's min/max Y-Axis value using code

    This is a common mistake.
  6. DHookom

    Solved Help adjusting chart's min/max Y-Axis value using code

    Also, code does not run in the report view. I tested using Print Preview which will run the event code. The vba sets the max to 50 which is less than the minimum value.
  7. DHookom

    Solved Help adjusting chart's min/max Y-Axis value using code

    I moved the code to the On Format event of the Detail section and it worked as expected.
  8. DHookom

    Solved Conditional format problem

    Probably not plausible in a continuous form however a single form view or report would be fairly simple with some VBA in an event.
  9. DHookom

    Solved Starting Appended Data at 1

    Thanks George, I had already successfully tested this #46. Since retirement four years ago I spend more time on my iPad than my laptop. This is more convenient but doesn’t allow me to futz with Access.
  10. DHookom

    Solved Starting Appended Data at 1

    With SQL Server, I believe you can insert identity by issuing the command: IDENTITY_INSERT to ON. SET IDENTITY_INSERT Products ON; Remember to set this off when finished.
  11. DHookom

    Solved Starting Appended Data at 1

    Thanks, I just tested this myself to confirm this could be done,
  12. DHookom

    Solved Starting Appended Data at 1

    I had not known you could insert an Autonumber between two other values. For instance if you have five records with values 1-5 and delete the 3 record, I wasn’t aware you could insert a record with 3 as the autonumber. I would appreciate if some could provide a small database with a demo of how...
  13. DHookom

    Solved Starting Appended Data at 1

    So is this tblpayrolltaxes.MyUCA)=391 what you need to be the same?
  14. DHookom

    Need Help With Code VBA For FIFO

    First, welcome to Access World Forums. Do you have comments in code that explain COGS with FIFO or do we need to research this prior to answering?
  15. DHookom

    modify links

    What exactly do you mean by “be able to modify the table links”?
  16. DHookom

    Getting a write conflict

    You most likely have user entered updates along with code updates. This will cause your error.
  17. DHookom

    Form writing to wrong table

    If the tblVisits is linked, you can create a query with this SQL to find out where the backend database is located: SELECT msysObjects.Name, msysObjects.Type, msysObjects.Database FROM msysObjects WHERE msysObjects.Type=6 OR msysObjects.Name ="tblVisits";
  18. DHookom

    Count(IIf( ...

    I continue to wish you would use your words rather than expect us to understand Excel functions.
  19. DHookom

    Count(IIf( ...

    Can you use words to describe your requirements so we don't have to guess and reverse engineer?
  20. DHookom

    Missing acReport part of coding

    What do you get if you open the debug/immediate window and enter: ? acReport
Back
Top Bottom