Recent content by SomeITGuy

  1. S

    Get string from within string between chars.

    It grabs the following and I need to extract Nottingham and Bridge. The char length after bridge would always be the same so the last 93 characters can easily be whipped off. However the bits before it change in length depending on geographic location. I was thinking something along the lines of...
  2. S

    Get string from within string between chars.

    There are always the same amount of <text> sections on either side as it is a CSS page.
  3. S

    Get string from within string between chars.

    Can't use mid as there are varying char amounts on each side.
  4. S

    Get string from within string between chars.

    How do I extract a string from a larger string of varying values but after specific characters. To be exact <Things><other things of varying size>The text I need<stuff><more stuff of varying length> Thanks
  5. S

    Return web service

    Anything that helps me to get closer to a solution?
  6. S

    Return web service

    The original code was quite simple Private Sub Command329_Click() Dim XMLHttp As New MSXML2.XMLHttp XMLHttp.Open "POST", "URL Here", False XMLHttp.send "thing to send" MsgBox XMLHttp.responseText End Sub What do you mean by delaying code? Never needed any before now as usually want everything...
  7. S

    Return web service

    In its simplest form I am trying to return the name of the local authority of an area when a postcode is entered into a box. I have a button and at present would only really need it outputting to a msgbox. The API for the website is below. I cant post links as I am new so have put spaces...
Back
Top Bottom