Search results for query: *

  1. K

    Question Listbox Values

    Ian, John, Awesome help with this. Thanks so much, greatly appreciated. :-)
  2. K

    Question Listbox Values

    Thanks John, Thanks for your prompt reply John, I suppose I should have been more clear :-( In the code I make a REST Call and consume the response and populate the list box as follows: For Each xnode In xnodelist Select Case xnode.Attributes("recordType").Value...
  3. K

    Question Listbox Values

    Hi, Is it possible to display only part of the result in a list box? i.e. I have values as follows: Item 1 transaction Item 2 transaction Item 3 transaction Item 4 transaction that are populated into the list box. For subsequent processing I require the full value of these records. However...
  4. K

    Question Display http request

    Thanks John. I have installed and using fiddler now.
  5. K

    Question Display http request

    Hi All, I have some code as follows that sends a http Get request and retrieves the information using the MSXML2.ServerXML2HTTP object.. uri = Class_uri & queryparam http.Open("GET", uri, False) http.setRequestHeader("remote_user"...
  6. K

    Question XML Parsing

    Guys, Both methods worked. Thanks
  7. K

    Question How to retain focus for listbox after setting index

    Using TabIndex really messed my forms up :-(. Its changed to 1 0.0 0.1 etc. However using the method you have stated John. this has done what i wanted. Thanks
  8. K

    Question How to retain focus for listbox after setting index

    There is only one form in the whole project and it has a list box on it with an OK button. I am looking at changing the tab index to see if this helps. Thanks
  9. K

    Question How to retain focus for listbox after setting index

    Hi Guys, I have some code as follows for a listbox that is in a windows form with an OK button: What I am finding is that the item gets selected as I require, but the OK button on the form gets focus, ideally I would like the list box to retain focus even though I have selected an index for...
  10. K

    Question XML Parsing

    Thanks guys for you quick replies. I will try out suggestions...
  11. K

    Question XML Parsing

    Hi All, I am hoping someone can shed some light on the following please: 1) I have an xml file as follows: <typeNames xmlns="http://www.acme.com"> <typeName recordType="case" href="types/SAMPLECASE">SAMPLECASE</typeName> <typeName recordType="source"...
Back
Top