Search results

  1. K

    VBA Print Error

    The report is already open to specific record, not sure that works here.
  2. K

    VBA Print Error

    And it's happening on a few other workstations too. Windows update? Virus protection update?
  3. K

    VBA Print Error

    Yes, I do have a default printer.
  4. K

    VBA Print Error

    I have a print button on a report. Just recently, I'm getting an error when I click the button. When I click it a second time, it prints just fine. Anyone experience anything like this? This just starting happening in the last week or so...
  5. K

    combine fields

    I thought I could find a simple solution...
  6. K

    combine fields

    this is what I tried in a command button strNewConcantenatedstring = "www.abc.com/" & Mid([Text99], InStrRev([Mlink], "\") - 1) Nothing happens...
  7. K

    combine fields

    Yes, that's what I'm trying do. The field that has the "\files\pdf\abc.pdf" is Mlink and the unbound field is Text95. So, what do I replace for YourFieldNameGoesHere. What goes where? I'm putting the code in a command button.
  8. K

    combine fields

    I just want to use the value after the last "\" which is the abc.pdf value Then I could use something like this: ="www.abc.com/" & "abc.pdf"
  9. K

    combine fields

    I don't follow?
  10. K

    combine fields

    I have a field on a form that has a value of "\files\pdf\abc.pdf How can I create an unbound field that takes just the "abc.pdf" value and combines it. I want the new field value to look like this: www.abc.com/abc.pdf ="www.abc.com/" & "abc.pdf"
  11. K

    Or Statement

    It just didn't seem correct but yes, it's just what I'm looking for. Thank You!
  12. K

    Or Statement

    Would about this part of the code?
  13. K

    Or Statement

    Perfect!
  14. K

    Or Statement

    How would the code look with that added?
  15. K

    Or Statement

    I'm using the following. Report ID: IIf([Msamplenumber1] Like "*H*" Or [Msamplenumber2] Like "*H*","In Progress",[Mreportid]) How can I add if Mreportid is null, then "Empty" to the above statement? Thanks
  16. K

    Command Button

    Yes, that did it. Thanks!
  17. K

    Command Button

    Here is what's in the command button.
  18. K

    Command Button

  19. K

    Command Button

    When I click the button manually, it works. It opens another form. When I use Command5_Click I get an error.
  20. K

    Command Button

    What is the vba code for: afterupdate, goto a command button and click it?
Back
Top Bottom