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

    Email

    CDO and ASP was they way to go! Here is the code I eventually used. <% Set myMail=CreateObject("CDO.Message") myMail.Subject="Test Email" myMail.From=anyone@emailaddress.net myMail.To=anyone@emailaddress.net myMail.HTMLBody = "body of the email including any HTML" myMail.Send set...
  2. PaulHolmes

    Email

    Hi Sheco, CDO was they way to go! Thank you very much. Here is the code I eventually used. <% Set myMail=CreateObject("CDO.Message") myMail.Subject="Test Email" myMail.From=anyone@emailaddress.net myMail.To=anyone@emailaddress.net myMail.HTMLBody = "body of the email including any HTML"...
  3. PaulHolmes

    Email

    Thanks Jeff, Any recommendations on how to do this? Paul.
  4. PaulHolmes

    Email

    Hello, I’m not sure what I am trying to do is possible but here goes… We have a web online booking system for a holiday company. Half way through we let users print a page via JavaScript, using innerHTML so that they have a paper version of the quote. Ideally what I would like to do is...
  5. PaulHolmes

    Email

    Hello, I’m not sure what I am trying to do is possible but here goes… We have a web online booking system for a holiday company. Half way through we let users print a page via JavaScript, using innerHTML so that they have a paper version of the quote. Ideally what I would like to do is...
  6. PaulHolmes

    Dynamically load button

    Thank you, sorted by creating a button with a movieclip
  7. PaulHolmes

    Dynamically load button

    Hello, I was wondering whether there was a way to load a button depending on what image was loaded. I have a function that randomly selects an image. I would like to load a button dependent on what image was showing. pic_arr = [ "Images/01006a", "Images/01224a", "Images/01446a" ]...
  8. PaulHolmes

    Page count

    Hi, Im fairly new to javascript and was wondering whether there was a way to count the number of pages visited in a single session. What I am trying to do is a simple breadcrumb navigation that would use the javascript:history.go(-1) replacing the -1 with the counted variable so that the user...
  9. PaulHolmes

    Newbie background position

    Hi Vragabond, Basically I would like a box with a button in the bottom right-hand corner. Please see http://www.cadoganholidays.com/CDGTest Following your last post I have realised what I was doing wrong regarding the background-position. In respect of the colpad, I have different columns...
  10. PaulHolmes

    Newbie background position

    Hi I seem to be struggling with the background-position element and I am now starting to pull my hair out! I have a container and within that I have another element with an image which I would like to appear at the bottom right of the container. CSS .container { width:146px; height:250px...
  11. PaulHolmes

    GRTD

    Hello, We have a number of windows/bollboards displaying certain information - Calls Waiting, Desk Plan etc etc for our large call centre. Rather than tiling these we would like to scroll through the windows, so the Desk Plan will show for 10 seconds, then Calls Waiting for 10 seconds and so...
  12. PaulHolmes

    Scroll through open windows

    Thank you vladk, that worked well. Call centre is now up and running and displaying alternate screens intermittently. Just what we wanted. Brilliant! Thanks again.
  13. PaulHolmes

    Scroll through open windows

    Thanks vladk, Have looked into APIs and come up with the following code. This works in a fashion in that you can see it selecting the application in the task bar but the window does not open. Any suggestions? ---------------------------------------------------------- Private Declare...
  14. PaulHolmes

    Scroll through open windows

    Unfortunately, no. Do you think it is possible to use the SendeKey command to alt+tab to the next window and use a timer to hold the current window?
  15. PaulHolmes

    Scroll through open windows

    Does anyone know of any easy way of periodically scrolling through open windows? A call centre would like to periodically change the desktop window so that staff can see certain information, i.e. calls waiting etc. Thank you.
  16. PaulHolmes

    Background Color

    Figured it out, as simple as putting a div below the float container. <div style="clear:both;"></div> Thank you.
  17. PaulHolmes

    Background Color

    Thanks Chris, I have closed my <div> properly now. If you have a look at http://www.cadogantravel.com/leisure you will see that I have two borders, a fade out and a white border. As soon as I use a float:left these two borders seem to stop and do not continue down the page any further. This...
  18. PaulHolmes

    Background Color

    Hello, Website at present looks OK in IE6 on PC. However, on MAC Safari and IE my float:left seems to disable to background-color? Code: CSS: body { margin: 0px 0px 0px 0px; padding: 0px; text-align: center; background-color: blue; } /* Generic classes */ .ahem { display: none; } .center...
  19. PaulHolmes

    Webbrowser

    ZmrAbdulla - Thank you so much! This works a treat.
  20. PaulHolmes

    Webbrowser

    Help??? I am trying to print the contents of a webbrowser which I have navigated to via the commondialog. The general contents of browser window will be *.doc or *.xls files. I am using code: mainbrowser.ExecWB OLECMDID_PRINT, OLECMDEXECOPT_PROMPTUSER The problem is that the printer prompt...

Part and Inventory Search

Back
Top