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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by GOSCO

  1. GOSCO

    Help with simple JQuery Plugin issue news ticker

    Hi there, I have what I think will probably be a simple issue. I have installed a news ticker for a website I am designing. I follow the instructions and have this in my html file <script> $(window).load(function(e) { $("#bn1").breakingNews({ effect :"slide-h", autoplay :true...
  2. GOSCO

    JQUERY Animate width using variable

    I think I made a silly mistake: I set width 0 first and then animated: $(this).css("width", "0"); now it works :)
  3. GOSCO

    JQUERY Animate width using variable

    Good evening, Please can someone help me with this code? I'm just trying to animate the width of a progress bar based on a variable, the code works fine if I write this: $(this).animate({width:"100px"},350); so I think it is just a syntax problem but I can't for the life of me figure it out...
  4. GOSCO

    Boot process tutorial

    Hi thanks for the replies. I will give those links a go.
  5. GOSCO

    Boot process tutorial

    Can anyone recommend a good resource that clearly discusses and explains the boot process BIOS > MBR > BOOT LOAD etc etc. I have found a few articles on the web but information seems fragmented. Maybe a book that deals with the subject or something like a CBT video I can purchase. Thanks in...
  6. GOSCO

    Handling Errors

    Thanks sounds like im on the right lines.
  7. GOSCO

    Handling Errors

    Im using the uflex class to handle users on an intranet im making. I want to handle users that are not logged in, which means: $user->data['group_id'] is not set is it appropriate to use the following code or is there a better way? if (isset($user->data['group_id']) &&...
  8. GOSCO

    New Sharepoint Intranet

    Hi im looking into setting up an intranet for our office approx 50 users. Im looking at sharepoint but im getting confused with all the different options available! Is there anyone that can give me some advice basically im looking at setting up a document repository and contacts site and...
  9. GOSCO

    Sending email via exchange using proxy.

    Hi thanks in that case I would be looking at using something along the lines of session.logon PROFILE, PASSWORD to add the username password if outlook is not running. I guess the code above won't be expected to work over a http proxy? In which case are there any alternatives?
  10. GOSCO

    Exchange server Proxy address when configuring outlook

    Ok I found this explanation on the web: Principles of RPC over HTTP Proxy RPC over HTTP Proxy Exchange 2003 new feature Back to basics. RPC means remote procedure call and while this technology has been around a long time, there is a new twist in Exchange 2003. Let me explain; in this...
  11. GOSCO

    Sending email via exchange using proxy.

    Hi strongm, Thanks for the assistance. I don't think that will work because I cannot telnet to the IP address on port 25. Is there any other way I can do this or should I look at vb script that sends through outlook.
  12. GOSCO

    Email with Outlook

    I can confirm this doesn't happen with outlook 2007.
  13. GOSCO

    Sending email via exchange using proxy.

    I can use somthing like this to open outlook and send that way though I still need to enter a password for the proxy server if outlook is not already open... [code] Set MyApp = CreateObject("Outlook.Application") Set MyItem = MyApp.CreateItem(0) 'olMailItem set session =...
  14. GOSCO

    Sending email via exchange using proxy.

    Hi I have an off site exchange server that is setup using a http proxy can I amend the following code to send e-mail using this exchange server? dim msgTo, msgFrom, sMailServerName, msgTxt, msgAttPath 'set data for msg msgTo = "test.mail@domain.com" 'test@qwerty.com"...
  15. GOSCO

    Exchange server Proxy address when configuring outlook

    Is the purpose of an exchange server proxy address to ensure the exchange server ip address cannot be resolved unless authenticated? Are there any other reasons?

Part and Inventory Search

Back
Top