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 TouchToneTommy 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 martynj

  1. martynj

    Real Time Tables and Fields

    We are looking at interfacing with a Real-time server. I have also managed to get hold of the toolkit guide - which basically lists tables and fields. Can anyone point me in the direction of how we actually connect to the server..Does it support odbc etc etc.... Any examples (VB etc) would be...
  2. martynj

    Vbscript fails to update the screen

    I posted this some time ago and since have found out why via MSDN. When a script is running it has control of what they class as the output pump. It is possible, and i have situations where changes to the screen do not happen when instructed through script. You have to use settimeout to...
  3. martynj

    history.back

    I run asp/webclass apps under IIS. I have an app in which the user wishes to navigate back so we issue history.back using vbscript. Why does this cause the browser to re-evaluate the url in history....What I mean is history.back calls the asp page again on the server using the url and any...
  4. martynj

    Script fails to update the screen

    I have a problem whereby things seem to happen so quick that the screen does not refresh. In VB i thing we would issue a doevents so that the operating system can catch up and paint the screen. Anyway if you look at the code below you will see that after displaying the dialog box it then...
  5. martynj

    FTP intemittently hangs

    I have a windows 2000 Adv server web farm using NLB. I have 2 network cards. 1 for the heartbeat etc and one for the backend. I am trying to ftp to a remote unix box over a router. Tracert works fine and shows me that the route taken is via a default gateway then to the router and then it...
  6. martynj

    Vbscript fails to update the screen

    Why is it that Vbscript seems to not update the screen. If I have a div which i decide to make visible and then hide within a script it seems to not do anything unless I put in a msgbox in the script. This then seems to force the script to use the output stream. In Vb i suppose we would use...
  7. martynj

    XML template query - not working!!

    Have you configured SQL XML support for IIS ?? Templates will not work unless you have configured this !
  8. martynj

    How to paging the search results??

    How are you accessing the data..ADO or XML Templates ?? I have a link for either so let me know!!
  9. martynj

    Anyone Using a table as an HTML select/listbox BOX

    I have started to try and implement a multicolumn selectbox as a table. I am using an inline xml data island that is bound to the table data columns. Problem is I want to get it to act like a listbox..anyone done anything like this...want to be able to press a key and the table will jump to the...
  10. martynj

    using a function parameter as a reference to an object

    I have a vbscript function which accepts a parameter which is the name of an object. In javascript I can pass the parameter as a text string and then run the following code.. function first(dataSetName){ var dataRS = document.all[dataSetName].recordset; dataRS.moveFirst(); ; } I dont seem to...

Part and Inventory Search

Back
Top