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

  1. jonelf

    C# and serial port access

    I recently was looking for the same thing and found: http://216.239.35.100/search?q=cache:BIdsQk7tlXsC:www.csharpindex.com/code/SerialIO/Serial.asp+serialio+c%23&hl=sv I haven't tested it though.
  2. jonelf

    MTS memory leak?

    There are alot of known issues with NT4SP3. I recommend that you upgrade to VB6 (with latest Visual Studio SP) and to NT4SP6a (or later if available). Our problem actually turned out to be in the Oracle OLE DB provider. Oracle are working on a solution. /J
  3. jonelf

    Form question

    Either you do it completely on the client using Javascript or you can refresh the page and write the new value to the textbox on the server. Here is an &quot;example&quot; of how to do it on the client side: <select id=&quot;select1&quot; name=&quot;category&quot...
  4. jonelf

    Can you check the IIS setting in from an ASP page.

    I'm not sure but ADSI could be the way to go. http://www.microsoft.com/WINDOWS2000/en/professional/iis/htm/asp/aore7zn6.htm and maxconnections: http://www.microsoft.com/WINDOWS2000/en/professional/iis/htm/asp/apro66pf.htm http://msdn.microsoft.com/library/psdk/iisref/adse25gz.htm...
  5. jonelf

    Stuck

    Maybe you did forget a CCNumber = Request.Form(&quot;CCNumber&quot;) ? Also I recommend that you use response.write during debugging instead of writing to a file.
  6. jonelf

    Listbox Extracting the Displayed Text

    If you mean from a form post then the answer is: you don't. But if it was you who populated the listbox then you should be able to get the displayed text the same way from the id. If you just want to get the displayed text in a text box to be written in a text box on the fly then you have to do...
  7. jonelf

    How do I retain my field values in my Form

    I see two ways of solving this. Either you add the new allergy to the dropdown with a client side javascript or you can actually form post and read all the previously entered data and write them out to the page again but not writing them to the database just yet. The new allergy you will have...
  8. jonelf

    Need to check for valid email in VB script ASP

    RegExp is a wonderful tool to validate strings. Unfortunately it's not as easy to understand as the VBScript above. Dim regEx, retVal Set regEx = New RegExp regEx.Pattern =&quot;^[\w-\.]{1,}\@([\da-zA-Z-]{1,}\.){1,}[\da-zA-Z-]{2,3}$&quot; regEx.IgnoreCase = true retVal =...
  9. jonelf

    MTS memory leak?

    It turned out to be the Oracle OLE DB prodider that was leaking. See thread333-58616 problem isn't solved but now we at least know what the problem is...
  10. jonelf

    'Too many client tasks' error

    Check your zoneDB DSN in ODBC Data Sources. Check if you can connect to your database from some other tool like Visual Interdev or Access. Also you are using the Application variables in a very strange and very bad way. Why can't you just use common variables?
  11. jonelf

    Passing ASP variables to frames

    According to http://www.w3.org/TR/REC-html40/present/frames.html#adef-target you should be able to submit forms to another frame. http://www.htmlhelp.com/reference/html40/values.html#frametarget Maybe you shouldn't name your frame with a _ in the beginning? If the form is posted to a whole new...
  12. jonelf

    SQL Troubles...

    Always use Option Explicit
  13. jonelf

    Memory leak in Oracle OLE DB 8.1.7.1.0?

    If you know anything about a memory leak in the Oracle OLE DB provider then please check out: thread333-58616 for the &quot;cross-post&quot;.
  14. jonelf

    Mem leak Oracle OLE DB?

    If you are interrested in how this turns out then check: http://technet.oracle.com:89/ubb/Forum14/HTML/001320.html If you have the same problem and even you didn't solve it then please post! We need to put some pressure on Oracle.
  15. jonelf

    How to schedule running an ASP file?

    Convert it to VBA and run it in Windows Scripting Host, in the FAQ at http://www.windows-script.com/ there is an example how you schedule WSH-scripts.
  16. jonelf

    ASP Script Timeout Error

    You could page through the record set. There are different ways of doing this. See: http://www.4guysfromrolla.com/webtech/062899-1.shtml and http://www.learnasp.com/learn/dbtablepaged.asp If it actually have to show all the records on one page then you probably will have to raise the script...
  17. jonelf

    Stuck

    Check the length of the posted field and then add as many characters as you want... Example: wantedlength=6 length=len(postedfield) If length<wantedlength Then ' If IsNumeric(postedfield) Then addstr=string(wantedlength-length, &quot;0&quot;) postedfield=addstr & postedfiel ' End If End...
  18. jonelf

    Mem leak Oracle OLE DB?

    Later last night we tested to use the MS OLE DB provider for Oracle. The memory leak is gone! There is but one problem, we are in other parts of the application accessing a BLOB-field (CLOB) and the MS provider doesn't support that. We have reported the problem to Oracle, I'll keep you posted.
  19. jonelf

    Serach Facility

    Check out: http://www.learnasp.com/learn/SQLwhereform1.asp
  20. jonelf

    Mem leak Oracle OLE DB?

    If I access the following ASP-page thousands of times with MS Web Application Stress Tool the inetinfo.exe private bytes grows and grows until it stops... Memory leak? Why? NT4SP6a, Oracle OLE DB 8.1.7.1.0, MDAC 2.6. ASP-file: <%@ENABLESESSIONSTATE=FALSE%> <!--METADATA TYPE=&quot;TypeLib&quot...

Part and Inventory Search

Back
Top