Detecting if WPF application is visible on screen

Hi gents, I have made an WPF application that reads data from an external device using the serial port and then visualizes it. Now, I would like to avoid reading data from the serial port when the application is not visible on the screen, thus there is no
need to read data which is time consuming. So can someone please advice on how to check if the application (mainWindow) is visible or not. I have tried to make use of events such as isActive, isVisible etc. but none of the ones I tried work. I will be happy
with a solution where the application is recognized as visible if just a pixel of it is visible on the screen.
Best Regards
Tom

A window doesn't need to have focus or be "active" to be in view.
That means Magnus approach is only going to work if you want it to function only whilst the user gives it focus.
For example.
I have 5 windows open and parts of 3 of them visible at the moment.
Two are not minimised but are behind others.
IPlayer doesn't have focus and I'm listening to radio 2.
This is somewhat easier if your user will only have one monitor.
Please take a look at the following thread:
http://stackoverflow.com/questions/2465646/how-do-i-know-what-monitor-a-wpf-window-is-in
bool onPrimary = this.Bounds.IntersectsWith(Screen.PrimaryScreen.Bounds);
If all you're trying to save is processing then handling statechanged for minimize and switch might be something to consider.
This is non trivial though:
http://stackoverflow.com/questions/926758/window-statechanging-event-in-wpf
Hope that helps.
Recent Technet articles:
Property List Editing ;  
Dynamic XAML

Similar Messages

  • [AwesomeWM] Applications locked to one screen in a dual monitor setup

    Perhaps the title should be "Multiple Screens with multiple video cards." I imagine  my confusion here is the reason I am unable to move clients from one screen to the other in awesome. Though the cursor moves fluidly between Screen1 and 2,  MOD4+drag traps the cursor and the client on the current screen. MOD4+o brings the cursor to the upper left corner of the current screen. Openbox and fluxbox are similarly limited.
    With my Xorg.conf I have $DISPLAY as :0.0 or :0.1 depending on which screen the terminal is open.
    The closest I've come to a solution is xpra from the parti-all aur package. But, I haven't found a way to make it useful. I'm hoping there is an alternative configuration. Maybe something like xinerama or Zaphod?
    I'd like to use xrandr but it seems thats a no go for multiple boards as of the the previous version. I cannot find documentation for 1.3.
    http://wiki.debian.org/XStrikeForce/HowToRandR12 wrote:VI.5. Multi-board support broken - RandR 1.2 does not support multiple boards yet (it's planned for RandR 1.3). It means that any RandR 1.2 aware driver will crash the server if you have 2 boards. Even one board with a RandR 1.2 driver and another board with a classic driver does not work. It just crashes the X server.
    Any ideas?
    > grep -v "^\s*#" /etc/X11/xorg.conf|grep -v ^$ |xclip wrote:Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        Screen      1  "Screen1" RightOf "Screen0"
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/100dpi:unscaled"
        FontPath     "/usr/share/fonts/75dpi:unscaled"
        FontPath     "/usr/share/fonts/TTF"
        FontPath     "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
        Load  "glx"
        Load  "dri2"
        Load  "extmod"
        Load  "dbe"
        Load  "dri"
        Load  "record"
    EndSection
    Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
    EndSection
    Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option        "Protocol" "auto"
        Option        "Device" "/dev/input/mice"
        Option        "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
    EndSection
    Section "Monitor"
        Identifier   "Monitor1"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
    EndSection
    Section "Device"
        Identifier  "Card0"
        Driver      "nv"
        VendorName  "nVidia Corporation"
        BoardName   "NV25 [GeForce4 Ti 4200]"
        BusID       "PCI:3:0:0"
    EndSection
    Section "Device"
        Identifier  "Card1"
        Driver      "radeon"
        VendorName  "ATI Technologies Inc"
        BoardName   "Radeon RV100 QY [Radeon 7000/VE]"
        BusID       "PCI:1:7:0"
    EndSection
    Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
            Viewport   0 0
            Depth     1
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     4
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     8
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     15
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     16
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     24
        EndSubSection
    EndSection
    Section "Screen"
        Identifier "Screen1"
        Device     "Card1"
        Monitor    "Monitor1"
        SubSection "Display"
            Viewport   0 0
            Depth     1
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     4
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     8
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     15
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     16
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     24
        EndSubSection
    EndSection

    Err. My confusion is indeed the culprit. For anyone who might find themselves in a similar situation the nomenclature is as follows.
    "Zaphod mode" on wikipedia is listed as a multi-seat configuration, however, I think it more often describes the set up in my posted xorg.conf. That is, the server has two independent screens associated with their respective device. Titling window managers seem to present multiple screens a la Zaphod. At least in awesome, each screen has its own set of tags.  Xinerama is a soon to be deprecated extension merging multiple physical displays into a singular virtual one. It will be replaced with RandR. But, as of the current version of RandR, multi-board setups are not supported.
    ATI and nVidia have proprietary implementations for multi-head configurations (Big Desktop and Twinview respectively). I assumed both cards would have to be same brand and either ATI or nv. So, I didn't look into this.
    By the nature of Zaphod mode, applications exist only on one screen. They cannot easily be moved. Because the Xinerama extension implements one large virtual display, X clients can be displayed anywhere. This is apparently at the cost of direct rendering on both screens. Xinerama is also limited in that all screens have to have the same depth.
    Having the Zaphod mode xorg config, enabling Xinerama just requires one line in the ServerLayout section:
    Section "ServerLayout"
    Option "Xinerama" "on"
    However, if the resolution differs on the screens, screens with lower resolutions will have "dead space" where the rectangle of the virtual resolution is not displayed by the physical resolution of a screen.  Moving the cursor into this area will pan the screen to show the previously hidden area and hiding what was previously visible. This means an application fullscreened on the screen with the lower resolution will never be completely visible.
    To enforce physical resolutions in the virtual screen also only requires one line. In the display subsection of the lower resolution screen section, setting the virtual display to the same as the mode will remove the dead area.
    Section "Screen"
    Identifier "Screen1"
    SubSection "Display"
    Modes "1280x1024"
    Virtual 1280 1024
    EndSubSection
    Please reply if I've gotten anything wrong!
    Last edited by _will (2009-10-07 22:08:19)

  • XAML Design window wont open in C# WPF application

    I am currently following some C# tutorials on MVA.
    we have just moved from console applications to WPF applications.
    For some reason the Designer doesnt open when I create a new project. I get the code screen but not the form designer half (see Below).
    I can give a link to the onedrive folder, but for some reason i am unable to post links or pictures.
    This is a clean install of VS express 2013 so no settings have been changed. (or set up..)
    Any help or suggestions would be greatly appreciated.
    Thanks!

    Hello Matt,
    The image shows it is a xml file. Can you open your MainWindows to test in your first image? I can see your second image seems do not have problem.
    Best regards,
    Barry
    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.

  • NIDaq Windows application not visible in new project

    Hi Everyone, 
    I am trying to build a VB.NET WPF application using Measurement Studio 2013 for Visual Studio 2012.
    I followed the walktrough Creating a measurement  studio NIDAQmx application, but I get stuck at the point of creating the project as Visual studio does not offer me the possibility to create an NIDaq Windows application.
    I have DAQmx9.8 installed for LabVIEW, I downloaded NI device Drivers 2014 feb, but still the same.
    When I installed Measurement Studio, it could not find the Device Drivers, and even after downloading them and trying to install them afterwards trought the installer of measurement studio, it cannot find them.
    Daqmx support for .NET 4.5 seems to be installed too, although it is not visible in the list of installed softare.
    Thanks for your help, 
    Best Regards,
    Attachments:
    WPF_Daqmx.PNG ‏51 KB
    installedSoftware.PNG ‏21 KB

    Hi Matt,
    Thanks for your answer, I did a custom install and I installed .NET framework support 4 & 4.5, but I did not install Microsoft Visual Basic 6.0 support, is this mandatory?
    Although it is working now on some of my configurations at least.
    I have 3 machines on which I have made the attempt, with the following configurations:
    A: x86 desktop:
    -Windows 7
    -LabVIEW installed, NI-Device drivers Feb 2014 and NI-DAQmx 9.8.0 (previously installed, for labview)
    -Visual Studio 2010, 2012, 2013
    -Measurement Studio 2013 for Visual Studio 2010, 2012
     => NI DAQ project and NI DAQ assistant available in both visual studio 2010 & 2012
    B: x86 desktop:
    -Windows 7
    -NI-Device drivers Feb 2014
    -Visual Studio 2010
    -Measurement Studio 2013 for Visual Studio 2010
     => NI DAQ project and NI DAQ assistant available in visual studio 2010
    C: x64 laptop:
    -Windows 7
    -LabVIEW installed and NI-DAQmx 9.8.0 ( NI Devices Drivers feb 2014, but Ni-Daqmx 9.8.0 was installed before as I am usually working with labview)
    -Visual Studio 2010, 2012, 2013
    -Measurement Studio 2013 for Visual Studio 2010, 2012
     => NI DAQ project and NI DAQ assistant available only within visual studio 2010 not 2012....
    I would like the laptop to work under 2012 too, as it is the machine I use most of the time.
    Does the order of installation impact on visual studio integration?
    Should I reinstall everything on the laptop from the begining? In which order?
    It seems that NI-DAQmx 9.8.0 even with .NET support 4&4.5 is not enough, and it is mandatory to install NI Device Drivers Feb 2014, Is that correct? If yes, why?
    Now the most important for me is the ability to check if the signal outputs are generated correctly on the simulated device, thus being able to see traces with NI IO trace, and none of these configurations, using both NI DAQ example or a project generated with the daq assistant, shows anything in NI IO trace.
    I have posted related threads on ni.forums.
    http://forums.ni.com/t5/Measurement-Studio-for-NET/Web-publishing-daq-application/m-p/2830642
    http://forums.ni.com/t5/Measurement-Studio-for-NET/WriteDigitalChannel-example-nothing-in-NI-IO-trac...
    Thanks for your help,
    Best Regards,

  • HT204266 my you tube application not visible

    you tube application not visible in my device

    What version of the software do you have? iOS 5? iOS 6?
    Check by opening Settings app. The navigate to General > About. It will tell you the software verison.
    In iOS 5, restrictions could cause YouTube from not appearing any where in the home screen.
    See: iOS: Understanding Restrictions
    In iOS 6, it's normal because YouTube is no longer part of iOS. You'll need to go to the App Store and download it.
    See: YouTube for iOS

  • TS1702 my you tube application not visible

    you tube application not visible in my device

    If you can't find it on any of your homescreens or app folders, and you can't find it via the spotlight search screen (swipe your first home screen to the right), then is it hidden by Settings > General > Restrictions > YouTube being set 'off' ?
    If not then have you tried a reset to see if you can find it after the iPhone has restarted ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the equivalent of a reboot.

  • Error when startup WPF Application with Crystal Report !

    Hi!
    I have an error when build & run a WPF Application with Crystal Report. Can anyone help me ?
    First, I created 2 project, one is the WPF Application & one is Shell Start Up project (to show loading screen, then show main window when loaded, is WPF Application too)
    WPF Application:
    /// <summary>
        /// Interaction logic for MainWindow.xaml
        /// </summary>
        public partial class MainWindow : Window {
            public MainWindow() {
                InitializeComponent();
               // crViewer is SAPBusinessObjects.WPF.Viewer.CrystalReportsViewer
                crViewer.ViewerCore.ReportSource = new CrystalReport1(); // Assign report to viewer
    Shell Startup:
    [STAThread]
            public static void Main(string[] args) {
                AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
                Application app = new Application();
                ShowLoadingWindow(); // Show loading screen
                MainWindow mw = new MainWindow();
                mw.Show();
                app.Run();   
            static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) {
                // Exception was throw here
    And here is the exception & it's stack trace
    Message:  Object reference not set to an instance of an object.
    Stacktrace:
    at SAPBusinessObjects.WPF.Viewer.ViewerCore.<>c__DisplayClass1.<set_ReportSource>b__0()
       at SAPBusinessObjects.WPF.Viewer.DelegateMarshaler.<>c__DisplayClass29.<QueueOnThreadPoolThread>b__28(Object )
       at System.Threading.QueueUserWorkItemCallback.WaitCallback_Context(Object state)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
       at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
       at System.Threading.ThreadPoolWorkQueue.Dispatch()
       at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback()

    As far as I know the error is typically due to the fact that I'm trying to address an object that has not been set. E.g.; this could be due to  bad scoping, bad inits/constructs, trying to access a member of a class without instance object and so on. I suspect this is a design \ code issue. You might be able to confirm this using [Process Monitor|http://technet.microsoft.com/en-ca/sysinternals/bb896645.aspx].
    Other than that, I'd recommend creating a phone case here:
    http://store.businessobjects.com/store/bobjamer/en_US/pd/productID.98078100?resid=S6I@hgoHAkEAAGsiyVkAAAAR&rests=1282226845369
    - Ludek

  • Enumerate wifi direct devices in win32 or wpf application

    I am trying to enumerate the currently paired and visible WiFiDirect devices in a win32 or wpf application. In Windows Store app, the following code can is usedfor emumerating the WiFiDirect devices
    String^ deviceSelector = WiFiDirectDevice::GetDeviceSelector();
    OutputDebugString(deviceSelector->Data());
    create_task(DeviceInformation::FindAllAsync(deviceSelector)).then([this] (task<DeviceInformationCollection ^> resultTask)
    Are there any equivalent APIs for a win32 or wpf app?

    Hi,
    Unfortunately, it seems that there is no method available to enumerate paired WiDi device profiles through non WinRT apps.
    Alternatively, you can consider the method described in the below link to create a helper DLL which can do the work for you:
    http://www.wintellect.com/devcenter/jeffreyr/using-the-windows-runtime-from-a-non-metro-application
    A second alternative could be writing the device profiles to a XML from WinRT app and reading it from desktop app.
    (Please mark as answer if this resolves your query. Please upvote if this post is helpful.)
    Regards,
    Rajesh

  • HT4241 Does dvi to HDMI adapter works on mid 2007 iMac? Some how my iMac detect the sharp tv but the tv screen is black.

    Does dvi to HDMI adapter works on mid 2007 iMac? Some how my iMac detect the sharp tv but the tv screen is black.

    you need mini dvi to hdmi cable
    http://store.apple.com/us/product/M9321G/B/apple-mini-dvi-to-dvi-adapter?fnode=5 1
    and
    http://store.apple.com/us/product/HA835ZM/A/belkin-hdmi-to-dvi-d-cable-2-m66-ft? fnode=51

  • I am trying to set up my newly purchased Apple TV but when I enter my network password while setting up, I am not able to enter the Submit button, any idea how to hit the visible submit button that is visible on screen but not responding?

    I am trying to set up my newly purchased Apple TV but when I enter my network password while setting up, I am not able to enter the Submit button, any idea how to hit the visible submit button that is visible on screen but not responding?

    You need to use the right arrow on the remote to go all the way to the right. The submit button will be highlighted and you can then press select on the remote to proceed.

  • How to hide fields which is visible on screen only

    Hi,
    One of my template contains some controls that are set as visible on screen only, like the reset button. They are used for blank interactive form only. But when combined with xml data file,I donot want the use will see those controls when they review the output pdf file on the screen. Does anybody know what configuration I should set on/off to make it work. I still needs those controls set as visible on screen only. Thanks
    Haoming

    Haoming,
    I do not think this is the right place to ask this question. If you are asking a Flex question, you should try here:http://forums.adobe.com/community/flex
    Tom

  • Application not visible in PDA  after server deployment

    Hi All,
    I developed an Mi 7.1 application.Deployed  all the sdas in the Mi server using sdoe_upload_archive.I created a device.Assigned all the mobile components to the device .I synchronized the device and it is successful.
    I can see the service and mobile ui component in the  mobileapps folder of the device.
    But I am not able to see the application in the application launcher of the  PDA.
    Any clues in resolving this?
    Thanks and regards,
    Rajesh.A

    Hi Rajesh,
    The application link may not be visible for the below given reason. Check whether it solves your issue :
    Reason 1. If the role SAP_DOE_ALL_APP_VISIBLE is missing for the user on the DOE system, then the application link is not visible on the home page.
    Solution 1. Add the role via agents in the NWM portal.You should also perform a delta download for the following data objects in the SAP BASIS 7.10 software component version (SWCV):
    1. USERDETAILS
    2. USER_AUTHORIZATION
    Reason 2. The application link is not visible because of the user authorization issue. Check whether the SAP BASIS 7.10 software component version is assigned to the device or not.
    If the SAP BASIS 7.10 software component version is not assigned to the device, then follow either of the steps specified below (2a or 2b):
    Solution 2a. Disable the authorization check on the mobile client
    (For PDAs)
    This can be done by creating a configuration.properties file in the \MI\Settings\ folder with the entry com.sap.tc.mobile.cfs.deploy.check_authorizations=false. Stop and start the client. The file is consumed, the authorization check is disabled, and then the application is visible in the application launcher.
    Solution 2b. Assign the authorization-related SWCV to the device (in the NWM portal)
    In the NWM portal, go to the DMSWCV tab in Device Management. Manually assign the SWCV containing the authorization data objects (SAP BASIS 7.10). Trigger an extract. Synchronize the device. The authorization objects are now available on the device. The application appears in the application launcher.
    Reason 3. If the installed client version and the NWMCLIENT.SCA version uploaded in the DOE are different, even then the application link is not visible on the home page.
    Solution 3. Upload the NWMCLIENT.SCA (same version of the client) to the DOE using transaction SDOE_UPLOAD_ARCHIVE.
    Regards,
    Suma

  • Issue with worksheet.Select(true) after hosting Excel window in WPF application

    The issue is with Office 2013.
    We are hosting excel workbook window in WPF application using HwndHost class. In overridden BuildWindowCore method of HwndHost class, we are creating a MDICLIENT Window and setting this MDICLIENT window handle as parent for Excel
    main window handle and returning HandleRef object of MDICLIENT window handle from BuildWindowCore method.
    Once HwndHost control is loaded, we are selecting sheet of excel in the loaded event of HwndHost control. The code for selection of sheet is given below.
    dynamic workSheet =
    this.excelApplication.Workbooks[1].Worksheets[sheetName];
    this.excelApplication.Workbooks[1].Activate()
    workSheet.Activate();
    workSheet.Select(true);
    The first time execution of
    workSheet.Select(true)
    halt for few seconds and then it throws exception “System.Runtime.InteropServices.ComException”
    with message “The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT))”.
    But it executes successfully without delay on subsequent calls. Sometimes the execution halt for minutes on different Systems.
    This absurd behaviour is seen only once in application instance life time and that too after excel window gets loaded in WPF application. If we execute
    workSheet.Select(true)
    before loading of window then it executes properly. Once
    workSheet.Select(true)
    executed for first time with exception, it executes successfully without delay on subsequent calls.

    No, I dont have any macro in the sheet and it is happpening with all workbooks. The problem is consistent with all workbooks and also it throws exception only for first time in the application. If I execute it again in same application instance, it works
    properly.

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.Not working in USA timezone.

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works fine in our side (Timezone,kolkata ,india even for Timezone,slvaniya,USA) but our USA client is telling that on changing the date it not starts from start-up sequence.Can anyone plz suggest the reason for it.

    This is the code which we have used.
    //////////Return if it is first time for the day or not//////////////
    + (BOOL)isFirstTimeToday {
    BOOL result = YES;
    NSDate *now = [[NSDate alloc] init];     /// represents the current time
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: now];
    NSDate *today = [gregorian dateFromComponents:components];
    [now release];
    [gregorian release];
    NSDate *savedDate = [[NSUserDefaults standardUserDefaults] objectForKey:LAST_TIME_VISITED];
    if (savedDate) {
    if ([today earlierDate:savedDate] == today) {
    result = NO;
    return result;
    ////////Stores the date/////////////
    + (void)userDidVisitReenforceScreenToday {
    [[NSUserDefaults standardUserDefaults] setObject:[NSDate todayAtMidnight] forKey:LAST_TIME_VISITED];
    ////////////What [NSDate todayAtMidnight] stores/////////////////////
    + (NSDate *)daysFromNowAtMidnight:(NSInteger)nOfDays {
    NSDate *date = [NSDate dateWithTimeIntervalSinceNow: (86400*nOfDays)];
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: date];
    NSDate *dateAtMidnight = [gregorian dateFromComponents:components];
    [gregorian release];
    NSLog(@"dateAtMidnight : %@",dateAtMidnight);
    return dateAtMidnight;
    + (NSDate *)todayAtMidnight {
    return [self daysFromNowAtMidnight:0];
    Please Suggest..

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    Try posting in the developer forums to see if you can get some assistance,you'll have to be a registered developer for access though.
    developer.apple.com

Maybe you are looking for

  • After PC Suite upgrade Nokia E70 is not recognized

    Nokia E70 phone and out-of-the-box PC Suite, works fine. The PC Suite informs me that I should upgrade the software, and I did with one boot. But now, after software upgrade the E70 phone is no longer recognized and my Windows XP states; unrecognized

  • While you wait for iOS 7, download iTunes 11.1

    For iOS 7 compatibility, you will want to download and instal iTunes 11.1. See this link. Sync with iOS 7. You can now use iTunes to sync your favorite music, movies, and more to devices with iOS 7. In addition, iTunes now makes it even easier to qui

  • MacBook Pro, the left speaker doesnt work

    Hi all, As per title i bought a second hand MacBook Pro A1286, the left speaker doesnt work though. I have tried to unclick "Use ambient noise reduction" that hasnt worked. I also did the cmd, alt, R and P reset. That also didnt work, i was wondering

  • Sluggish problem with using an external editor

    Whenever I use an external editor (CS5 now) and also Nik software, when I return to Lightroom with the edited file, the problem occurs if I want to do further editing on the picture back in Lightroom. The resonse when I click on something (contrast,

  • LSMW Read Data Error

    Hi Experts, While Specifying the path to upload legacy data in lsmw, i have mentioned the lan server path directly to read flat file from specified network location. Say example: beprod4\em\4_Testing_Phase\05_Object\Upload Files\Master Codes\Master C