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!

Recent content by Nanda

  1. Nanda

    Named pipes vs TCP/IP

    Hello there! We have sql server installed using default protocol TCP/IP. Now, we want to change the protocol from TCP/IP to Named pipes. What I want to know is in what circumstances Named Pipes will give better performance as compare to TCP/IP? e.g. when network traffic is not high?? or number...
  2. Nanda

    printing

    Thanks guys. I appreciate your quick response.
  3. Nanda

    Printing

    Thanks Victor. I appreciate your response.
  4. Nanda

    Printing

    Hello, I have a page which displays number of searched results and option to view documents. I need to add print functionality to it. User should be able to print both results list or document to the printer at his choice. I never implemented printing from internet before. How do I do it. Or...
  5. Nanda

    printing

    Hello, I have a page which displays number of searched results and option to view documents. I need to add print functionality to it. User should be able to print both results list or document to the printer at his choice. I never implemented printing from internet before. How do I do it. Or...
  6. Nanda

    collection

    Thank you Leo. It is not a form or collection I have made. I have a dll. One of the class has a method that returns a collection. Now, i do not know what is all there in collection. But I need to access it to return some values and display on my page. Think, now, I am making bit sense.
  7. Nanda

    HELP on reloading a page with new data

    what if you run "display" on serverside instead of client-side. submit your page on this button click. and keep record what is the next record count to display and refresh your page from that count. If I have understood correctly, I guess you are trying to navigate between your...
  8. Nanda

    collection

    Hi there!! I have a collection. How can I traverse through this collection and display what is in there....kind of trying to do "for each", but do not know how to see its content, as do not know its properties. Is there any way to do it using, upperbound or item kind of similiar...
  9. Nanda

    vb - asp - DLL error

    1. check you are able to call dll function from vb code. 2. you have referenced dll in your project or look here... http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbenlr98/html/vamsgobjnotset.asp HTH
  10. Nanda

    switch case

    thanks everybody. I have multiple cases, so have to use Switch instead of IF...I was expecting to do "OR" in switch case :-(. anyway. thanks again.
  11. Nanda

    switch case

    How do you specify "OR" condition using switch case..means switch obj{ case "Project" || "Library": alert("do something"); default: alert("do nothing"); } thanks
  12. Nanda

    <IMG> QUESTION?

    try this.... <img src=&quot;mysrc.gif&quot; onClick=&quot;myfunction();&quot;>
  13. Nanda

    beginner question

    Thanks Mzongo. Making sense to me now. What if I do not have form. OR I have array of controls?
  14. Nanda

    beginner question

    Hi all! I have a very a basic question... How can I refer to a document element from my Javascript? ...everytime i need to do hit and trials to find how do I access/set an elements of document...like what is correct... document.forms.my_form.my_list.value...
  15. Nanda

    Problems with SQL, and ASP

    shouldn't voltsID be also in quotes!!!!! like ..where (fieldId, value) = ('&quot; & voltsID & &quot;','&quot; & volts &quot;'&quot;) which will return ..where (fieldid, value) = ('21', '155/220')

Part and Inventory Search

Back
Top