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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Fursten

  1. Fursten

    top 10 biggest values?

    Hi, Checkai, your solution works, despite I get all the records. I know there is a method of return the first n records based on the value of one column. It is not top most, but I don´t remember. Thank you
  2. Fursten

    top 10 biggest values?

    Hi, I have a select with a count and a group by. I need do filter the rows returned to those that have the top 10 biggeste values in the count column. Top 10 only gives the 10 first returned records, and that is not what i need. thank you
  3. Fursten

    Run javascript dinamically

    Hi, I´m making an HTTP Post (using msxml package: CreateObject("msxml2.ServerXMLHttp")) to an asp page. This asp page returns a string with client side javascript code. I would like to execute this code on the client. Is this possible? I dont´want to use response.write, because I dont´want to...
  4. Fursten

    FOR XML problem

    Hi, I made something like that, however, I think it must exist one simple way of doing that. if XML works with those characters, any class that works with XML shoul interpret that correctly... Thank you
  5. Fursten

    Unattended Install

    Hi, I figure it out. Setup.exe accepts the parameter "/s" for a silent install. One can pass a destination log file, to log any error during the install. setup.exe /s file_to_log.log However, the silent install could not be absolutly silent, because sometimes you can get a warning message...
  6. Fursten

    FOR XML problem

    Executing a FOR XML clause into SQL Server 2000, returns XML. However all the characters ">" and "<" are represented with codes like "&lt;" and "&gt;". If I then try to load this XML with Microsoft parser (xml.xmldocument.loadXML(), for instance), I will receive an error. IT seems the parser...
  7. Fursten

    Unattended Install

    Is there any easy way (or any utility) able to create an Unattended Install of a visual basic application? thank you
  8. Fursten

    case sensitive

    Hi, I´m using XMLDocument from dotnet classes. It seems xml is case sensitive to this class. Is it possible to change this behavior? If not, what is the best method to transform all the elements in uppercase? Thank you
  9. Fursten

    obteined an aspx url

    Hi, Can someone tell me if it is possible to obtain de current url from an active aspx. Note thar server variables is not capable of give what I want because the same page can be loaded from diferent directories (and so, differente urls) Thank you
  10. Fursten

    Using COM Component

    Hi, I nedd to use a COM component using .Net. The function I need to call returns an ADO recordset. I cannt change the COM. What is the best way to receive that recodset? Making a reference in my project to the ADO library and creating an ADO recordset object? Or is it possible to use an...
  11. Fursten

    Encoding problems

    Hi, Thank you for your help, but I´m not understanding how can I solve my problem. The soap message my client receives can´t have does "%lt;" and "&gt;", because I´m loading that message to xml using the loadxml method of the MSXML2.DOMDocument object. With does characters xml will not load. I...
  12. Fursten

    Encoding problems

    Hi, My web service is been calling with a soap message. The response is a sopar message where it is attached the return of my web service function. I´m returning something like this: <Test></Teste>. The problem is that, in the response soap message the characters "<" and ">" are being send like...
  13. Fursten

    Debuging a web service

    Hi, Im creating a web service. The web service is working. However I would like to debug it. However when I try to debug it I get an erro messages saying that: The common language runtime was unable to set the breakpoint. Any ideias? I alredy try to put the breackpoint in other lines of...
  14. Fursten

    InnerHtml

    I have a funtion that receives an html object tag(<object id ='test'>). I would like to use it as a standard html control. So I make a innerhtml of it to a <div> tag. However it seems I cannot use it. For instance the following code will give an error: alert(document.getElementById('test').id)...
  15. Fursten

    &lt;OBJECT&gt; tag?

    Hi, Can someone tell me if is possible to use a Activex Control on a page using "CreateObject function, instead of the tag <OBJECT id=Test>. Or do I have always to use this tag. Thank you

Part and Inventory Search

Back
Top