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 Chriss Miller 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: *

  • Users: Fursten
  • Content: Threads
  • Order by date
  1. 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
  2. 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...
  3. 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...
  4. Fursten

    Unattended Install

    Is there any easy way (or any utility) able to create an Unattended Install of a visual basic application? thank you
  5. 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
  6. 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
  7. 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...
  8. 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...
  9. 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...
  10. 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)...
  11. 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
  12. Fursten

    default printer and location

    Hi, Can someone tell me how can I get the default printer and location using javascript. Thank you
  13. Fursten

    HTTP-POST/Displaying results

    Hi, Another question invoking a web service. I´m sending an http-post message to a web service like this: <html> <form method=POST action='http://localhost/Test_web/MakeSomething.asmx/Test'> <input type="text" size="5" name='str_name'\"></td> = <input type=submit value="Test">...
  14. Fursten

    invoking a web service via http-get

    Hi, I´m trying to access a web service via http-get like this: http://localhost/ws_soma/service1.asmx/Test Test = is the name of the method (doesn´t have any parameters) So, I´m trying to execute my web method. However I´m getting this error: Request format is unrecognized Any ideias...
  15. Fursten

    Kind of object?

    Hi, My function receives an object. I dont know the type of object. Is there any javafunction that can tell me the type of an object? Thank you
  16. Fursten

    tables relationship diagrams

    Hi, Can someone tell me if a Diagram in SQL Server is just a picture of the relationship between tables or does it determinate the real relationsip between them (afecting sql commands). Thank you
  17. Fursten

    Ado.Net class

    Hi, Im creating an ADO.NET Class for my application to encapsulate only some functionality of aDO.NET. Does anyone knows where can I find some examples of an aDO.NET class? Thank you
  18. Fursten

    Windows sevices

    Hi, Can someone tellme where can I found examples of vb.net windows services? Thank you
  19. Fursten

    connecting 2 computers (win2003-WinXP)

    Hi, I have one machine with windows 2003 and another with Windows XP. I would like to connect both in order to share files between them. I would like to test 2 possibilities: 1) An easy way of connecting the 2 computers: connect them with a rj45 cable. Give them both an IP address. My...
  20. Fursten

    Changing line while adding new nodes

    Hi, I´m inserting new nodes in a xml tree. The problem is that all the new nodes inserted stay in the same line in the text document. If I saw the resulting xml file with IE, I see, of course, a well designed xml tree. However, If I open the file in a text editor, all new nodes come on the same...

Part and Inventory Search

Back
Top