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. coders4hire

    Pass value for unchecked boxes

    Won't that pass '0,0' or '1,1'? Without any javascript and just a hidden field = "", It's actually passing the string. If it's empty, it's passing "", if it's checked, it passes "1,". I can live with that! Doug Doug http://www.coders4hire.com http://www.payraisecalculator.com
  2. coders4hire

    Pass value for unchecked boxes

    I actually was able to get a 'workaround'. I added a hidden field at each checkbox with the identical name. This causes the checkbox value to get entered, whether or not it's selected. Doug http://www.coders4hire.com http://www.payraisecalculator.com
  3. coders4hire

    Pass value for unchecked boxes

    Unfortunately, the client requirements are for checkboxes. I would have definitely opted in for radio buttons! Doug http://www.coders4hire.com http://www.payraisecalculator.com
  4. coders4hire

    Pass value for unchecked boxes

    I actually changed my mind ;) I would like to ONLY change the values of the unchecked boxes that are in my array to equal '0'. I tried modifying your code a little but it's not quite there: function VerifyForm(subscribeForm){ var cbox =...
  5. coders4hire

    Pass value for unchecked boxes

    trollacious answered another one of my questions today, and I'm trying to modify the code to work with this problem. For ANY unchecked boxes in my form, I want to pass a value of '0'. Can I do this without identifying every box? Is this efficient below? function VerifyForm(subscribeForm){...
  6. coders4hire

    Concatenate selections from list using checkboxes

    I need to utilize checkboxes on one of my pages where the user selects the content that he/she wants to obtain. Rather than submit those values independently, I want to concatenate the answers into a single value. <table> <tr><td><INPUT type="checkbox" id=news name=news...
  7. coders4hire

    Need help with querystring

    Thanks! And I'll follow up with a dumb question regarding the second half of my question. My page has a header, left menu, etc. on it. Do I need to include all of those in this script? Can I do includes? (Perhaps header, start_html, and end_html are includes... but I don't know where to...
  8. coders4hire

    Need help with querystring

    I've got the start on retrieving a querystring. I simply want to make a completion page where a status code is passed so that the text message can be adjusted. Examples: thanks.cgi?status=0 print "The service is currently unavailable" thanks.cgi?status=1 print "The request was successful"...
  9. coders4hire

    Stored Procedure across database and servers?

    Ummm... WOW! --- doug@coders4hire.com http://www.coders4hire.com http://www.payraisecalculator.com http://www.cliintel.com
  10. coders4hire

    Export table to fixed-width ascii file

    using tabs would make it a delimited file, not fixed width. --- doug@coders4hire.com http://www.coders4hire.com http://www.payraisecalculator.com http://www.cliintel.com
  11. coders4hire

    Export table to fixed-width ascii file

    What is the recommended way to export a table in Sybase to a fixed width ascii file? --- doug@coders4hire.com http://www.coders4hire.com http://www.payraisecalculator.com http://www.cliintel.com
  12. coders4hire

    Query across server/db into temp table

    We have a HISTORY table on a backup server. I've never written a stored procedure in Sybase. I would like to open the backup server, and export the HISTORY table to the PRODUCTION server into a temp table where I can then do a join and export. 1. Can that be done? 2. Could you give me some...
  13. coders4hire

    Trailing Blanks in Comparisons !

    You can't do an update query? UPDATE table SET field = trim(field) --- doug@coders4hire.com http://www.coders4hire.com http://www.payraisecalculator.com http://www.cliintel.com
  14. coders4hire

    Stored Procedure across database and servers?

    We have a HISTORY table on a backup server. I've never written a stored procedure in Sybase. I would like to open the backup server, and export the HISTORY table to the PRODUCTION server into a temp table where I can then do a join and export. 1. Can that be done? 2. Could you give me some...
  15. coders4hire

    Join SQL Statement!

    From sybase: Transact-SQL includes syntax for both left and right outer joins. The left outer join, *=, selects all rows from the first table that meet the statement's restrictions. The second table generates values if there is a match on the join condition. Otherwise, the second table generates...
  16. coders4hire

    Multiple IE's open when I connect to internet

    Sounds like a spyware or activeX component has you busy. I would download a freebie version of Spy Sweeper and have it clean you out. http://www.webroot.com/wb/products/spysweeper/index.php You'll be surprised at how much is loaded on your system without your knowledge. ---...
  17. coders4hire

    Working with Specifications without the Wiz

    Ever viewed the System Tables in Access? Tools>Options>System Objects. You'll now see the additional core tables in Access. BE CAREFUL... back up any database you are working on so you don't muck it up! AFTER you have a saved specification in the database, there exists the MSysIMEXSpecs...
  18. coders4hire

    Access VBA: Tranfertext Import Progress Bar ActiveX

    I'm having a terrible time trying to 'mimic' the status bar progress bar when importing a text file. I have a spec, and the code which properly imports the data I need. The status bar in Access progresses nicely with the import. HOWEVER, if I register the Progress Bar Active X Component...
  19. coders4hire

    Tab Delimited ODBC

    You may be able to override the 'csv' problem by programmatically developing your Import Specification on the fly. You can do this by populating your System tables (Spec and Column). Tools>Options>View System Objects You could append the necessary import specs into the system tables, then...
  20. coders4hire

    Import text file specification

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odbc/htm/odbcjetsdk_98.asp Does this help? --- doug@coders4hire.com http://www.coders4hire.com http://www.payraisecalculator.com http://www.cliintel.com

Part and Inventory Search

Back
Top