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

  • Users: fixthebug
  • Order by date
  1. fixthebug

    validate users with windows logon (advapi)

    Check for Case Sensitivity!!
  2. fixthebug

    ADO 2.7 and client side cursors

    So "RTFrost" are you sying that in oracle we can use ServerSide Cursor, and then as "NewOra" questioned, we can see the records being updated dynamically ( id cursor is opened dynamically or keyset)??
  3. fixthebug

    Create Recordset not bound to table or view?

    Yes you can do something like this! Dim objRS As ADODB.Recordset Set objRS = New ADODB.Recordset With objRS .CursorLocation = adUseClient .CursorType = adOpenStatic .ActiveConnection = Nothing .Fields.Append "EMPNO", adInteger, 6, adFldMayBeNull .Fields.Append...
  4. fixthebug

    incorporate XML to ASP?????

    or simply: Dim xml Set xml = Server.CreateObject("Microsoft.XMLDOM") xml.load("http://theOtherWebServer/yourdoc.xml")
  5. fixthebug

    Should I use SOAP?

    SOAP is a technology designed for communicating between one web-server to another server!So obviously you cannot expect to buid user interface application with SOAP..! Let me give you an example. If you need to display the stock prices in you own website..what are you going to do? The NY stock...
  6. fixthebug

    Scrollbar

    I don't think listbox comes with a HScroll bar..! If you have a string longer than the width of the box..then probably you need to increase the width ! Sorry !!
  7. fixthebug

    Invoking VB class module from ASP code

    tjb2, are you sure you have compile the VB Class with Binary compatibility checked ?? If not make sure you do that from Project->project properties ->select the component tab ->under this make sure version compatibility is binary!! fix the bug

Part and Inventory Search

Back
Top