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 Mike Lewis 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. Safacto

    breadcrumb trail - location.onchange event needed?

    Supurb! I knew I was missing something simple. Cheers. :)
  2. Safacto

    breadcrumb trail - location.onchange event needed?

    Hi all, I'm trying to create a javascript breadcrumb trail. Currently, I read the document.location URL and split it on the "/" character, clean it up a bit and output it as a breadcrumb. Nothing hard about that. Now I want to extend it to include any anchors in the url. ie. if the URL is...
  3. Safacto

    Graphing and Excel file updates

    Forgive me, but this was the closest forum I could find to ask questions about visual C++ using Borland C++. After checking again, the only visual C++ forum seems to be for Microsoft Visual C++, not Borland.
  4. Safacto

    Graphing and Excel file updates

    Hi, I'm fairly new to visual C++ and am trying to graph a vector of values. I think I may have to convert this to an array/series first, but which chart feature should I use, and how do you add coordintes to a graph/chart? Also, how do you load or update an excel file from within visual C++...
  5. Safacto

    Saving Multiple Files With Batch Script

    Hi, I'm trying to write a batch script to resize a load of files, and save each file with its original file name. How can I tell the script to save each individual file with its original name?? At the moment it just keeps overwriting one file with all the others.
  6. Safacto

    Dynamic sizing of Frames (with Javascript?)

    Hiya, Just thought I'd let you know I just figured it out. Obvious really, just use this function: <script language=&quot;javascript&quot;> function changeheight(divid) { document.all[divid].style.height=screen.availheight-200; } </script> Simple really. Richard.
  7. Safacto

    CSS - referencing another class

    Hiya, I think that this is all getting too complicated. It was only to save me a bit of time in the future. The site works, it's just a couple of cut and paste jobs that I'd've saved. Thanks anyway, Richard.
  8. Safacto

    Dynamic sizing of Frames (with Javascript?)

    Hi, My website needs to fuction on both 800x600 and 1024x768 res screens. I know this is similar to the post below, but it's significantly different. I have sorted all the widths out with absolute sizes so they fit right. However, the height of the main <DIV> is causing problems. Currently it...
  9. Safacto

    CSS - referencing another class

    That's a good idea. The problem is, is that I want to use one colour for text colours on parts of the site, and for backgrounds on other parts. Although what you suggest would probably help, it would get too complicated to go through every single page of the website adding ID tags where...
  10. Safacto

    CSS - referencing another class

    Oh, I suppose I could use the &quot;inherit&quot; commands, but due to the way the site is structured, it may not work right. If there's another way I'd be gratefull. Richard.
  11. Safacto

    CSS - referencing another class

    Hi, On my site, I have CSS sheets with a relatively large amount of classes in them. In a lot of the classes, the colours (for example) are the same. Is there a way to &quot;reference&quot; another class to set the right colour?? Basically, so I only have to change one colour, and all the...
  12. Safacto

    Dynamically chaning Alternate Style Sheets in Inline Frames

    Hummm.... I've just tried the parenting you suggest, but the pages in the iframe don't &quot;recognise&quot; the new cookie untill the page is refreshed (i.e. F5). A simple reloading of the iframe doesn't work, the whole page/screen must be refreshed. Putting a reload() function in is a bit...
  13. Safacto

    Prevent character display on user input (std::cin)

    Yeh, I thought of that, but it doesn't prevent the standard display of input in the console window. I need a way of being able to &quot;check&quot; each character at the moment it is input, without the user having to press &quot;Enter&quot; after each character. All this could be solved by...
  14. Safacto

    Prevent character display on user input (std::cin)

    Hi, Just a quick question. If I request the user to enter an integer using a Win32 console (for example), is there a way to prevent any characters other than numbers from being displayed on screen. Is there a way to disable the entry of specific ASCI characters or something?? I realise there...
  15. Safacto

    Dynamically chaning Alternate Style Sheets in Inline Frames

    Hi, I wish to be able to allow the user to change the style sheet which the site uses, and make this change work within an IFRAME. To explain, the site (http://www.civsoc.co.uk/) has a selector to let the user change to an Alternate Style Sheet. This preference is then saved in a cookie, and...

Part and Inventory Search

Back
Top