Recent content by cayham86

  1. C

    How do I make a contains query

    Ill have another try later
  2. C

    How do I make a contains query

    Like didn't bring back any results
  3. C

    How do I make a contains query

    Isn't that being done directly from SQL not access
  4. C

    How do I make a contains query

    Tried that and it didn't work as it needs to contain part of a bit of text which isn't at the start of the description but in the middle of the description
  5. C

    How do I make a contains query

    Hey guys, I am trying to make a query which contains certain information so wondering how do I write a contains query?
  6. C

    How to open a URL via Firefox in access form

    Thanks for the help, you guys are very knowledgeable within access
  7. C

    How to open a URL via Firefox in access form

    Option Explicit Private Sub Command56_Click() Dim strUrl As String strUrl = Me.Value_Source strUrl = Replace(strUrl, "#", "") Application.FollowHyperlink strUrl End Sub This code has finally got it opening in chrome, if I set my default browser to Firefox will it automatically open in Firefox
  8. C

    How to open a URL via Firefox in access form

    Highlighted bits have shown up as a problem
  9. C

    How to open a URL via Firefox in access form

    Still getting a hash at the start and end of website URLS so they wont open when clicked how do I solve that.
  10. C

    How to open a URL via Firefox in access form

    Its complaining about the yellow highlighted part of the code.
  11. C

    How to open a URL via Firefox in access form

    I did do this and there is a valid URL
  12. C

    How to open a URL via Firefox in access form

    Can we DM as a lot easier
  13. C

    How to open a URL via Firefox in access form

    Problem in yellow I think
  14. C

    How to open a URL via Firefox in access form

    Value in value source is any website URL and I will try me.Value_Source and let u know how I get on. Also what does debug.print Me.Value_Source do as just tried it but couldn't tell if anything happened?
  15. C

    How to open a URL via Firefox in access form

    I have a column in a table with the name value_source where all the URLs are kept so the control is called value_source in the form
Back
Top Bottom