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 Mike Lewis 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: H2
  • Order by date
  1. H2

    cannot open pdf on the browser!!!

    Hi all, I cannot open pdf file on my browser (there is a little 'x' on the left top of the browser), but it works perfectly if I use acrobat reader to open it. But because of some reasons, I must open it on my browser. Any ideas? Thanks H2
  2. H2

    Display "Please wait..." message during server-side processing

    I think you can change the code like this (note the colored code in the following): 1. remove the onload function, simply use the style to change the color of the "process" message to white, so it seems invisible, and change to red when the form is submitted. 2. add the validate code...
  3. H2

    Display "Please wait..." message during server-side processing

    try this: <script language=javascript> function hiddentext() { document.all['process'].style.visibility =&quot;hidden&quot;; } function submit_form() { document.all['process'].style.visibility =&quot;visible&quot;; document.form1.action=&quot;targetpage.html&quot...
  4. H2

    'undefined' is undefined?

    I have some javascript which works on IE5.5 or later but not on IE5. The error is 'undefined' is undefined. I believe that IE5 does not recognise this keyword. Is there a way solve it? Thanks ^^
  5. H2

    how to control submitting which submit button when pressing &quot;enter&quot;

    Can I control which submit button will be activated when I pressing the 'enter'? thanks
  6. H2

    Err.Number = 0 (?)

    I have a table that colA is set to be unique. When I add a duplicate record, this record did not insert, but the err.number is still equal to 0. any method I can detect this error?? thanks ^^
  7. H2

    is it possible to control button in prompt window

    hi starway, yes, you are right, thanks for your opinion ^^
  8. H2

    is it possible to control button in prompt window

    Hi all, I have a page with a prompt window, as I dont want to user to click the 'cancel' button to skip inputting data. Is it possible to have the 'ok' button ONLY? Also, can I control the width of the input box? Thanks H2
  9. H2

    CStr?

    for example, you can use it when you want to merge two integer insteads of add two integer. a = 10 b = 20 c = a + b ' the result will be '30' d = cstr(a) + cstr(b) ' the result will be '1020' hope this helpful ^^ H2
  10. H2

    Free Websites with ASP Support

    http://www.brinkster.com/ Cost: FREE! ?.NET Framework Beta 2, Mobile Internet Toolkit Beta 2 ?30 MB of Space, No Ads on Your Site ?ASP 3.0 Support, MS Access Databases ?Web Based File Mgr, ADO & FileSystemObject
  11. H2

    Provider error '80040154'

    hi, there's an error in my code: Provider error '80040154' Class not registered /testdb.asp, line 15 testdb.asp: <% dim objRec, objCon set objCon = server.CreateObject(&quot;ADODB.Connection&quot;) Set objRec = Server.CreateObject (&quot;ADODB.Recordset&quot;) objCon.Open...
  12. H2

    setting maxlength of textarea?

    you can try it :) <script language=&quot;JavaScript&quot;><!-- function validate(what) { if (what.length > 10) { alert('Must be less than 10 characters'); return false; } return true; } //--></script> <form name=&quot;formName&quot; onSubmit=&quot;return...
  13. H2

    No matter what I do, objRec.AbsolutePage is always -1

    Hi, it works la, i added the following code: objRec.CursorLocation=3 'clientside objRec.CursorType=3 'staticrecordset Thanks H2
  14. H2

    No matter what I do, objRec.AbsolutePage is always -1

    Hi, here is part of my code: Dim IntPageSize, PageIndex, TotalPages, TotalRecords, intPrev, intNext IntPageSize = 3 PageIndex = Request(&quot;PageIndex&quot;) if PageIndex = &quot;&quot; then PageIndex = 1 objRec.PageSize = intPageSize ' Set the number of records per...
  15. H2

    how to export data to excel

    Can you tell me more details for the second method (Get the data into recordset structures and pass that data into an Excel template file)? thanks :)
  16. H2

    ASP to Access DB using &quot;Like&quot; problem

    how abt single quote ? select * from user where firstname like 'Bob%'
  17. H2

    ASP to Access DB using &quot;Like&quot; problem

    try this select * from user where firstname like &quot;Bob%&quot;
  18. H2

    how to export data to excel

    Hi, please tell me how to export data from database to excel file by ASP? thanks H2
  19. H2

    javascript:window.Close() to work without having to click on it...

    place the code when you wanna close the window. <script language=javascript> <!-- window.close(); //--> </script> is that what you want?
  20. H2

    how can i convert string to integer

    thanks:) it's very helpful for me.

Part and Inventory Search

Back
Top