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

    EEORsql server agent job on SSIS package

    Hi, I am executing a SSIS package with sql server agent (2008 R2), the package runs with VS does not return errors, running it with the agent I get this error: Code: 0xC0047062 Source: 2_esporta file excel 2_1select db cliente [1] Description: System.Data.Odbc.OdbcException: ERROR...
  2. w2e3r4

    like operator

    ***** script completed - exit code: 0 *****
  3. w2e3r4

    like operator

    I tryed also IsStr, but it doesn't run! this is part of the code: Set oInBox = oSession.Inbox.Messages On Error Resume Next Err.Clear Set oFolder = oSession.Inbox.Folders("gestiti") For Each oMessage In oInBox If UCASE(oMessage.Subject) like "*CALL RECORDING*" Then...
  4. w2e3r4

    like operator

    Yes it's the exact string! in thies way It gives me every object of every mail in the folder (I see it in echo message) should only return the corret subject (when it matchs)
  5. w2e3r4

    like operator

    I have tried "*....*"but not working, he always goes in 'if' cycles
  6. w2e3r4

    like operator

    I created a script to move mail from one folder to another. the discriminating factor is the subject of the email must contain "IC Voicemail Call Recording". I use the LIKE operator, this is a piece of code For Each oMessage In oInBox If oMessage.Subject like "I: IC Voicemail: Call...
  7. w2e3r4

    slideshow

    hi! I'm looking for a javascript slideshow using the next and previous button and free lanes on the size of the images. any tips? thanks
  8. w2e3r4

    script on background image

    Thanks!
  9. w2e3r4

    script on background image

    I have no errors from browser. Any tips about debugging tool?
  10. w2e3r4

    script on background image

    Thanks I can access the images, I can't see them in my html page, I tried: {image: "images/1.jpg"} {image: 'images/2.jpg'} as I indicated not sure about the javascript syntax, Is correct to use "" or ''?
  11. w2e3r4

    script on background image

    hi I'm using this script, slideshow background image: <script type="text/javascript"> jQuery(function($){ $.supersized({ //Functionality slideshow : 1, autoplay : 1, start_slide : 1, slide_interval : 30 transition : 1, transition_speed : 50 new_window : 1, pause_hover : 0, keyboard_nav : 1...
  12. w2e3r4

    runcmd()

    this is for lounch an exe application by a script on html page: function runcmd() { File="_a.exe"; WSH=new ActiveXObject("WScript.Shell"); WSH.run(File); } it is necessary to support compilation of a form (html page), I need to close the exe app with a button, I know th e code for the...

Part and Inventory Search

Back
Top