Search results

  1. L

    Extra validation

    You seem to article it well. Isn't code for this nested if statements?
  2. L

    specify the ribbon to open on form load

    What you want to do is not a simple matter. Any "snoopy" user can undo what you ask. I think that database security is what you really want. Take a look at this.
  3. L

    Design Multiple Branch Inventory

    Just add a shot/branch indicator column to the appropriate tables, i.e. inventory, maybe customers.
  4. L

    specify the ribbon to open on form load

    This is another video which can help you.
  5. L

    specify the ribbon to open on form load

    This site explains how to do it.
  6. L

    Locking Navigation Pane in 2013

    This video explains how to do it.
  7. L

    how to open another database using VBA

    "Exclusive as Boolean" (True of False) means open the database exclusively (True), that is, no one else can simultaneously open or be connected to it. False meaning that multiple users can simultaneously open or be connected to it. True is the usual case for a multi-user database, especially...
  8. L

    how to open another database using VBA

    This link explains and shows how to do it.
  9. L

    Use a form to run multiple queries.

    Use a combo box by which the user select the desired query and on the combo bo AfterUpdate event, execute the appropriate query using a case statement.
  10. L

    Excluding records from search results that have fields with no data

    Remember "empty" is not the same as Null. Also test for "empty". I use the NZ function or <column> & "" <> "", usually the latter.
  11. L

    Importing Excel File with VBA without headers and skipping first 3 rows

    You have to import all the rows. A header is optional.
  12. L

    Copy sub form records

    Use DAO or ADO or an update query to copy the subform's data source records to the other table, making appropriate modifications.
  13. L

    Dim checkbox As String returns Type Mismatch?

    Try Prod1stSend = cstr(me.chkProd1stSend)
  14. L

    Message Box Pops up When Entering Field

    Post the complete code for the "OnEnter" event. What you post is inadequate for me.
  15. L

    strage report/subreport behavior...

    Google/Lookup how to reference Access report controls.
  16. L

    strage report/subreport behavior...

    Evidently that's not a report. Tell us what the parts of that expression mean. Is a report name in the expression? I think not.
  17. L

    Sum Error on my subform

    You footer needs to include the "report" reference to the controls be summed, etc., not merely the control.
  18. L

    strage report/subreport behavior...

    I'd test those values and components with the Debugger on the Onformat event. You may have stumbled upon an undisclosed feature of of the expression builder, this is, building something incorrectly. Try =Report!numEMP!POSummaryAvgRate. Note that the brackets are only necessary if spacea are in...
  19. L

    strage report/subreport behavior...

    I think that your control referencing is incorrect. A report's controls should always include the report name. "=[POSummaryAvgRate].[Report]![numEMP]" puzzles me. Shouldn't in be in the form "Report![Reportname]!ReportControlName]"?
  20. L

    Sum Error on my subform

    Please describe the error.
Back
Top Bottom