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: achai
  • Order by date
  1. achai

    How to put checkbox in the front of each cftree item

    How to put checkbox in the front of each cftree item and print this java applet?
  2. achai

    How to embed a video and audio file into a VB form?

    How to embed a video and audio file into a VB form?
  3. achai

    How to embed a video and audio file into a VB form?

    audio should have record the voice function.
  4. achai

    Drift layer function error in Netscape.

    Actually I can't use DhtmlMenu, cause I don't use text link, I'll use images. Can you help? thanks
  5. achai

    Drift layer function error in Netscape.

    I have a drift layer javascript function works wrong in Netscape, not fine in IE. when move scroll bar, layer drifts(including images and text), but actually links are still the original place. when you move mouse over, then you can find this problem. Can you help? thanks ------------------...
  6. achai

    javascript reset window

    still has error, but both IE and netscape still show menubar....scrollbars. I was wondering how do you know which line is wrong? thanks
  7. achai

    javascript reset window

    I tried both == and =, still has error.
  8. achai

    javascript reset window

    It shows error, how to reset window and make them those menubars all invisible. don't want to use open new window function. thanks ------ <SCRIPT language=&quot;JavaScript&quot;> function resizewindow() { window.resizeTo(490, 500); window.setResizable(false)...
  9. achai

    open popup window and pass hidden value through javascript

    maybe you passed the long value using IE, in netscape, it shows URL is too long.
  10. achai

    open popup window and pass hidden value through javascript

    how to mix open popup window javascript and pass hidden value through javascript. I have to use hidden value instead of using link ( like newwindow.cfm?hidden=#value#), cause this value is very long. URL can't be too long. thanks
  11. achai

    radio checked, then layer change

    i delete <button> now, and add <form> change javascript to --- function ButtonPress(buttonnumber) { if (document.layer){ document.layers.cust.document.write('data'+buttonnumber); } if (document.all){ document.innerhtml=buttonnumber; } } </SCRIPT> --------- now it only works in IE, not in...
  12. achai

    radio checked, then layer change

    something wrong with this javascript. help. thanks ------- <HTML> <HEAD> <TITLE>DDC Buttons</TITLE> <SCRIPT> function ButtonPress(buttonnumber) { document.layers.cust.document.write('data'+buttonnumber); } </SCRIPT> </HEAD> <BODY> <table> <tr><td><input type=&quot;radio&quot...
  13. achai

    output question

    if I want get result from database, three records a line. like: <tr><td>#1#</td><td>#2#</td><td>#3#</td></tr> <tr><td>#4#</td><td>#5#</td><td>#6#</td></tr> how do i write this? use cfloop? thanks
  14. achai

    Priority in the events ?

    i only used &quot;onchange&quot; in <select><option></option></select> maybe others will give you better answer.
  15. achai

    Cfusion_encrypt

    &lt;cfif Cfusion_encrypt(&quot;#attributes.pword#&quot;, &quot;#key#&quot;) EQ login.password&gt;<br>--------<br>pword is the password user entered.<br>login.password is in database. but looks weird. some number and alphabets. no logic.<br>Is there anyone knows what's Cfusion_encrypt's...
  16. achai

    debug ADO error

    I changed <br>oConn.Open &quot;dsn=informix;driver={MERANT 3.60 32-BIT INFORMIX};server=DEV0_TCP;database=informix;&quot;<br>to <br>oConn.Open &quot;dsn=informix;&quot;<br>now it works very well.<br>thanks. I didn't notice the explaination you wrote ealier. it exactly answers my question.<br><br>
  17. achai

    debug ADO error

    i use ODBC administrator to connect informix database.<br>---------<br>error:<br><br>Microsoft OLE DB Provider for ODBC Drivers error '80004005' <br><br>[MERANT][ODBC Informix driver]Insufficient information to connect to the data source. <br>---------<br>code:<br>&lt;%<br>set...
  18. achai

    debug ADO error

    thank for explaination.<br><br>but why others use <br>oConn.Open &quot;driver=bla,bla;SERVER=bla;database=bla;USERID=;PASSWORD=;&quot;<br>to connect the database? they don't use ODBC manager?<br><br>
  19. achai

    debug ADO error

    i change to <br>---------<br>oConn.Open &quot;dsn=quickstore;driver=Microsoft Access Driver (*.mdb);SERVER=PWS;database=quickstore;USERID=;PASSWORD=;&quot;<br><br>It works. thanks. <br>can you explain why?
  20. achai

    debug ADO error

    error:<br>&quot;Microsoft OLE DB Provider for ODBC Drivers error '80040e4e' <br>Operation Canceled&quot;<br>----------------------------<br>code:<br>&lt;%<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set oConn = Server.CreateObject(&quot;ADODB.Connection&quot;)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set oRs...

Part and Inventory Search

Back
Top