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 SkipVought 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. gelgaard

    Read form value without submitting

    I am presuming you have a dynamically generated form, probably based on a data base query. If that is so than this is how I would go about it. Step 1. Generate the specific input tags you want to deal with by labelling them with a common class name and a consistent id attribute. <input...
  2. gelgaard

    Controlling link colors on hover

    I use classes to define my anchor links as per the following example lifted from our general style sheet: a.menu:link {font-family: &quot;Verdana&quot;, &quot;Arial&quot;; font-size: 7pt; color: #dddddd; text-decoration: none;} a.menu:visited {font-family: &quot;Verdana&quot...
  3. gelgaard

    Different Sheets within one Excel Spreadsheet

    The CFComet website has some good introductory stuff if you want to get good at using COM objects to build your own Excel and Word files. I did this for a project where I had to merge environmental data with a monthly report template and spit the end result out as a downloadable Word file...
  4. gelgaard

    How can I do a RecordCount in 5's

    My code presumes you have more than 15 records (more than one page of data) returned in your thumbnails query. I used a sample that generated 45 results. That guaranteed me three pages of data to display that allowed me to test the next and previous link code. If there are less than 15...
  5. gelgaard

    Force page reload

    This is just a guess but I know Internet Explorer uses cached pages by default. There is a tag I put at the bottom of all my pages to try and flush the cache and force it to go back to the server everytime. This seems to work for most page elements although I know Explorer will cache style...
  6. gelgaard

    How can I do a RecordCount in 5's

    I reproduced the same error when my masterlist query returned less than 15 items. Make sure the total record count for your &quot;GetThumb&quot; query is over 15. The ListGetAt() call is parsing the list in groups of 15. i.e. The first 15 thumbnails are considered one list entry. The second 15...
  7. gelgaard

    How can I do a RecordCount in 5's

    My preference would be to show them a list of all the data sets (rather than just previous and next) and I like the idea of having a link to print the presently displayed set. Presuming that you wanted to stick with just having links to the previous and next data set there is another way to do...
  8. gelgaard

    LSCurrencyFormat not UK friendly??

    I have also had trouble getting the formatting functions to work properly when displaying information from our offices where dollars are not the local currency. I invented my own custom tags for accomplishing this. They aren't that hard to write and they will work on any platform. Below is an...
  9. gelgaard

    How can I do a RecordCount in 5's

    I think there is a simpler way to accomplish what you want. To divide your master list of images into groups of 15 make a list of their id number and then change the delimiter for every 15th image. (I changed it from a comma to a tilde in the sample below.) Use this to cycle through your list in...

Part and Inventory Search

Back
Top