Search results

  1. J

    Run-time Syntax Error

    Post your database with some sample data, zip it because you haven't post 10 post yet.
  2. J

    Help Combobox problem

    As theDBguy wrote, Can you give us a step-by-step instruction on how to duplicate your issue? Thanks.
  3. J

    Help Combobox problem

    I haven't read the whole thread but I think it is because the form's "Data Entry" format is set to "Yes". Else show by screensdump what problem you've, because you call some of the comboboxes by name that doesn't exist so ....
  4. J

    label caption

    Post your database, zip it because you haven't post 10 post yet.
  5. J

    How to remove Label stuck to Text box?

    What happen if you right click an that stage, do you get a "drop down menu", or just click the "Delete" button? If you still have problem, create a new database and a new form, place a text control on the form, can you delete that label? Still problem, post an example database!
  6. J

    count records in search from

    You could do it link in the attached database! I'll leave it for you to make the last count.
  7. J

    Creating a Task in Outlook with Access VBA

    I think it is because the value of "olTaskItem" is Null or 0, try to use a hard code value instead. According to the link below, the value "olTaskItem" is normal set to 3, so ... https://docs.microsoft.com/en-us/office/vba/api/outlook.olitemtype Set OlTask = OlApp.CreateItem(3)
  8. J

    Keep source formatting when inserting slides

    I do not know exactly the problem in what you're asking, could you show it with some printscreens?
  9. J

    Insert slides from existing presentation via access

    You only posted a part of the code, but I guess you're missing the reference to the active PowerPoint presentation, then if you haven't set ActivePresentation to the active PowerPoint presentation, it is unknown to MS-Access,
  10. J

    SQL Output - Characters found after end of SQL statement

    Try to avoid references to a form value in the SQL-string. Dim TheAOG_Time As Long ' (I don't know if it is the correct variable type, else change it) TheAOG_Time = [Forms]![FrmRptCriteriaAOG]![AOG_Time] dStart = "#" & Format([Forms]![FrmRptCriteriaAOG]![Beg_date_txt], "mm/dd/yyyy")...
  11. J

    Question User cannot start Access database

    I don't know how your network and net account is set up, but can't you give the problem user another computer temporarily, just to test if something is wrong with the computer?
  12. J

    Update Three Tables w/Form and two subforms

    Could you post your database, zip it because you haven't post 10 post yet?
  13. J

    Applying Filter to Report & All Bound Children on Report

    Could you show in a printscreen what you expect to see?
  14. J

    How to Copy graphs from forms to reports ??

    Maybe you can get some ideas from here: https://access-programmers.co.uk/forums/showthread.php?t=291319&highlight=Graph Else post your database with some sample data + description/print screen of the result.
  15. J

    Need Equal Length Columns - HELP !!!

    Do they all have a copy of the database or are they using the same database.
  16. J

    Report support!

    Oh what shall I say - (other then Shit)!
  17. J

    Report support!

    I haven't TeamViewer. How big is you picture in MB? I would suggest you to create a new button where you only open the report, and NO error handling. Only open the report. If that still gives problem make a copy of the report, delete the image container. Create a new image container with...
  18. J

    Report support!

    Is it a form or a report you print out? Is your database split in a Front-/Backend database? Where is the picture located? Could you post your database with some sample data, zip it because you haven't post 10 post yet!
  19. J

    Report support!

    May I ask, why do you've all that error handling? And one of the worst you've is "On Error Resume Next" so you'll even not recognize when an error occur!
  20. J

    Report support!

    It could be a time issue, could you show the whole code you use for printing out.
Back
Top Bottom