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

    Is it possibe to group the cfouput??

    You can use <cfoutput group="mygroup" query="myquery"></cfoutput> where mygroup is the field you want to group by. Coldfusion help has a good example of this.
  2. MikePalm

    Mail Merge with PDF - Reforming Text

    I am using the CFPDF tag in CF8 to create a mail merged document with data from a database. One problem I am having is that the form fields are a static size. If i have text that is of varying size, say a Community Name, I would like the text to flow arround the data inserted in the form tag...
  3. MikePalm

    problem with dynamic radio boxes

    you need to make sure the radio button code is in a loop to loop over all of the data. This can be accomplished with a <cfoutput query="test"> radio button code </cfoutput> OR <cfloop query="test"> radio button code </cfloop Mike
  4. MikePalm

    Printing in the background

    I have a web based system that uses Adobe Acrobat Reader 6.0 to open documents, print the contents and close the documents. The user is printing a series of contract documents. I would like to merge data with a document using FDF and have it print without opening the document in Reader. I...
  5. MikePalm

    ( problems with FDF files

    I have several forms that I fill with data using FDF. Users will from time to time enter a ( and do not enter the ending ). Adobe will error off stating that the form is damaged and cannot be repaired. I was wondering if there was an easy way to check for this and escape it or something so...
  6. MikePalm

    How to load multiple pdf's at once in one window

    I set up a routine that automatically prints all forms the user checks. I setup a loop that loops through all of the forms and opens and prints the form, then closes the form and goes to the next form. The user views each form for a second and then it is sent to the default printer...
  7. MikePalm

    which button was pushed

    I have a web page with several buttons. i would like to know in a javascript routine which button was pushed. Clients use IE Thanks, Mike
  8. MikePalm

    Wrap text on button

    Thanks for all of your help is figured it out. I changed the tag to a button tag type = submit and it worked see code below <button type="submit" title="Change Order Log" onclick="window.location='../forms/multi_select.cfm?form_name=change_order_log'" style="font-size:10px; font-weight:700...
  9. MikePalm

    Wrap text on button

    I have the following button: <input type="button" value="Change Order Logs" title="Change Order Logs" src="../graphics/file_drawer_handle.gif" onclick="window.location='../forms/multi_select.cfm?form_name=change_order_log'" style="font-size:10px; font-weight:700; width: 89px; height: 90px...
  10. MikePalm

    Change the sign of a number

    I have a number that is Negative. I want to change this to a positive number without changing the value of the number. Example -1 change to 1 -2 change to 2 etc. Mike
  11. MikePalm

    wildcard search

    Yes it was, I just gave you a star. Again thanks for all of your help.
  12. MikePalm

    wildcard search

    My intent here is not to waste anyones time. I thought I had explained exactly what I was looking for in the way of an answer. I will try to do a better job of explaing the situation in the future, so that no ones time is wasted. Thanks for all the help. Mike
  13. MikePalm

    wildcard search

    Actually Dan, I was not adding functionality. I was responding to the posts by Clflava. He was providing a solution that I thought would not work for my specific situation. Mike
  14. MikePalm

    wildcard search

    Also, I do not want to clear the selections box, only scroll and highlight the record that closely matches what they typed in.
  15. MikePalm

    wildcard search

    cLflaVA, Thanks for the code. It works as you stated. I apprieciate you taking the time to create a test application. My only concern with your approach is with the loading of the array. Some of the data that is pulled up in the list is quite lengthy and I worry about the amount of time...
  16. MikePalm

    wildcard search

    The only problem is that I do not have any idea what the street names will be ahead of time. So prepopulating an array with a list of possible names will not work. Also I want the list to filter as they type, not after they have entered the complete street name.
  17. MikePalm

    wildcard search

    I have a selection list that I display for users. THere is a field that I allow users to type in information and using java script I take them to the closest match in the list using the substring feature. I would like to do the same tthing using a wildcard. The field contains addresses that...
  18. MikePalm

    Full screen Problem

    Adam, Thank You. That solved the problem. Mike
  19. MikePalm

    Full screen Problem

    Yes I am viewing the screen with the same machine in production and development. and yes the machine has XP SP2. My question is why is it showing one way in development and different in production? I have looked on the server to see if it is some kind of setting, but could not find anything...
  20. MikePalm

    Full screen Problem

    I have a page that I want full screen. I have javascript that opens the page fullscreen with the following javascript code function fullScreen(theURL) {var newWind = window.open(theURL, '', "fullscreen=yes, scrollbars=no, title=no, menubar=no, titlebar=no");} however when the screen opens...

Part and Inventory Search

Back
Top