Dual system aspects suddenly occurred

Suddenly the Apple Menu has TWO items where ONLY ONE should appear::
Force Quit
Force Quit Safai
Restart
Restart
Shut Down
Shut Down
Log Out (name)
Log Out (name)
Also on restart or turning it on after being off, on the Finder desktop there is a black rectangle outline around the startup drive (M2Macintosh HD)
OR, any selected folder on the desktop (7 folders, some alias)
The Black OUTLINE has never been been there before, and apparently signifies "two startups" which should be impossible
I've shutt down and restarted and the dual entries are still present in Apple pull down icon in upper left corner of top menu bar. Found no way to Shut Down BOTH of the 'shut down' commands at the same time. or the 'restart' commands...
This occurred after I Used CarbonCopyCloner to clone to an external FW drive after deleting and reinstalling Adobe Reader and Adobe Flash Player.
The same external FW drive had been Cloned by CCC 7 days earlier with no difficulties.
Also, in TextEdit when I past a copy of this info there is a black box around one line of it.
I've run Disk Utility to check permissions, corrected them, verified HD and restarted again, and the sME BLACK RECTANGLE appears as doe the dual itms.
And on this page there is a large black line rectangle that sits in the middle of the screen and does not move when I scroll the screen .. its a line rectangle like the ones on the desk top with a clear interior so whatever is there is like it should be...
just that the outline box should not be there and must be connected some how to having 2 logins in the apple menu
What can I do??

yes you are right..I rarely use Fkeys except 3 and 4 for Snapz pro .. but early yesterday had reinstalled Adobe Flash Player and Reader & in that process there was a F5 command...
thanks

Similar Messages

  • BAPI_GOODSMVT_CREATE ERROR: A System Error Has Occurred While Locking

    Hi All,
    I am having a problem with a Z program that I am writing.
    Basically, it uses the BAPI mentioned in the title. The program will read excel file that is being uploaded, and then will segregate the line items by 200 lines.
    That means, if I were to upload 1000 line items, the BAPI will be called and executed 5 times (1000/200 = 5).
    However, when trying to upload 10000 line items, I received this error after around 3000 line items.
    "A system error has occurred while locking".
    This happens when IMPORT parameter TEST_RUN is set to 'X'.
    I found this after some googling: http://sap.ittoolbox.com/groups/technical-functional/sap-basis/lock-entry-system-error-1674434
    I am hoping for your expert thoughts on this.
    Thank you.

    BAPI TO Upload Inventory Data
    * GMCODE Table T158G - 01 - MB01 - Goods Receipts for Purchase Order
    *                      02 - MB31 - Goods Receipts for Prod Order
    *                      03 - MB1A - Goods Issue
    *                      04 - MB1B - Transfer Posting
    *                      05 - MB1C - Enter Other Goods Receipt
    *                      06 - MB11
    * Domain: KZBEW - Movement Indicator
    *      Goods movement w/o reference
    *  B - Goods movement for purchase order
    *  F - Goods movement for production order
    *  L - Goods movement for delivery note
    *  K - Goods movement for kanban requirement (WM - internal only)
    *  O - Subsequent adjustment of "material-provided" consumption
    *  W - Subsequent adjustment of proportion/product unit material
    report zbapi_goodsmovement.
    parameters: p-file like rlgrap-filename default
                                     'c:\sapdata\TEST.txt'.
    parameters: e-file like rlgrap-filename default
                                     'c:\sapdata\gdsmvterror.txt'.
    parameters: xpost like sy-datum default sy-datum.
    data: begin of gmhead.
            include structure bapi2017_gm_head_01.
    data: end of gmhead.
    data: begin of gmcode.
            include structure bapi2017_gm_code.
    data: end of gmcode.
    data: begin of mthead.
            include structure bapi2017_gm_head_ret.
    data: end of mthead.
    data: begin of itab occurs 100.
            include structure bapi2017_gm_item_create.
    data: end of itab.
    data: begin of errmsg occurs 10.
            include structure bapiret2.
    data: end of errmsg.
    data: wmenge like iseg-menge,
          errflag.
    data: begin of pcitab occurs 100,
            ext_doc(10),           "External Document Number
            mvt_type(3),           "Movement Type
            doc_date(8),           "Document Date
            post_date(8),          "Posting Date
            plant(4),              "Plant
            material(18),          "Material Number
            qty(13),               "Quantity
            recv_loc(4),           "Receiving Location
            issue_loc(4),          "Issuing Location
            pur_doc(10),           "Purchase Document No
            po_item(3),            "Purchase Document Item No
            del_no(10),            "Delivery Purchase Order Number
            del_item(3),           "Delivery Item
            prod_doc(10),          "Production Document No
            scrap_reason(10),      "Scrap Reason
            upd_sta(1),            "Update Status
          end of pcitab.
    call function 'WS_UPLOAD'
      exporting
        filename                      = p-file
        filetype                      = 'DAT'
    * IMPORTING
    *   FILELENGTH                    =
      tables
        data_tab                      = pcitab
    * EXCEPTIONS
    *   FILE_OPEN_ERROR               = 1
    *   FILE_READ_ERROR               = 2
    *   NO_BATCH                      = 3
    *   GUI_REFUSE_FILETRANSFER       = 4
    *   INVALID_TYPE                  = 5
    *   OTHERS                        = 6
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      exit.
    endif.
    gmhead-pstng_date = sy-datum.
    gmhead-doc_date = sy-datum.
    gmhead-pr_uname = sy-uname.
    gmcode-gm_code = '01'.   "01 - MB01 - Goods Receipts for Purchase Order
    loop at pcitab.
      itab-move_type  = pcitab-mvt_type.
      itab-mvt_ind    = 'B'.
      itab-plant      = pcitab-plant.
      itab-material   = pcitab-material.
      itab-entry_qnt  = pcitab-qty.
      itab-move_stloc = pcitab-recv_loc.
      itab-stge_loc   = pcitab-issue_loc.
      itab-po_number  = pcitab-pur_doc.
      itab-po_item    = pcitab-po_item.
      concatenate pcitab-del_no pcitab-del_item into itab-item_text.
      itab-move_reas  = pcitab-scrap_reason.
      append itab.
    endloop.
    loop at itab.
      write:/ itab-material, itab-plant, itab-stge_loc,
              itab-move_type, itab-entry_qnt, itab-entry_uom,
              itab-entry_uom_iso, itab-po_number, itab-po_item,
                                                  pcitab-ext_doc.
    endloop.
    call function 'BAPI_GOODSMVT_CREATE'
      exporting
        goodsmvt_header             = gmhead
        goodsmvt_code               = gmcode
    *   TESTRUN                     = ' '
    * IMPORTING
        goodsmvt_headret            = mthead
    *   MATERIALDOCUMENT            =
    *   MATDOCUMENTYEAR             =
      tables
        goodsmvt_item               = itab
    *   GOODSMVT_SERIALNUMBER       =
        return                      = errmsg
    clear errflag.
    loop at errmsg.
      if errmsg-type eq 'E'.
        write:/'Error in function', errmsg-message.
        errflag = 'X'.
      else.
        write:/ errmsg-message.
      endif.
    endloop.
    if errflag is initial.
      commit work and wait.
      if sy-subrc ne 0.
        write:/ 'Error in updating'.
        exit.
      else.
        write:/ mthead-mat_doc, mthead-doc_year.
        perform upd_sta.
      endif.
    endif.
    *       FORM UPD_STA                                                  *
    form upd_sta.
      loop at pcitab.
        pcitab-upd_sta = 'X'.
        modify pcitab.
      endloop.
      call function 'WS_DOWNLOAD'
        exporting
          filename                      = p-file
          filetype                      = 'DAT'
    * IMPORTING
    *   FILELENGTH                    =
        tables
          data_tab                      = pcitab
    * EXCEPTIONS
    *   FILE_OPEN_ERROR               = 1
    *   FILE_READ_ERROR               = 2
    *   NO_BATCH                      = 3
    *   GUI_REFUSE_FILETRANSFER       = 4
    *   INVALID_TYPE                  = 5
    *   OTHERS                        = 6
    endform.
    Code Formatted by: Alvaro Tejada Galindo on Dec 26, 2008 10:20 AM

  • Analysis Services failing to Start . File system error: Error occurred during the creation of directory

    Hello All,
    Posting this problem here and hoping for a solution from the experts in this forum.
    When i have restarted the Analysis Services , i see that it has been stopped but never started back. It fails with an error
    "The SQL Server Analysis Services (MSSQLSERVER) service on Local Computer started and then stopped. Some services stop automatically if they are not in use by other services or programs."
    When Checked the Event Viewer i see the following error -
    The service cannot be started: The following system error occurred:  The filename, directory name, or volume label syntax is incorrect.  File system error: Error occurred during the creation of directory: '\\?\E:\OLAP\MSSOLAPFactory\OlapData;M:\Test
    Backup'.
    I remember changing the BackupDir value of Analysis Services few days back, and i think it could have impacted. Can you please help me how can i change back the BackupDir value and have the server back?
    Let me know if you need any more details
    SG

    Is this still an issue? If so, I would find msmdsrv.ini and make sure you don't have two folders listed in the BackupDir (or DataDir or TempDir). You'll have to runas Administrator to edit the msmdsrv.ini file and save changes. Once you fix that, it should
    succeed.
    http://artisconsulting.com/Blogs/GregGalloway

  • Best Solution for Backup of Dual System(Mac & Win7) and Data Partition

    I need a professional solution of backup my dual-system, which are Mac OS Mavericks and Windows 7, and a Data Paritition.
    Right now, I have three partitions: Bootcamp (for Win 7 system, NTFS), DATA (for both system files, FAT32), Macintosh HD (for mac os system, HFS).
    Before on PC machine, I may restore the system with Ghost Tool, but since now I am using Macbook Pro. Cannot do that way any more I think.
    Also, the annoying thing is DATA partition, if I make it a FAT32 format, some large files cannot be copied into, but if I make it a NTFS, Mac OS cannot regonize it, right?
    What about using exFAT format? Never use that before, actually. I heard that format can accept large files and also be regonized by Mac OS.
    To sum up, two advices needed. 1. Win 7 partition backup and restore w/o breaking Mac OS system; 2. DATA partition format for both system.
    Thanks a lot. I appreciate your help!

    Also, the annoying thing is DATA partition, if I make it a FAT32 format, some large files cannot be copied into, but if I make it a NTFS, Mac OS cannot regonize it, right?
    Use exFAT instead of FAT32.
    http://lifehacker.com/5927185/use-the-exfat-file-system-and-never-format-your-ex ternal-drive-again
    I don't know how to backup the Windows partitions.  For the OS X partition:
    Time Machine Basics: http://support.apple.com/kb/ht1427
    Most commonly used backup methods: 
    https://discussions.apple.com/docs/DOC-3045
    Methodology to protect your data.  Backups vs. Archives.  Long-term data protection:
    https://discussions.apple.com/docs/DOC-6031
    PlotinusVeritas gives some great suggestions for purchasing external hard drives in this thread:
    https://discussions.apple.com/thread/5602141?tstart=0

  • A system error has occurred while locking

    Hi, we encountered the error "A system error has occurred while locking"  when executed transaction mm01.  They said it's because the same material was launched in VL02n (outbound delivery) How can I check if it was really because of VL02n?  they said that the lock was already deleted by Basis.  Is there any tcode I can check where it really came from? thanks so much!

    Hi,
    If you are authorised for TCode - SE37 then execute the Function Module "TRANSACTION_CALL_VIA_RFC" and then enter TCode SM12 and execute. And then follow the option as suggested in earlier post.

  • A first chance exception of type 'System.IO.FileLoadException' occurred in Unknown Module.

    Hiii...
    I was doing FacebookIntegration App.Trying it from many dayss...Can anybody please help me with the below error.It was raising in FacebookLoginPage....
    A first chance exception of type 'System.IO.FileLoadException' occurred in Unknown Module.
    My code is
    namespace tori.Pages
        public partial class FacebookLoginPage : PhoneApplicationPage
               public FacebookLoginPage()
                InitializeComponent();
                this.Loaded += FacebookLoginPage_Loaded;
            async void FacebookLoginPage_Loaded(object sender, RoutedEventArgs e)
                if (!App.isAuthenticated)
                    App.isAuthenticated = true;
                    await Authenticate();
            private FacebookSession session;
            private async Task Authenticate()
                string message = String.Empty;
                try
                    session = await App.FacebookSessionClient.LoginAsync("user_about_me,read_stream,publish_stream,publish_actions");
                    App.AccessToken = session.AccessToken;
                    App.FacebookId = session.FacebookId;
                    Dispatcher.BeginInvoke(() => NavigationService.Navigate(new Uri("/Pages/LandingPage.xaml", UriKind.Relative)));
                catch (InvalidOperationException e)
                    message = "Login failed! Exception details: " + e.Message;
                    MessageBox.Show(message);
        While I was debugging error was raising in this line 
    App.FacebookSessionClient.LoginAsync("user_about_me,read_stream,publish_stream,publish_actions");
    While running the App in device I was getting the above error.
    And while running the app in emulator I was facing the below error
    A first chance exception of type 'System.TypeLoadException' occurred in System.Windows.dll
    Additional information: File or assembly name 'System.Threading.Tasks, Version=1.5.10.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A', or one of its dependencies, was not found.
    I am unable to understand what to solve and which is the reason also.
    Can anybody please help me in rectifying it...
    Many Thanks in advance..

    Hi venukoti,
    Are you using Facebook SDK for helping with feature implementation?
    Looks like your app does not have dependencies installed. Please try to re-install the Facebook SDK to see if the same thing happens.
    I would recommend you ask Facebook:
    http://facebooksdk.net/docs/windows/ also
    https://developers.facebook.com/tools-and-support/ for more sufficient suggestions.
    Thanks for your understanding.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • XML fails to reconnect files with dual system recordings

    I synchronised dual system recordings with 16 bit stereo recording on camera sound and high quality 24 bit mono on separate recorded sound. I deleted the camera sound and linked the tracks in the browser and all works well in FCP. The video is ProRes 422 HQ.
    However after exporting an xml file for editing offline when I try to reconnect the media the xml file doesn't connect properly with the sound. All other files without separate sound reconnect perfectly. Is there a way around this? Also, my video and sound files have the same name. Would this contributor to the problem? I have a feeling the problem has something to do with the two differing sound sampling rates.

    I synchronised dual system recordings with 16 bit stereo recording on camera sound and high quality 24 bit mono on separate recorded sound. I deleted the camera sound and linked the tracks in the browser and all works well in FCP. The video is ProRes 422 HQ.
    However after exporting an xml file for editing offline when I try to reconnect the media the xml file doesn't connect properly with the sound. All other files without separate sound reconnect perfectly. Is there a way around this? Also, my video and sound files have the same name. Would this contributor to the problem? I have a feeling the problem has something to do with the two differing sound sampling rates.

  • Issue - A system erroe has occurred in lock management

    Dear Friends ,
    I have the below issue in my workflow .
    When i am executing the workitem from the SAP Inbox (SBWP) it is showing the below message in the status bar .
    " A system erroe has occurred in lock management " .  & not allowing me to open the workitem .
    I searched in forum  , but could not able to track the exact cause of the problem .
    Any suggestion to resolve the issue will be highly appreciated .
    Regards
    Prabhu

    Thanks for the reply .
    Usually when ever a object gets locked by some other user id it shows the message like
    " Object locked by user id "  .  Yah i have checked SM12 , there is no entries for that user .
    I think this issue is due to some other reason . Any idea please suggest .
    Regards
    Prabhu

  • ERROR - A system error has occured in lock management

    Dear All ,
    I have a major issue in my workflow in production client  .  In SWEL  there are some workflows which
    got started & then  error occured as per the message " A system error has occured in lock management " and no workitem gets created .
    This issue happened just 1 day back and still continues somtimes .
    If any one have any idea on the issue , what is the root cause of the issue , please suggest how to solve the same .
    Regards
    Prabhu

    No WF-BATCH is not locked . This issue does not happen every time , it happens some times .other wise workflow runs fine .
    I will tell you when i checked abot the error message by clicking F1 help i got the below message details-
    An error occurred in lock management when attempting to set a lock on table SWWWIHEAD.
    The data cannot be processed at the moment. The data is displayed.
    So i think there is some issue happens in updating the entry in the table which happens some times , and gets rectified automatically . But the workflow which gets affected by this error does not start .
    so any idea on the same .
    Regards
    Prabhu

  • When taking a test for a job application the new tab opens up and tells me a system error has occurred

    I have to take a talent assessment test for a job application but when the tab comes up it tells me I have a system error has occurred. What does that mean?

    Hi Bob,
    I have question that I hope you can answer. I am trying to decide how to set up my wireless network with a 4th generation Airport Time Capsule (802.11n) with a 5th generation Airport Extreme (802.11n). I have read that you can extend your wireless network, but I am unsure which device I should have connected to the modem, etc., or what setup is the best way to utilize these devices. I want to setup my wireless network and get the most out of each device while making it so that internet connection is "excellent" throughout the house. In addition, I also want to be able to use Time Capsule or Airport Etreme to back up with Time Machine. Basically, I don't understand what it is that I have and how to use it in the best way.
    Any help with this matter would be greatly appreciated.
    Thank you,
    Michael

  • Encountered : A system error has occurred while locking, pls help

    Dear All..
    pls help..
    while executing some of our remote function module we encountered some locking error.. the message returned by SAP is :
    A system error has occurred while locking
    from message class : M3 #021
    the remote function module is running bapi_goodsmvt_create in background..
    the question is.. why this error occured and how to solve it ? and what is the root cause.. ?
    because the error is only happened once (until now) we cannot simulate to get the error again.. so it is hard to find out the root cause..
    thanks for the help..
    sasmente

    Hi,
    I am also having the same problem. I am running the BAPI_MATPHYSINV_CHANGECOUNT' to count the Articles.
    When I print the error on screen, some the data shown as counted. Some are not changed and some with the following error.
    System error while locking the data
    Furthermore I went to the BASIS and saw that when we run this particular program its showing the locks on MARC and several tables with the same System ID from which we run the program
    Can anyone come up ? Its getting too hard to resolve.

  • A system error has occured while locking

    Message no. M3021 : A system error has occured while locking
    I get this message in TCODE MM42 (IS RETAIL) after mass updating articles using TCODE MM46.
    The lock table size was increased from 4 MB to 10 MB and still the issue occurs. It looks the lock table can store only 3600 entries, is there a way to increase number of entries.
    Thanks
    Jagadhish Natarajan

    First, is this mass update going to happen on reguarly?
    If no - you may want to further increase enque/table_size until it can finish this one-time run of the mass update.
    If yes - you may want to work with your SAP basis guy and read note 13907.  From your side, you may need to reduce the volume of this mass update.  From the basis side, they need to determine a proper size for the enqueue table size.

  • Multicam and multiple audio tracks sync issue, dual system shoot

    I've got a pesky problem with the multicam feature that has me stumped. I've got two cameras, slated with a clapboard, and one track of location sound recorded dual system on a seperate recorder. I have no matched TC on any of the tracks, got to use IN point only. I've tried making a merged clip for cam 1, then making the multiclip using the merged cam 1 clip and cam 2. The video of the multiclip is in sync fine, but the location sound (which is A3 on cam 1) is always offset and way out of sync.
    I've tried blowing away A1 and A2 from the cam 1 merged clip, putting the location sound at A1, and using that master clip to create the multiclip, but to no avail. Still out of sync
    It appears that because the location sound has a different start time in the merged clip than the video, FCP is getting confused about what to do with it.
    I've been successful with this method before, but the last time I had matched TC on the cameras. For some reason making the multiclip using the IN point for sync isn't working this time.
    Anyone encounter this and have a work around or solution?
    MacBookPro 2GhzDC 15"   Mac OS X (10.4.6)   Finla Cut Studio 5.1

    I've tried blowing away A1 and A2 from the cam 1 merged clip, putting the location sound at A1, and using that master clip to create the multiclip, but to no avail. Still out of sync< </div>
    Loyed's got way more experience with multicam than most of us so it's safe to follow his lead.
    Not knowing exactly what's going on (sorry if you've already tried this), I'd sync up the audio and then export the newly merged clip as a self-contained movie. Reimport.
    Hope you figure it out. Please return and post your solution for the benefit of those who come after seeking help with multiclips.
    bogiesan

  • Stupid question - please explain 'dual system' to me...

    I'm looking at a 2nd hand mac. Can someone explain to me what dual systems are and how they work? Why do they make dual systems? What is the advantage This is what I'm looking at:
    APPLE MAC G4 QUICKSILVER TOWER DUAL PROCESSOR RUNNING 10.4.11 COMPLETE SYSTEM
    THIS MAC HAS TWO 867MHZ(1.734HZ)PROCESSORS WORKING AS ONE. I'm really looking to expand my current G4 but as this 2nd hand one has a whole bunch of software I'd love to get my hand on it seems quite good value.
    I know it's a very basic question but I've done a search and cannot find an explanation, I'm not afraid of appearing dumb haha!

    "Dual system" usually means having two operating systems on your computer so your computer can boot to either kind. For example, I have both OSX Tiger and OS9 on this computer. I can boot to either.
    What you indicate is a dual processor computer. It has two processors inside. Some programs (especially video and graphics) require a lot of processing power. If you do video on a single processor computer it can tie up the computer. If you want to do other work, other than maybe the simplest task, you may find the computer slows down a lot because the video is basically hogging the single processor. If you have a dual processor computer it can handle multiple processor-hungry tasks at one time and you can use the computer normally. Note that having two processors often doesn't do a task any faster than a single, except to the extent that the computer isn't waiting for other things to finish. A video will process twice as fast on a 1600 MHz (1.6GHz) single processor computer than dual (2x) 800 MHz. However, if you want to do a lot of other work while it is processing then the 1.6GHz computer will be tied up for two hours and you won't be able to do much else during that time. Although the task may take 4 hours on a slower, dual processor computer, you can continue working while it is doing the processing instead of sitting around waiting. In that regard dual processor computers can be "faster" (at least in terms of your productivity) than faster single processor computers.
    So, if you do a lot of CPU intensive work (graphics, video) a dual processor can be worth it, and sometimes even better than a faster single proccessor, but they cost more. If you don't do that kind of work then you can usually get a faster single processor computer for the same money and that will be a faster computer for how you use it.
    Another way to think of it is in terms of single and multi-lane highways. During rush hour it may be faster to go on a single-lane highway with a slower speed limit than a crowded multi-lane with a higher speed limit where if the traffic is so heavy a single lane gets crowded an maybe slower than the multi-lane.

  • Help Problem NOT Solved Why have my system preferences suddenly started to reset back to default every time I reboot

    Why have my system preferences suddenly started to reset back to default every time I reboot At first I thought it was happening because I disconnected my Google account, but now I've disable that account and switched to Firefox.  I wasn't sure how my browser setting could have anything to do with my system preferences and now I think it's some glitch or missed setting that is causing the problem.  Oh & I locked my preference panel and that did not help.
    In addition to what I say above, not only are all my system preferences being reset to default, but also the preferences for word and Excel.  I'm sure it's affecting other programs, but Word & Excel are the main ones that I have a lot of custom setting for.  Especially annoying is the fact that my ribbon commands are reset.  All this started happening when I signed up for a Google Drive account.  The only system updates have been the usual security updates.  I deleted my Google account but haven't uninstalled it.  I'll try this, but I can't figure out how that would result in all OS preferences being reset.

    Here are a few more:
    "Data Rescue II" from prosofteng.com has a free download demo available.   You will need to follow/read the directions carefully. 
    VirtualLab™ Data Recovery  has a free download demo available.
    DriveSavers Data Recovery is NOT free.  However, they have a toll free contact phone #, international phone # & fax contact #'s. Also helpful Recovery Tips and Disaster Recovery for important precautions to prevent further data loss on their website.
    http://www.stellarinfo.com
    Stellar Phoenix Macintosh -- Mac data-recovery software -- recovers data from damaged, deleted, or corrupted volumes, and even from initialized disks. An exhaustive scan of the drive is performed to locate lost partitions. All found data in the lost partition is then presented in a tree structure so that you can copy your lost files to a working volume.
    *FREE* DOWNLOAD DEMO
    FileSalvage
    **FREE** Download DEMO
    Remo Recover
    **FREE** DOWNLOAD TRIAL

Maybe you are looking for

  • Error copying company code in ECC 6.0

    Hi all, I encounterred the error "Enter numeric value only" aftern copying company code. This problem is exactly the same with Copying of Company Code However, I couldn't find the note Note 547875 that he mentioned in the thread. I also tried to crea

  • Video Out on the Eee 900?

    Is there any way to get video out on the Eee 900 working?  I'd like to be able to play some videos on a bigger monitor when it's available to me...

  • What am I doing wrong with my recorded actions?

    I'm trying to set up Photoshop to create a bunch of thumbnail images. I've got actions to select various preset sizes with the marquee tool, and then one action that copies, creates a new document using the clipboard preset, pastes, and then resizes

  • An iView in the DTN

    Hello all, In the Dynamic Navigation of a page we embedded an iView. now - the DTN displays a role and below it - our new iView. Is it possible to invert the order so that my iView will be displayed above the role? Thanks for your time. Regards, Adi.

  • Web server connection error

    I have had my printer for about 8 months.  (I use eprint from my tablet).  It has worked fine until last week.   I am now geting a server connetion error, unable to connect to server.  I have unplugged the router, modem and printer.  Then plugged the