Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. c100cbk2

    Promes with SQL IN Clause

    I have the following code which if i replace the varaible @outputString with its literal value works fine but using the parameters fails is there something i am missing? WHERE (@OutputString IS NULL OR CPD.Agent_ID IN (@OutputString)) @OutputString is a varchar and looks like...
  2. c100cbk2

    Conditional data Selction

    I ned to be able to selcet data on the following if a user has sub_agents attached to the I need to pull back only records where there is a hit on the subagent table however if the User has no agents attached then I ned to be able to select all records that are relvent to the user; Normally I...
  3. c100cbk2

    Redirect to a URL but without oppeing a new IE borswer

    Thank you for the tip jmeckley, Here is my code which works perfectly in dev so, all being well, will be tested in live shortly. Dim _request As System.Net.WebRequest _request = WebRequest.Create("http://localhost:49332/Default.aspx") _request.Method = "POST"...
  4. c100cbk2

    Redirect to a URL but without oppeing a new IE borswer

    I have mislead you, I do not have a browser session open. I want to from a vb.net applicatino ppost to a url and not have a browser open up to try and display a page. I hope this makes a little more sense.
  5. c100cbk2

    Redirect to a URL but without oppeing a new IE borswer

    Hi I have a URL i need to post to but do not need to open another broswer window, the purpose it to allow those at the other end to record the detail in the parameters to their database and i do not need to know anything in return. I have the url already but can any body give me some advice...
  6. c100cbk2

    Transparent Breakpoint

    Thank you Sorwen I have tried your sugesstion and it works perfectly, Yes, it is a windows app by the way. Many thanks.
  7. c100cbk2

    Transparent Breakpoint

    I have a vb 2008 application which when I place a break point in the code looks fine but when i execute the app the breakpoint gets set to trasnparent with a tool tip informing me that this bnreak point will not be hit. I have done everything I can think of to remedy this but to no avail, it is...
  8. c100cbk2

    Config files and reading a value

    I have the following set up in the config file and trying to read it with the following vb.net code, i have referecnced the system.config.dll but each time the value comes back as nothing. The config file is at the same level as the code module. Any one got a clue? if so can they give it to me...
  9. c100cbk2

    XML Question

    I took your advice and added in the namespace as shown below and now get a retrun vale so many thanks. Dim ns As Xml.XmlNamespaceManager = New Xml.XmlNamespaceManager(responseDoc.NameTable) ns.AddNamespace("ns", "http://schemas.cdlis.co.uk/aggregator/api/v3-5")...
  10. c100cbk2

    XML Question

    i'll give it a shot
  11. c100cbk2

    XML Question

    Can anyone spot where I have gone wrong, vb.net code; Dim responseDoc As New Xml.XmlDocument responseDoc.LoadXml(response) Debug.Print(responseDoc.SelectSingleNode("aggregateQuoteResponse/brokerResponse/quote/premium").InnerText) Issue: the above line ALWAYS errors with the following...

Part and Inventory Search

Back
Top