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 Jay319

  1. Jay319

    Checkbox value

    Chris - thanks for looking at this. Here is a link to the page ... http://www.tccprint.com/inserttracker/AmesTribune/ames_booked_Insert.asp and here is the complete page code ... <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <!--#include file="../WA_DataAssist/WA_AppBuilder_VB.asp" -->...
  2. Jay319

    Checkbox value

    There are around 11 checkboxes and the database value it is putting in each is based on zQuantity value. value="<%=(rsZones.Fields.Item("zQuantity").Value)%> For example that quantity may be 351. No matter what box I check I get the 351 value. The second checkbox is not moving to the next record...
  3. Jay319

    Checkbox value

    I have a mysql database that contains fields for "zZones" and "zQuantity" Each Zone has a Quantity attached to it. I have an insert form with checkboxes. When you click a checkbox it activates a javascript that puts the total Quantity of the checkboxes selected into a total field. My problem...
  4. Jay319

    List Box to populate db with one value and form textbox with another

    I have a database with these fields ... insertID insertAccount insertAccount_No insertPublication I have a list box that is dynamically created so the label shows the insertAccount and value equals insertAccount_No I have a javascript that when you select an Account from the list box it...
  5. Jay319

    Dropdown Menu - populate textbox with different value

    Hi, I have a dropdown menu which when an account is selected I would like to have a textbox automatically populate with the account number. Here is what I have started ... <script language="javascript"> function MoveacctNumber() { var myVar = document.form1.acctNumber.value...
  6. Jay319

    Dropdown Menu - populate textbox with different value

    Hi, I have a dropdown menu which when an account is selected I would like to have a textbox automatically populate with the account number. Here is what I have started ... <script language="javascript"> function MoveacctNumber() { var myVar = document.form1.acctNumber.value...
  7. Jay319

    Tie Checkbox to a Hidden Field

    Hi Chris, Yes ... the javascript does the calculation. thanks, jay
  8. Jay319

    Tie Checkbox to a Hidden Field

    I have a series of dynamic checkboxes on my form that when checked calculate to a total field on my form ... showing a running total. I also have a hidden field on the form that I would like to tie to this checkbox. The checkbox would show the total and then send the hidden field value to the...
  9. Jay319

    Tie Checkbox to a Hidden Field

    I have a series of dynamic checkboxes on my form that when checked calculate to a total field on my form ... showing a running total. I also have a hidden field on the form that I would like to tie to this checkbox. The checkbox would show the total and then send the hidden field value to the...
  10. Jay319

    auto calculate dynamically created checkboxes in a form

    Hi, I did come across some javascript in this forum which does a nice job of putting a total of the "Zones" checked into a "Total" textbox on my form ... <script> function calculate(){ ttl = 0 //sets the total couter to 0 allInput =...
  11. Jay319

    auto calculate dynamically created checkboxes in a form

    Hi, I have a form that has some dynamically created checkboxes ... <input name="bkZones" type="checkbox" id="bkZones" value="<%=(rsZones.Fields.Item("zZone").Value)%>"> . I also need to capture some "quantity values" from the database when they check the box that I would like to appear in a...
  12. Jay319

    auto calculate dynamically created checkboxes in a form

    Hi, I have a form that has some dynamically created checkboxes ... <input name="bkZones" type="checkbox" id="bkZones" value="<%=(rsZones.Fields.Item("zZone").Value)%>"> . I also need to capture some "quantity values" from the database when they check the box that I would like to appear in a...
  13. Jay319

    convert to pdf

    I thought I would post the whole code which we have been using and working with Acrobat 5. Hopefully to clarify what we are trying to do .. either make this work with Acrobat 7 or print to a post script that I can use in Distiller. The forms are coming from Access DB. Option Compare Database...
  14. Jay319

    convert to pdf

    I have been doing the same thing that dodge20 has explained at the beginning of the posts using Acrobat 5. Now with Acrobat 7 this does not appear to work. Does anyone know how to make this work with Acrobat 7 or is there a way to use this same cod to print to a postscript file? Thanks, Jay
  15. Jay319

    Name and Print Coupons

    They do need to be separate files. With names that match a code in the database. Thanks, Jay

Part and Inventory Search

Back
Top