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!

Search results for query: *

  • Users: Mickbw
  • Order by date
  1. Mickbw

    Disabling Several buttons through Script

    I have several submit buttons with the same name: <input name="Process" type="submit" value="Export To HRS" onClick="submitFunction(1);" >&nbsp; <input name="Process" type="submit" value="Display in Excel" onClick="submitFunction(2);">&nbsp; <input name="Process" type="submit" value="Report"...
  2. Mickbw

    Normal.DOT for Excel?

    Since the macro will only be necessary for two other people to utilize, I can create it on mine and then recreate the macros on their computers. Thanks for all your help. Michael Brennan-White New Hampshire Treasury Department www.nh.gov/treasury
  3. Mickbw

    Normal.DOT for Excel?

    Molby, Is this the correct location for the file you said to work with: C:\Documents and Settings\username\Application Data\Microsoft\Excel\XLSTART Michael Brennan-White New Hampshire Treasury Department www.nh.gov/treasury
  4. Mickbw

    Normal.DOT for Excel?

    Hi, My application will be generating CSV files for viewing in Excel. They would not be given the same title each time. I would like to have a macro (hopefully from a toolbar button) that would format the sheet in the way the users want the sheet to be displayed (conditional formatting...
  5. Mickbw

    Problem running script in .cfm

    I'm not sure why my reply didn't go through before. The CFM page was the only one that received the JS error Michael Brennan-White New Hampshire Treasury Department www.nh.gov/treasury
  6. Mickbw

    Problem running script in .cfm

    Hi, I'm not sure if this will be any assistance but the following Javascript errors occur when I view the page in Firefox. Error: invalid assignment left-hand side Source File: http://twisterradio.com/richtext_compressed.js Line: 1, Column: 2 Source Code...
  7. Mickbw

    looking for a cheap

    Hi, The Cheapest host I found that offers Cold Fusion was at [www.anumina.com ]. I have a personal account with 60 mb of space and a mysql db for $4.95 a month. They are also very quick to respond to support requests. Michael Brennan-White New Hampshire Treasury Department www.nh.gov/treasury
  8. Mickbw

    Group by Question

    The following code works correctly but I would like to group the results by the field transaction_id and only the transaction_id. Select Distinct cast(substring(Ledger.Transaction_ID,3,11) as int ) as checknumber, Ledger.Transaction_ID as TransactionID, Ledger.agency...
  9. Mickbw

    Pop Up Windows

    Does anyone know if that will still be the case for the changes under XP SP2. My understanding of the IE Popup Blocker is that it will block all instances of window.open() Michael Brennan-White New Hampshire Treasury Department www.nh.gov/treasury
  10. Mickbw

    Can I place anchors in an Image

    I'm sorry. I'm not trying to be deliberately vague. I have a map at http://www.carbodehydrated.com/Parks/Maps/GreatNorth.cfm On the page I have included the following code for the image map. <img src="../Images/GreatNorth.jpg" width="745" height="1061" border="0" usemap="#Map" /> <map...
  11. Mickbw

    Can I place anchors in an Image

    I was hoping to do a link from the information page to the anchor like this <a href='map.htm?Location=Sunapee'> with the anchor being part of the image. Michael Brennan-White New Hampshire Treasury Department www.nh.gov/treasury
  12. Mickbw

    Can I place anchors in an Image

    Thanks for your reply, I have an image map associated with the image which I am using so that when someone clicks on a hotspot in the image they will go to the href page. What I want to also do is link from another page to a specific location in the image similar to the <a> tag. Michael...
  13. Mickbw

    Can I place anchors in an Image

    Hi, I have a large map that I plan to link to. Is it possible to place several anchors in the image to link to the correct location in the image? Michael Brennan-White New Hampshire Treasury Department www.nh.gov/treasury
  14. Mickbw

    Function doesn't return a value

    Thanks for all your help, It is scary that in a small section of code I could make so many errors. Now I can apply your fixes to my entire function. I feel like I am a pretty good programmer in most errors but Javascript continually has me spinning in a circle. Thanks a lot. Michael...
  15. Mickbw

    Function doesn't return a value

    I am passing the following function a string value '13-05-2004'. It is supposed to parse out the individual numeric values and see if they are valid month, day, and year values. function ParseDate(FormField,DateFormat) { //DateFormat 1 = mmddyyyy, 2 = yyyymmdd var cFieldValue =...
  16. Mickbw

    DIV without a Carriage Return

    Hi, How can I suppress a carriage return when there is a DIV tag. I have two pop-up calendars tied to text boxes. The second Pop-Up is within a DIV tag because it is only displayed when the user wishes to query between two dates. This is all contained within a TD tag in a table. The TD tag...
  17. Mickbw

    Showing Inserted Records in CursorAdapter Cursor

    Hi, When I use a CursorAdapter to insert records into a mySQL table, the new records do not show in the cursor but do get inserted into the database. I think I need to see these records in order to get the last ID inserted into the table unless there is a better way I can do this. The...
  18. Mickbw

    Function to extract all combinations of Passed Amounts

    Craig, Your post deserves more than a star. That is exactly what I needed. Thanks, Michael Michael Brennan-White New Hampshire Treasury Department www.nh.gov/treasury
  19. Mickbw

    Function to extract all combinations of Passed Amounts

    Rick, The number of transactions would not exceed 10. When one of the amounts matched I would probably restart the process with the remaining values. Michael Michael Brennan-White New Hampshire Treasury Department www.nh.gov/treasury
  20. Mickbw

    Function to extract all combinations of Passed Amounts

    Sorry, I wasn't specific enough in what I was asking for. For example: Amount1 = 1 Amount2 = 2 Amount3 = 3 Amount4 = 4 Amount5 = 5 I would like to pass these values and receive all combinations of these variables. For example: Amount1 + Amount2 Amount1 + Amount3 Amount1 + Amount4 Amount1...

Part and Inventory Search

Back
Top