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 bkrike 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: jcroft
  • Content: Threads
  • Order by date
  1. jcroft

    how to wrap dynamic text in select box??

    I am filling a select box with a lengthy field from an SQL database that I would like to wrap and indent beginning with first wrap...can you help me? --only those that do not try, fail--
  2. jcroft

    javascript:history.back()

    I have a page with submit button...OK I submit error handler below if status = "Already Ordered" then select case redisplay case vendorname = "" Response.Write "Please click 'Back' and enter Vendor Name" case vendorname = "Enter Vendor Name&quot...
  3. jcroft

    drop down arrow background color

    I can change the background color and font color of buttons and the background of select drop downs.... how do I change the color of the drop down arrow in the select box here is code to change other stuff... <style> select.Menu{ font-family: Arial...
  4. jcroft

    right click

    I have searched for two days...my problem is that I do not know enough about javascript to know when I have the answer.. I can capture the left click with this code... <SCRIPT Language=&quot;Javascript&quot;> function post_to_link(link_loc){  document.form1.action = link_loc...
  5. jcroft

    &lt;a href=&quot;ad40800.pdf&quot; target=&quot;_blank&quot;&gt;

    <a href=&quot;ad40800.pdf&quot; target=&quot;_blank&quot;> I load pdf file with this...is there any code that will allow user to enter text into the pdf document for printing and/or emailing? Or even a work around... --only those that do not try, fail--
  6. jcroft

    email via javascript

    is there an email function similar to this print one to email the form that the user has filled out?? <script language=&quot;JavaScript&quot;><!-- if (window.print) document.write('<input type=&quot;button&quot; value=&quot;Print&quot; onClick=&quot;window.print()&quot;>')...
  7. jcroft

    print all data in form

    I have an ASP web form with textboxes and textareas as well as drop down boxes. I know how to print page, is there a simple way to expand and print the data in the objects? I don't necessarily want them to see the expanded version, I just want a printable one. Thanks, JC --only those that do...
  8. jcroft

    how to disable toolbars

    <a href=&quot;anypage.asp;&quot; target=&quot;_blank&quot;>Click Here</a> what is the javascript that I can add to this to make the pop up window only have the title bar? --only those that do not try, fail--
  9. jcroft

    strSQL1 =&quot;SELECT * FROM &quot;&amp; doc &amp;&quot; WHERE number=&quot; &am

    THE CODE BELOW produces the ERROR BELOW con1 = &quot;DSN=QC4ID&quot; set rs1 = server.CreateObject(&quot;ADODB.Recordset&quot;) strSQL1 =&quot;SELECT * FROM &quot;& doc &&quot; WHERE number=&quot; & snum rs1.Open strSQL1, con1,1,3 picture = rs1(&quot;filename&quot;) Microsoft OLE DB Provider...
  10. jcroft

    boolian should test true

    this page is to verify that user has access to certain inventory... the comma delimited memo field &quot;AllAccessusers&quot; contains the name &quot;ADMIN&quot; which is my test user...but the boolian did not change to true...what have I done wrong??? THANK YOU. JB <%@ Language=VBScript %>...
  11. jcroft

    MS spell check from ASP document

    Can you call the spell checker from an ASP document in a similar manner as calling Word or Excel....is there some way to access it, or must I purchase a spell checker for a user to use to check memo fields for spelling errors? Thank you, JC --only those that do not try, fail--
  12. jcroft

    Object doesn't support this property or method: 'MyCDONTSMail.AttachFi

    Would someone be kind enough to look at this mess and tell me what I am doing wrong? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <INPUT type=file name=notify action=&quot;filetransfer.asp&quot;> <INPUT id=submit type=submit value=&quot;Send to All&quot; name=&quot;submit&quot;>...
  13. jcroft

    CDONTS ....attachfile error

    Can you tell me what I am doing wrong...? Error I get: Microsoft VBScript runtime error '800a01b6' Object doesn't support this property or method: 'Attachfile' /managementemail/email.asp, line 71 My code is: Set MyCDONTSMail = CreateObject(&quot;CDONTS.NewMail&quot;)...
  14. jcroft

    how to set up access database to handle multiple responses to 1email

    Am writing ASP which will send one email to many people (about75) then they respond individually...I need to store all replies from individuals and the responses back to each individual from the original sender....someone please set my thinking in the right direction. I have the code to send...
  15. jcroft

    CDONTS not rs.movenext &amp; start new email

    What have I done wrong?? this code produces and sends one email to each of entries in database, but the email contains copies of the previous emails in addition to the correct one...make sense?? if rs.EOF = false then While rs.EOF = false email = rs(&quot;Email&quot;) 'sending email...
  16. jcroft

    &lt;a href=&quot;salesforcemaintain.asp&quot; onClick=&quot;document.form1.submi

    Is this good code to get a submit on a form to work...if so how do I refer to it in an &quot;IF&quot; statement when it is clicked?....any better way to do this without using the input button method would be appreciated. <a href=&quot;salesforcemaintain.asp&quot...
  17. jcroft

    SELECT DATE,COUNT(DATE)

    strSQLcount = &quot;SELECT DATE,count(date) FROM POCHANGE WHERE CHGTYP = '2' AND PONUM='&quot; & ponum1 & &quot;'&quot; produces this error: Microsoft OLE DB Provider for ODBC Drivers error '80040e14' [Microsoft][ODBC Microsoft Access Driver] You tried to execute a query that does not include...
  18. jcroft

    &lt;a href='javascript:history.back()'&gt;Back&lt;/a&gt;

    I have an ASP page that sends an email to someone...someone clicks on the link that sends them to this page...they fill out form but leave out an item...the error trap below brings up a page with a &quot;Back&quot; link...they click &quot;Back&quot; and their data they entered is lost...if they...
  19. jcroft

    MyCDONTSMail.Send

    Below is my code...I do a response.write before and after it and the variables are there...however it is not sending...how do you debug to see where problem is? Set MyCDONTSMail = CreateObject(&quot;CDONTS.NewMail&quot;) MyCDONTSMail.MailFormat = cdoMailFormatMIME MyCDONTSMail.From= whorespond...
  20. jcroft

    can function call itself

    Am writing an ASP page using Access DB, can a function call itself or is it tied up during use??

Part and Inventory Search

Back
Top