Search results

  1. K

    combine fields

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

    combine fields

    this is what I tried in a command button strNewConcantenatedstring = "www.abc.com/" & Mid([Text99], InStrRev([Mlink], "\") - 1) Nothing happens...
  3. 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.
  4. 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"
  5. K

    combine fields

    I don't follow?
  6. 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"
  7. K

    Or Statement

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

    Or Statement

    Would about this part of the code?
  9. K

    Or Statement

    Perfect!
  10. K

    Or Statement

    How would the code look with that added?
  11. 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
  12. K

    Command Button

    Yes, that did it. Thanks!
  13. K

    Command Button

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

    Command Button

  15. K

    Command Button

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

    Command Button

    What is the vba code for: afterupdate, goto a command button and click it?
  17. K

    Combine Statements

    Thank You!
  18. K

    Combine Statements

    Can you explain what each part is doing?
  19. K

    Combine Statements

    This is perfect. Just what I was looking for. Thanks!
  20. K

    Combine Statements

    How would I combine these statements? Default for image1 is not visible. If Me.Mdid = "ABC123" Then Me.image1.Visible = True Else Me.image1.Visible = False If Me.Mdid = "DEF123" Then Me.image1.Visible = True Else Me.image1.Visible = False If Me.Mdid = "GHI123" Then Me.image1.Visible = True...
Back
Top Bottom