FSCommand doesn't call vbscript in Vista IE7

Hey All,
I have web application with small flash movies which call to
FSCommand though VBScript. In IE6/7 in XP everything works OK about
2 years.
Now, we encounter with new problem that the same code doesn't
work in Vista (SP0 and SP1) IE7. The problem is that "movie"
parameter is a full URL address. When I set local file path it
works fine.
Please, see attached code examples.
Just last movie is working.....
Please, help me with this issue.
Thanks

I have the same problem as well, my new laptop doesn't recognize my ipod touch either(16gb) though i plugged my brother's ipod shuffle on an my laptop picked it up. The only difference between my old comp (that picked up my itouch) and my laptop is that the laptop has vista and my pc has xp. The only thing i could think of doing would be redownloading the driver for my itouch to my laptop but i couln't find anything to that nature.
Message was edited by: deltronn

Similar Messages

  • Why doesn't calls to my iPhone ring through to my Mac?

    Why doesn't calls to my iPhone ring through to my Mac?

    The following have the requirements and settings and some troubleshooting information:
    Connect your iPhone, iPad, iPod touch, and Mac using Continuity - Apple Support
    Get help using Continuity with iOS 8 and OS X Yosemite - Apple Support

  • Oracle Application Server Patchset 10.1.2.3 (Vista + IE7 + Forms Support)

    Does anybody have a clue as to when Oracle will be releasing the 10.1.2.3 patchset for Application Server 10G R2.
    We were under the impression that November 2007 was the release month, however from Metalink and other sources it seems that now we are looking at the first quarter of 2008.
    Ther matrix located at http://www.oracle.com/technology/products/forms/htdocs/10gR2/clientsod_forms10gR2.html is over 6 months old.
    Oracle at Open World a few weeks ago announced that Vista IE7 is certified with their own ERP which also uses Forms, hence this contradicts the fact that Vista IE7 is not supported till patchset 10.1.2.3. Does anybody know what the hold up could be
    Thank you for your replies

    If you contact Oracle Support, they can give you an estimated release date. This will be a 'no sooner than' release date. Releases may always slip if issues have been found that need to be fixed before the patchset is released to the public.

  • Does flex can call vbscript function ?

       i am not sure does flex or action script can call vbscript function .
    how can i get detail information . thank you!

    Adobe does not provide such a capability.  Folks have created ways to call
    Java I believe, and ExternalInterface will call JavaScript.  And you can use
    sockets.  And NativeProcess from AIR apps.

  • Bdc_insert doesn't call

    i have created a bdc for transaction f-43. when i used it for call trasaction then it works successfully but when i use session method then an error occured. the functiom module (bdc_insert) doesn't call.  session is generated but log doesn't generated . can anyone help me?

    REPORT ZWT_MONTH_CONTRIBUTION_UPLOAD
           NO STANDARD PAGE HEADING LINE-SIZE 255.
    TYPE-POOLS : TRUXS.
    TYPES: BEGIN OF TS_WAGETYPE,
             ROW              TYPE I,
             TEMP(10)         TYPE C  
             PERSONNEL_NO(10) ,
             WAGE_TYPE(10)    TYPE C,
             AMOUNT(10)       TYPE C ,
           END OF TS_WAGETYPE.
    TYPES: BEGIN OF TS_FINAL,
            PERSONNEL_NO TYPE PA0001-PERNR,
            BUIS_AREA(10) TYPE C,
            WAGE_TYPE(10) TYPE C,
            AMOUNT        TYPE BSIK-DMBTR,
            NEWUM         TYPE RF05A-NEWUM,
            NEWUM8        TYPE RF05A-NEWUM,
            NEWUM9        TYPE RF05A-NEWUM,
            AMOUNT8       TYPE BSIK-DMBTR,
            AMOUNT9       TYPE BSIK-DMBTR,
            TOTAL_AMOUNT  TYPE BSIK-DMBTR ,
           END OF TS_FINAL.
    TYPES: BEGIN OF TS_MAIN,
             PERSONNEL_NO(10),
             BUIS_AREA(10),
             AMOUNT7(10),
             NEWUM7(2),
             NEWUM8(2),
             NEWUM9(2),
             AMOUNT8(10),
             AMOUNT9(10),
             M_DATE(10),
             TOTAL_AMOUNT(15),
           END OF TS_MAIN.
    TYPES: BEGIN OF TS_PERNR,
            PERSONNEL_NO TYPE PA0001-PERNR,
          END OF TS_PERNR.
    DATA : IT_PAREA    TYPE STANDARD TABLE OF TS_PAREA     INITIAL SIZE 0,
           IT_WAGETYPE TYPE STANDARD TABLE OF TS_WAGETYPE  INITIAL SIZE 0,
           IT_FINAL    TYPE STANDARD TABLE OF TS_FINAL     INITIAL SIZE 0,
           IT_PERNR    TYPE STANDARD TABLE OF TS_PERNR     INITIAL SIZE 0,
           IT_MAIN     TYPE STANDARD TABLE OF TS_MAIN      INITIAL SIZE 0,
           IT_BSIK     TYPE STANDARD TABLE OF TS_BSIK      INITIAL SIZE 0.
    DATA: ITAB LIKE ALSMEX_TABLINE OCCURS 0 WITH HEADER LINE.
    DATA : G_RAW_DATA TYPE TRUXS_T_TEXT_DATA.
    DATA : BEGIN OF BDCDATA OCCURS 0.
            INCLUDE STRUCTURE BDCDATA.
    DATA : END OF BDCDATA.
    DATA : BEGIN OF MESTAB OCCURS 0.
            INCLUDE STRUCTURE BDCMSGCOLL.
    DATA : END OF MESTAB.
    DATA : WA_PAREA       TYPE   TS_PAREA.
    DATA : WA_WAGETYPE    TYPE   TS_WAGETYPE.
    DATA : WA_FINAL       TYPE   TS_FINAL.
    DATA : WA_PERNR       TYPE   TS_PERNR.
    DATA : WA_MAIN        TYPE    TS_MAIN.
    DATA : WA_BSIK        TYPE    TS_BSIK.
    *&                 SELECTION SCREEN
      PERFORM GET_FORMATE_DATE.
      PERFORM GET_BDC_DATA_WAGETYPE.
      ERFORM BDC_F-43_INSERT.
    *&      Form  UPLOADEXCELDATA
          text
    -->  p1        text
    <--  p2        text
    FORM UPLOADEXCELDATA .
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          FILENAME                = PA_FILE
          I_BEGIN_COL             = '1'
          I_BEGIN_ROW             = '3'  "Do not require headings
          I_END_COL               = '6'
          I_END_ROW               = '65536'
        TABLES
          INTERN                  = ITAB
        EXCEPTIONS
          INCONSISTENT_PARAMETERS = 1
          UPLOAD_OLE              = 2
          OTHERS                  = 3.
      LOOP AT ITAB.
        WA_WAGETYPE-ROW = ITAB-ROW.
        APPEND WA_WAGETYPE TO IT_WAGETYPE.
      ENDLOOP.
      DELETE ADJACENT DUPLICATES FROM IT_WAGETYPE COMPARING ROW.
      LOOP AT IT_WAGETYPE INTO WA_WAGETYPE.
        LOOP AT ITAB WHERE ROW = WA_WAGETYPE-ROW.
          IF ITAB-COL = '0002'.
            WA_WAGETYPE-TEMP =  ITAB-VALUE .
            MODIFY IT_WAGETYPE FROM WA_WAGETYPE TRANSPORTING TEMP..
          ELSEIF ITAB-COL = '0003'.
            .        WA_WAGETYPE-PERSONNEL_NO =  ITAB-VALUE .
            MODIFY IT_WAGETYPE FROM WA_WAGETYPE TRANSPORTING  PERSONNEL_NO.
          ELSEIF ITAB-COL = '0004'.
            WA_WAGETYPE-WAGE_TYPE =  ITAB-VALUE .
            MODIFY IT_WAGETYPE FROM WA_WAGETYPE TRANSPORTING WAGE_TYPE.
          ELSEIF ITAB-COL = '0005'.
            WA_WAGETYPE-AMOUNT =  ITAB-VALUE .
            MODIFY IT_WAGETYPE FROM WA_WAGETYPE TRANSPORTING AMOUNT.
          ENDIF.
        ENDLOOP.
      ENDLOOP.
      IF SY-SUBRC <> 0.
        WRITE:/ 'Upload Error ', SY-SUBRC.
      ENDIF.
    ENDFORM.                    " UPLOADEXCELDATA
    *&      Form  GET_BDC_DATA_F43
          text
    -->  p1        text
    <--  p2        text
    FORM GET_BDC_DATA_F43 .
      LOOP AT IT_FINAL INTO WA_FINAL.
        WA_MAIN-PERSONNEL_NO  = WA_FINAL-PERSONNEL_NO.
        WA_MAIN-BUIS_AREA     = WA_FINAL-BUIS_AREA.
        WA_MAIN-AMOUNT7       = WA_FINAL-AMOUNT.
        WA_MAIN-NEWUM7        = WA_FINAL-NEWUM.
        WA_MAIN-NEWUM8        = WA_FINAL-NEWUM8.
        WA_MAIN-NEWUM9        = WA_FINAL-NEWUM9.
        WA_MAIN-AMOUNT8       = WA_FINAL-AMOUNT8.
        WA_MAIN-AMOUNT9       = WA_FINAL-AMOUNT9.
        WA_MAIN-M_DATE        = DATE_H.
        WA_MAIN-TOTAL_AMOUNT  = WA_FINAL-TOTAL_AMOUNT.
        APPEND WA_MAIN TO IT_MAIN.
      ENDLOOP.
    ENDFORM.                    " BDC_F-43_INSERT
    *&      Form  BDC_F-43_INSERT
          text
    -->  p1        text
    <--  p2        text
    FORM BDC_F-43_INSERT .
    PERFORM BDC_OPEN_GROUP.
      LOOP AT IT_MAIN INTO WA_MAIN.
        REFRESH BDCDATA.
        CLEAR   BDCDATA.
        IF WA_MAIN-BUIS_AREA = 'IN'.
          PERFORM BDC_DYNPRO      USING 'SAPMF05A' '0100'.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'RF05A-NEWUM'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '/00'.
          PERFORM BDC_FIELD       USING 'BKPF-BLDAT'
                                         DATE_H_F43.
          PERFORM BDC_FIELD       USING 'BKPF-BLART'
                                        'cp'.
          PERFORM BDC_FIELD       USING 'BKPF-BUKRS'
                                        '044'.
          PERFORM BDC_FIELD       USING 'BKPF-BUDAT'
                                        DATE_H_F43.
          PERFORM BDC_FIELD       USING 'BKPF-MONAT'
                                        I_MONAT .
          PERFORM BDC_FIELD       USING 'BKPF-WAERS'
                                        'INR'.
          PERFORM BDC_FIELD       USING 'BKPF-BKTXT'
                                        'CONTRIBUTION POSTING'.
          PERFORM BDC_FIELD       USING 'FS006-DOCID'
          PERFORM BDC_FIELD       USING 'RF05A-NEWBS'
                                        '39'.
          PERFORM BDC_FIELD       USING 'RF05A-NEWKO'
                                         WA_MAIN-PERSONNEL_NO.
          PERFORM BDC_FIELD       USING 'RF05A-NEWUM'
                                        WA_MAIN-NEWUM7.
          PERFORM BDC_DYNPRO      USING 'SAPMF05A' '0303'.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'RF05A-NEWUM'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '/00'.
          PERFORM BDC_FIELD       USING 'BSEG-WRBTR'
                                        WA_MAIN-AMOUNT7.
          PERFORM BDC_FIELD       USING 'BSEG-GSBER'
                                        'PF01'.
          PERFORM BDC_FIELD       USING 'BSEG-ZFBDT'
                                         DATE_H_F43.
          PERFORM BDC_FIELD       USING 'RF05A-NEWBS'
                                        '39'.
          PERFORM BDC_FIELD       USING 'RF05A-NEWKO'
                                         WA_MAIN-PERSONNEL_NO.
          PERFORM BDC_FIELD       USING 'RF05A-NEWUM'
                                        WA_MAIN-NEWUM8.
          PERFORM BDC_DYNPRO      USING 'SAPMF05A' '0303'.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'RF05A-NEWUM'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '/00'.
          PERFORM BDC_FIELD       USING 'BSEG-WRBTR'
                                        WA_MAIN-AMOUNT8.
          PERFORM BDC_FIELD       USING 'BSEG-GSBER'
                                        'PF01'.
          PERFORM BDC_FIELD       USING 'BSEG-ZFBDT'
                                         DATE_H_F43.
          PERFORM BDC_FIELD       USING 'RF05A-NEWBS'
                                        '39'.
          PERFORM BDC_FIELD       USING 'RF05A-NEWKO'
                                         WA_MAIN-PERSONNEL_NO.
          PERFORM BDC_FIELD       USING 'RF05A-NEWUM'
                                       WA_MAIN-NEWUM9.
          PERFORM BDC_DYNPRO      USING 'SAPMF05A' '0303'.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'RF05A-NEWKO'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '/00'.
          PERFORM BDC_FIELD       USING 'BSEG-WRBTR'
                                        WA_MAIN-AMOUNT9.
          PERFORM BDC_FIELD       USING 'BSEG-GSBER'
                                        'PF01'.
          PERFORM BDC_FIELD       USING 'BSEG-ZFBDT'
                                         DATE_H_F43.
          PERFORM BDC_FIELD       USING 'RF05A-NEWBS'
                                        '01'.
          PERFORM BDC_FIELD       USING 'RF05A-NEWKO'
                                        '1000511'.
          PERFORM BDC_DYNPRO      USING 'SAPMF05A' '0301'.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'BSEG-GSBER'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '/00'.
          PERFORM BDC_FIELD       USING 'BSEG-WRBTR'
          PERFORM BDC_FIELD       USING 'BSEG-GSBER'
                                        'PF01'.
          PERFORM BDC_FIELD       USING 'BSEG-ZFBDT'
                                        DATE_H_F43.
          PERFORM BDC_DYNPRO      USING 'SAPMF05A' '0301'.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'BSEG-WRBTR'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '=BU'.
          PERFORM BDC_FIELD       USING 'BSEG-WRBTR'
                                        WA_MAIN-TOTAL_AMOUNT.
          PERFORM BDC_FIELD       USING 'BSEG-GSBER'
                                        'PF01'.
          PERFORM BDC_FIELD       USING 'BSEG-ZFBDT'
                                         DATE_H_F43.
         PERFORM BDC_TRANSACTION USING 'F-43'.
           PERFORM BDC_INSERT .
       PERFORM BDC_TRANSACTION USING 'F-43'.
       ENDIF.
      ENDIF.
      ENDLOOP.
       PERFORM CLOSE_GROUP.
    ENDFORM.                    " GET_BDC_DATA_F43
    *&      Form  bdc_dynpro
          text
         -->P_0174   text
         -->P_0175   text
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      CLEAR BDCDATA.
      BDCDATA-PROGRAM  = PROGRAM.
      BDCDATA-DYNPRO   = DYNPRO.
      BDCDATA-DYNBEGIN = 'X'.
      APPEND BDCDATA.
    ENDFORM.                    "BDC_DYNPRO
           Insert field                                                  *
    FORM BDC_FIELD USING FNAM FVAL.
      CLEAR BDCDATA.
      BDCDATA-FNAM = FNAM.
      BDCDATA-FVAL = FVAL.
      APPEND BDCDATA.
    ENDFORM.                    "BDC_FIELD
    *&      Form  bdc_transaction
          text
         -->P_0479   text
    FORM BDC_TRANSACTION  USING  TCODE.
      CALL TRANSACTION TCODE USING  BDCDATA
                      MODE CTUMODE
                      UPDATE 'A'
                      MESSAGES INTO MESTAB.
    ENDFORM.                    " bdc_transaction
    *&      Form  OPEN_GROUP
          text
    -->  p1        text
    <--  p2        text
    FORM OPEN_GROUP .
      B_GROUP = 'PF'.
      SKIP.
      WRITE: /(20) 'Create group'(I01), B_GROUP.
      SKIP.
       open batchinput group
      CALL FUNCTION 'BDC_OPEN_GROUP'
        EXPORTING
          CLIENT = SY-MANDT
          GROUP  = B_GROUP
          USER   = SY-UNAME
          KEEP   = 'X'.
      WRITE: /(30) 'BDC_OPEN_GROUP'(I02),
              (12) 'returncode:'(I05),
                   SY-SUBRC.
    ENDFORM.                    " OPEN_GROUP
    *&      Form  BDC_INSERT
          text
    -->  p1        text
    <--  p2        text
    FORM BDC_INSERT .
      CALL FUNCTION 'BDC_INSERT'
        EXPORTING
          TCODE     = 'F-43'
        TABLES
          DYNPROTAB = BDCDATA.
      REFRESH BDCDATA.
    ENDFORM.                    " BDC_INSERT
    *&      Form  CLOSE_GROUP
          text
    -->  p1        text
    <--  p2        text
    FORM CLOSE_GROUP .
      CALL FUNCTION 'BDC_CLOSE_GROUP'.
      WRITE: /(30) 'BDC_CLOSE_GROUP'(I04),
              (12) 'returncode:'(I05),
                   SY-SUBRC.
    ENDFORM.                    " CLOSE_GROUP

  • Adobe Flash Player 10 Fix for WinXP and Vista, IE7, IE8, Firefox, ect.(New Fast Fix)

    (This is a possible solution for most users) I have found that inside the folder C:\WINDOWS\system32\Macromed\Flash (WinXP Home/Pro) (Computer > C: Drive > Windows > System32 > Macromed > Flash for Vista) there should be a file named FlashUtil10b.exe (IF NOT YOU SHOULD UPDATE AS SPECIFIED!) (or FlashUtil10a.exe or for older versions something similar depending on your version), which is the update utility for flash player. Click on this and if it updates, you will have to restart your computer. This should fix any missing files, and update you to the latest version.
    On a side note to all those who read this, I downloaded and installed 5 different times, the same version, from different websites, all for the "new" flash version, and they didn't work (this also included trying to update Shockwave player itself). Apparently, going directly to the website and downloading a new version of Adobe Flash Player, and installing, doesn't uninstall the older version, (though it says it does nor does the uninstaller work directly from the website) nor fixes the problem. I assume they are aware of this problem, because they included this bug fix in revision 10b. This fix should work for those of you whom cannot view/see flash images as well. There also appears to be a bug/reference problem with the installation of IE8 giving the error "Missing Shockwave Decompression XTRA", when trying to play a Shockwave/Flash file, which seems also to affect Firefox and other browsers. It doesn't recognize that the folder or files that it needs in it, exist. I never had his problem before, until IE8 was installed. I checked which version I had in the system32 folder and found this updater built in to Adobe. Version 10a does NOT automatically update, but version 10b includes this fix. I currently had version 10a when I received this error, and began digging for a solution. Doing the update as described above fixed the problem, and updated it to version 10b.
    The new flash version 10b has some new features, such as volume control, auto-updating, and several rendering options for those who may have a faster or slower computer/video card.
    I found this works great for XP users but unsure of the Vista users. The process is the same  for Vista and the update should still work the same, as long as you run it as Administrator, I assume. I have this also posted on wwwdslreports.com at http://www.dslreports.com/forum/r22115254-IE-IE8-and-Adobe-Flash-Question and here http://www.dslreports.com/forum/r22361930-Adobe-Flash-Player-10-Fix-for-WinXP-IE 8-Firefox-ect. It appears to work for everyone so far. I have not heard of any problems from users with this problem running the RC (Release Canidate) for Windows 7 yet.
    I hope this works to your benefit.
    Please leave a reply to help Adobe and other users know if this fix worked for you or not. If not, please explain what you did, and the effects your seeing, including operating system, site of the flash file trying to view, browser type (ex. IE6, IE7, IE8, Firefox, Opera, ect.), and I will try to help you as best I can.
    (I would strongly recommend those not using IE8, or Firefox 3.5, get the updated versions)
    If your looking for uninstallers go to this site: http://kb2.adobe.com/cps/141/tn_14157.html
    If your looking for a true full install, you can download this developer version for Windows and Mac: http://download.macromedia.com/pub/flashplayer/updaters/10/flash_player_update2_flash10.zi p (44MB) (If you download this, I would recommend you still follow my instructions for the Flash Utility before restarting your computer.)

    I would recommend all users having problems try the above solution first.
    I have posted this on a couple of websites, and so far it has fixed everyones problems.
    Firefox 3.5 Beta 4 has Adobe Flash Player coding built into the browser so that it not only loads faster but works better.
    You still need to have the Adobe ActiveX plug-in and Adobe Flash Player for both browsers.
    I would also recommend you download Shockwave Player 11.
    IE8 has tried this as well, but it still has a couple bugs in it.
    If you have IE8 or FireFox 3.5 Beta 4, and you are still having problems, then I recommend that you go to www.windowsupdate.com and get all of the latest updates (including SP3), then try this fix again.
    Your auto-updater built into windows (If you even have it on) doesn't always pull down every update available for your computer. It only pulls down the manditory ones.
    Sometimes you HAVE to go to the website and manually get them yourself. I recommend when you go to the website, you click on custom install and pick every last one of them to install, which includes, hardware and software fixes for your computer.
    What a lot of people don't know is that when you have installed and tried all of the recommended fixes that Adobe gives you, and it still doesn't work, is that you are having registry conflicts within your Operating System (OS ex. WinXP, Vista, Linux, ect.), and that it is not the Adobe software at all.
    Those are usually repaired by making sure your computer stays up to date.
    The fact is the computer world is changing so rapidly that everyone can't keep up. You have to check for updates weekly.
    If you fall behind on those updates, then you start having problems with your computer and/or software.
    One problem then can turn into many and people get frustrated when something all the sudden just quits working.
    Take a day or two at least once a month, and make sure you update and maintain your computer.
    This includes disk defragmenting, disk cleanup, and making sure you have all the lastest updates.
    You can get to Disk Defrag, and Disk Cleanup by going to Start, All Programs, Accessories, then to System Tools.
    I would do Disk Cleanup first, then Defrag.
    I hope you take this advise into consideration, and that it is very helpful for you.
    If you find this useful, please come back and reply to this forum, and let everyone know so that others will be encouraged to do this.
    Thanks and goodluck, from another user like you.

  • Forms with MS Vista/IE7

    Hi,
    SunGard's Banner University system uses Oracle Forms. One of our engineers was able to get Forms working on that system with Vista and IE7 -- our app server is 10gas 10.1.2.2. He was able to get a workstation with Vista and IE 7 to work with Forms by tracing the error from Jinitiator 1.3.1.26 he stated that " the npjinit13126.dll was calling jvm.dll out of the C:\Program Files\Oracle\JInitiator 1.3.1.26\bin\hotspot directory-- this jvm.dll was throwing the exception. I replaced the jvm.dll with a newer jvm.dll 6.0.0.105. I tested INB (Banner speak for internet native forms) and found the forms to function normally. Had some Banner users here in HR try it out and so far no problems to report..."
    Wonder if anyone else has seen this workaround or wants to test it in their devel or test environment.
    If nothing else, it may at least give desperate Vista users a workaround for the short term before a permanent fix comes--any more word on when Sun/Oracle are coming out with that?
    Thanks,
    Pat Miller
    University of Notre Dame

    What you have done is basically install 1.6 of Sun's plug-in in a way that we have not certified. And we have not certified 1.6 yet! Why not just install 1.6 directly. At least you know that the plug-in works. We are planning Vista support with 1.5 for 10.1.2.3 of Forms which is planned for the summer (June-July).
    Having said that, I have seen other people do this and it seems to work. Good luck with getting Support if a problem only reproduces with this "hacked" version of JInitiator though.

  • Install disk doesn't work with Windows Vista

    I just bought a new HP Color LaserJet Pro MFP M277dw and the install disk isn't compatible with Windows Vista.  Apparently there's no ful feature option for Windows Vista on an HP laptop.  After several hours of work I downloaded several drivers and got the printer to print, but the scan function doesn't work that well without the HP software which hasn't been created for Windows Vista.

    I am having a very similar problem but do not have an answer either.  I am running an X61 Type 7676A12 with a Lenovo ACP50 port replicator FRU part number 40Y8160.  I am running Windows XP Pro.  The port replicator has never been very great and would not restore the external monitor picture properly when the laptop had been in sleep mode however it was serviceable if not optimal.  After downloading and installing the October MS security updates the machine would get a BSOD when the port replicator was plugged in.  Remove the replicator and reboot and it worked ok.  Plug it in again and BSOD.  I tried upgrading the drivers from 5.1.4a to 7.1.1.03Aug07 and then to 7.1.2.  No go.  Emailing Targus with the problem got no response.  The port replicator is now relegated to my junk heap of useless rubbish.

  • Satellite A205-S4607 doesn't start after windows vista update

    Hello,
    I was installing windows vista updates, but the battery was low and the computer turned off, then, the computer doesn´t start, only the hard disc led is light but the screen is black, please can you help me?
    The model is Satellite A205 -S4607

    Thanks for your advice, but the problem is very complicate, the computer doesn't boot up, only the led te HD is ligthing, I removed the HD and the memory but doesn't work, I've read that the problem could be the bios, and the recomendation is remove the battery of the board to reset the bios, but I think it is very dangerous.
    Message was edited by: Nvillegas

  • Ipod doesn't show in itunes, vista installed, also, thinks it's syncing...

    I really don't know what to put for a subject! Itunes and my ipod shuffle ran perfectly under Windows XP. I have a LOT of music successfully loaded (from itunes purchases and my own cds) on the 'pod. It plays fine. Problem is, computer bit the dust. I decided to upgrade to Vista instead of reloading XP (couldn't find the **** CDs to reinstall XP). Now, my ipod doesn't show up in itunes and I get that **** "ipod is synced with another library.. do you want to erase this ipod and sync with "this" itunes lib." box. "This" itunes library consists only of songs I've purchased from itunes.... none of the cd music is there. and the only option that itunes seems to be giving me is to blow away what's on my 'pod now and install the tiny library of itunes purchases. The wierd thing is, it's all on the same **** computer... just the OS changed (from XP to Vista).
    What I WAMT to do is somehow get itunes to see my 'pod and copy the music that's on my pod back into itunes where it all came from in the first place and put my latest itunes purchases (since changing OS's) on my 'pod. Jeeze. sounds so simple. Unbelieveable.
    tk
    TIA for any help.
    HP Pavilion 523n   Other OS   running Vista

    In iTunes, go to the File Menu and select the 'Add to Library' option.
    In the window that appears navigate to the folder that has all the music from the old version of iTunes (i.e. where the music is currently stored on your computer), and select the folder.
    This should then add all the music back into your iTunes (it may make a copy)
    You will now be able to connect your iPod and let it sync to the computer.
    Ian

  • Vista, IE7 and Virtual Office (VO) or Remote Manager

    A Windows Vista laptop (Vista Business Edition) is trying to browse to the Virtual Office web page published by their Novell SBS 6.5 server using IE7. Nothing appears in the browser. If I look at the source for the page, there is a bit of code showing, referencing a Java script. I get the same result when I try to use the Netware Remote Manager web page at http://servername:8008 or https://servername:8009. It is the same if I use the server's IP address instead of a resolvable name. The browser windows says "Connecting" and the status line shows "Waiting for 10.170.170.5"
    I loaded up Firefox, and after allowing a Certificate Exception, I am able to browse to the server's Virtual Office page from the same computer.
    I have installed the Certificate from the server into the Trusted Publishers container, I have set both the http://servername and https://servername into the trusted sites list.
    What else do I need to do in Vista to get the web page to work?

    The answer is to turn off TLS 1.0 in the Advanced Internet Options
    page.
    Warren
    On Wed, 06 May 2009 01:56:01 GMT, WFRUSH
    <[email protected]> wrote:
    >
    >A Windows Vista laptop (Vista Business Edition) is trying to browse to
    >the Virtual Office web page published by their Novell SBS 6.5 server
    >using IE7. Nothing appears in the browser. If I look at the source for
    >the page, there is a bit of code showing, referencing a Java script. I
    >get the same result when I try to use the Netware Remote Manager web
    >page at http://servername:8008 or https://servername:8009. It is the
    >same if I use the server's IP address instead of a resolvable name. The
    >browser windows says "Connecting" and the status line shows "Waiting for
    >10.170.170.5"
    >
    >I loaded up Firefox, and after allowing a Certificate Exception, I am
    >able to browse to the server's Virtual Office page from the same
    >computer.
    >
    >I have installed the Certificate from the server into the Trusted
    >Publishers container, I have set both the http://servername and
    >https://servername into the trusted sites list.
    >
    >What else do I need to do in Vista to get the web page to work?

  • Call vbscript from Apex button

    I have added a vbscript to the header section of my page and I'm trying to call this from a button. Is this possible? Can anyone post an example of how this would be done. I've tried calling from the URL redirect section, along with many other things and can't get anything to work. I'm not sure if I added in the header wrong or if I'm calling it wrong.
    Thanks

    What about placing outputs from the procedure to fields on the form?
    Here is the procedure I have created:
    procedure vatTotal (Order_no IN number,Total2 OUT number)
    AS
    CURSOR c_vatTotal is
    select order_line.quantity, gre_product.cost from ord, gre_product, order_line where ord.order_no = order_line.order_no AND
    gre_product.prod_no = order_line.Product_no;
    Total number;
    begin
    Total:= 0;
    for c_record in c_vatTotal loop
    Total := Total + c_record.quantity * c_record.cost;
    end loop;
    Total2 := Total;
    end;
    I believe this is correct. It compiles.
    I tried using Total as an out parameter but received the "duplicate fields in RECORD, TABLE or argument list are not permitted" error.

  • Bat files calling droplets in Vista

    Has anyone experienced problems calling bat files with droplets in them? I'm new to vista, so I don't know if it's a photoshop or vista thing....

    Post the line in your batch file that calls your droplet.
    -X
    for photoshop scripting solutions of all sorts
    contact: [email protected]

  • Is there any way to call VBscript from java code

    hi all
    i have a question about calling a VBscript from my java code. can we do that in java? if so, any sample i can look at it. thanks in advance.

    it is not the scripting used in the browser. it is
    the scripting that builds VB program used in MS SQL
    server like the bulk loader. i need to call this
    loader to load xml data into the database.So you have a .vbs file that you want to execute?
    Runtime.getRuntime().exec("cmd.exe /C start " + fileName);
    Where fileName = the path to your .vbs file.

  • Can't find Time Capsule with Vista/IE7

    I have an iMac and a Windows Vista Laptop with IE7. Although my notebook is online using my Time Capsule wireless network, I can't see the TC or any Bonjour icon. I have the most recent Bonjour software installed, as well as Java. Any hints?

    Have you set the workgroup name in AirPort Utility? Enter manual setup, go to Disks > File Sharing, and enter the workgroup that your Vista machine is a part of. Also, be sure to add your Time Capsule's IP address onto the trusted networks/zones list of any software firewall you have installed.

Maybe you are looking for

  • Same username and password in different domain cannot be auth.

    I created 2 domains with a user created into each domain. The users have same username and password, like below Domain1: user1 (password) Domain2: user1 (password) Then I create 2 policy sets PolicySet1 with Domain1 and add a policy (called Policy1) 

  • FBL3N_MASS CHANGE

    Dear : we want to user the FBL3N to change the document line items field _reason code. but when we use the "MASS CHange", the system didn't allow . when I use anather one's id to change the same document numbers , it is ok. so i want to consult that

  • Only users with admin privileges can connect to shares

    i have set up a 10.6.4 server but only admin users can see the shares. other users can connect but no shares appear. (their connection appears in the log and on 10.3.9 you get a blank list of shares available) i do have the users set via POSIX as the

  • GeoRaster theme: no rendered images

    I have loaded/validated a georaster. It appears fine in the GeoRasterViewer, and the spatial extent appears fine as a vector theme in Mapviewer. But addGeoRasterTheme in my jsp results in the log warning: "GeoRaster theme [themename] has no rendered

  • Changes to XML file

    Hello, I have a XML file and I need to apply chnges to an attribute and save the xml file (using JDom). How do I do it? , I've looked all over for an example for this simple problem but did not find it ( I've wrote the part of reading from the Xml an