Problems with shared desktop

Hello, I have a macbook pro 13 "core i5, 4GB with Intel graphics card, which Iupdated with OS X lion and want to share the desk with a monitor 22" DELLbrand yet I activated the option to desktop sharing, but plug the same monitoron another mac book 13 "but with NVIDIA graphics card and if he worksnormally, that can happen? the video card is not ready for desktop sharing?there is a share command to force desktop and / or auto-detect the second monitor? I could lend a hand?
Thanks.

Window may be in the Full Screen mode.
Move the cursor to the top of the window and click the blue double arrow icon at the top right corner.
That will make the window revert back to the normal size.
You can press "esc" key  to exit the Full Screen mode.
Best.

Similar Messages

  • My host name changes every few days, since Xmas adding a macbook its changed 6 times. Do I need to stop this? Does it cause problems with sharing between the iMac and macbook?

    my host name changes every few days, since Xmas adding a macbook its changed 6 times. Do I need to stop this? Does it cause problems with sharing between the iMac and macbook?

    There are several possible causes for this problem.
    1. Two (or more) computers on the local network have the same Bonjour name, such as "X's-MacBook-Pro.local".
    2. You have two simultaneous connections to the same local network: probably Ethernet and Wi-Fi. If applicable, disconnect the Ethernet cable or turn off Wi-Fi.
    3. A Mac wakes from sleep due to network traffic. This is due to a bug in OS X that may only affect some models.
    4. A device that gets its network address from the router wakes from sleep, and the address it was using before has been assigned to another device.
    5. A third-party wireless router has incompatible settings or firmware. In that case, refer to the manufacturer or ISP for support. Restarting the router may help, temporarily.
    6. See also this support article.
    Rename the computer in the Sharing preference pane.

  • TPC 2012 - Problems with shared variable

    Hi,
    I tried to program simmilar thing to this one http://zone.ni.com/devzone/cda/tut/p/id/5548 on TPC 2012. But it doesn't work.I can see that both programs on my laptop and TPC are working(I've added an additional counter with display), but I cannot see any effect on TPC when I change the value of shared variable on my laptop. I use LabView 8.6 with Touch Panel Module. My question is what are the exact steps to run such application on TPC2012? Are they the same as for TPC 2006?
    I've noticed following issues:
    1.I cannot deploy the program from Project Manager(there is an information that maybe TPC Service is not started. - I've found such information about TPC Service http://digital.ni.com/public.nsf/allkb/DE177828D27A14A48625734E00768B66 but in fact I cannot find Start » All Programs»National Instruments » NI TPC Service » NI TPC Service Manager 1.0 Does it mean, that the TPC Service is not installed and the programm with shared varibles won't be working or can I start it somehow in another way? Do I need to have TPC service installed on TPC2012?
    Until now, I've built the project and sent it through FTP to TPC(the folder was /TEMP) and then started it.
    2.Ping works OK
    Thank you in advance for any hints how to solve this problem.
    Martin

    Well no problem, but I'm frustrated with this issue... I've tested many things and nothing. Just to help someone else as I in the future, these are my sources:
    http://forums.ni.com/t5/LabVIEW/TPC-2012-Problems-with-shared-variable/m-p/1009631/highlight/false#M...
    http://digital.ni.com/public.nsf/allkb/28536DE7E2D9E98B8625770B00738920?OpenDocument
    http://zone.ni.com/reference/en-XX/help/372507B-01/lvtpcgsm/tpc_install_sharvar/
    http://zone.ni.com/reference/en-XX/help/372507C-01/lvtpcgsm/tpc_install_sharvar/
    http://digital.ni.com/public.nsf/allkb/23532363F4905EC28625727A00730B80?OpenDocument
    http://forums.ni.com/t5/FieldPoint-Family/TPC-2006-Not-Listed-in-Targets-and-Devices/td-p/566325
    http://forums.ni.com/t5/LabVIEW/MAX-can-t-detect-TPC-2106T/td-p/831524
    http://zone.ni.com/devzone/cda/tut/p/id/5868
    http://digital.ni.com/public.nsf/websearch/28B748B9697B79E18625725A00009066?OpenDocument
    http://digital.ni.com/public.nsf/websearch/D1726990DCEB82E4862570F20069C57D?OpenDocument
    http://digital.ni.com/public.nsf/allkb/3B469103BBDD4CE48625726000665B36
    I hope find some hint..
    Fabian León
    Certified LabVIEW Associate Developer

  • Problem with CC desktop app update

    Anybody has Problem with CC desktop app update?

    Hi boloco
    here are some soultions, which helped me out on my first trouble:
    CC desktop lists applications as "Up to Date" when not installed
    Good luck (I have new problems today which could not be solved by one of those)

  • Problem with shared objects synchoronization.

    I encountered a small problem with shared objects.
    I'm working on a program that creates chat rooms of a fixed
    size of 30 users. When the 31th user comes, a new room is created.
    The idea is that the client first connects to the first room
    and checks if it's full by connecting to shared objects. If it is
    full, connection is closed and process is reapeated on a new
    instance of the application.
    I use a function to connect to an instance, which takes as a
    parameter a number (1 for instance room_1, 2 for room_2, etc). The
    function itself creates the necessary Netconnection and
    sharedObject objects.
    If a room is full, Netconnections and sharedObjects are
    closed and function is called again with another number.
    I have no problem for connecting to the first room, but after
    closing the first connection and connecting to the new room, there
    seem to be some problems with the shared objects (especially,
    OnSync doesn't seem to execute again after the connection to the
    shared objects of the new instance).
    I was wondering if you had any ideas what could cause this.
    Is it the use of the same variable names for connecting at two
    different shared objects?
    Here is the function :
    function initStreams(room) {
    client_nc = new NetConnection();
    client_nc.connect("rtmp://192.168.0.4/Elearning/room_"+room);
    in_ns = new NetStream(client_nc);
    in_ns2 = new NetStream(client_nc);
    Replay_video.attachVideo(in_ns);
    out_ns = new NetStream(client_nc);
    out_ns2 = new NetStream(client_nc);
    in_ns.play("my_recorded_stream");
    users_name = SharedObject.getRemote("users_name",
    _root.client_nc.uri, false);
    users_name.connect(_root.client_nc);
    users_language = SharedObject.getRemote("users_language",
    _root.client_nc.uri, false);
    users_language.connect(_root.client_nc);
    users_picture = SharedObject.getRemote("users_picture",
    _root.client_nc.uri, false);
    users_picture.connect(_root.client_nc);
    users_finger = SharedObject.getRemote("users_finger",
    _root.client_nc.uri, false);
    users_finger.connect(_root.client_nc);
    I you need more info, I can post more of the code on the
    forum.
    Any help would be really appreciated

    I don't see any onStatus events in the code you posted above.
    If you're defining the onstatus event outside the function, that's
    the problem. When you define the shared object, you also need to
    define it's onStatus event handler.
    Also, you really should wait for the onStatus event of the
    netConnection before you connect your sharedObjects. If you try to
    connect the SO before the netConnection is established, the SO will
    never connect.

  • Graphic Upgrade Problem with K430 desktop - Unresolved!

    Hi,
    Xmas 2012 I purchased a Lenovo IdeaCentre K430 Desktop from PC world.
    PC World said it would be upgradable if I need to upgrade it.
    The system is:
    Intel Core i7-3770 CPU @ 3.40GHz
    16.0 GB DDR3
    1.8 TB Hardrive
    Windows 8
    Geforce GT 640
    I recently purchased Crysis 3 and its not running very well, so I brought a Geforce GTX 660.
    However when I installed and rebooted the PC, I was greated with a blank flashing screen?
    other people have simular problems on the GeForce forums.
    I have since took the card back PLUS 3 MORE for a refund, and very dissapointed that I can't upgrade this PC.
    CAN SOMEONE AT LENOVO PLEASE REPLY WITH A LIST OF 'MODERN/LATEST GRAPHIC CARDS, THAT ARE COMPATIBLE WITH THIS MODEL STRAIGHT OUT OF THE BOX?
    CHANGING THE BIOS SETTINGS DOES NOT WORK FOR ME!
    It's been almost 2 years and I've still not found a compatible card, so much for the Ultimate Upgradable PC!
    Cheers.

    The previous message thread you posted in has one recommendation of what worked in the K430.  See the post #34 in this discussion.......
    https://forums.lenovo.com/t5/Lenovo-E-H-K-M-Q-and-ErazerX/Graphic-Upgrade-Problem-with-K430-desktop/...
    Owner & Operator of the following:
    ● Lenovo Ideapad Z570 w/ Win 7 & Win 8.1 Dual Boot ● Lenovo Yoga 3 Pro w/ Windows 8.1 ● Toshiba A75-S206 w/ Win 7
    ● IBM Thinkpad T-23 w/ Win XP ● IBM Thinkpad T-22 w/ Win XP • As well as multiple desktops dual/triple booting XP, Vista and Win 7.
    ★ Find a post helpful? Thank that member by clicking on the ☆Star☆ to the left awarding them a Kudo.
    ★ Posting a problem and a reply is helpful and it answers your question, please mark it as an "Accepted Solution"
    ★ I'm not a Lenovo employee, just a volunteer geek who likes to help folks. Enjoy your time here, pay it forward by helping others !
    ★ Sorry, I don't answer questions via Private Messages. Posting in the appropriate forum is the best way to get assistance.

  • I am having a problem with IRM Desktop version 11.1.54.2 Midware 11.1.1.6.0

    Hi everyone,
    I am experiencing some serious and strange problems with our IRM desktop client which Works with Java SE 6.30 (JRE 6U30). When I installed them (java and IRM) on Windows 8 Professional, IRM stops print spooler service, and block our clients to print anyting, and add a new printer by clicking ADD PRINTER button under Devices and Printer section. This is the visible face of the issue. However, I believe it affects more than one service on Windows 8 Pro. we did not have any problem with Windows 7 pro, but have a lot of with Windows 8 pro. Does anyone have same / similar experience with the same platform? Thanks for all helps

    987081 wrote:
    Hi everyone,
    I am experiencing some serious and strange problems with our IRM desktop client which Works with Java SE 6.30 (JRE 6U30). When I installed them (java and IRM) on Windows 8 Professional, IRM stops print spooler service, and block our clients to print anyting, and add a new printer by clicking ADD PRINTER button under Devices and Printer section. This is the visible face of the issue. However, I believe it affects more than one service on Windows 8 Pro. we did not have any problem with Windows 7 pro, but have a lot of with Windows 8 pro. Does anyone have same / similar experience with the same platform? Thanks for all helpsPlease NOTE that you posted this in an Oracle database forum.
    so what does above have to do with Oracle database?

  • Sync problem with Blackberry Desktop Software for Mac

    Can someone help. I have synchronization problem with my contact in the Outlook for Mac using blackberry desktop software for mac. Seems all details in my blackberry handheld contact got synchronized, but not email addresses (so all names, jobs, companies, work phone, mobile - all got synchronized, but not email addresses). All data is in my handheld. I wish I could just "replace" (not merge/sync) outlook contact with all contact in the handheld but seems there is no option to do that. Let me know please if someone has similar experience and has found out solution. Thanks!

    Can someone help. I have synchronization problem with my contact in the Outlook for Mac using blackberry desktop software for mac. Seems all details in my blackberry handheld contact got synchronized, but not email addresses (so all names, jobs, companies, work phone, mobile - all got synchronized, but not email addresses). All data is in my handheld. I wish I could just "replace" (not merge/sync) outlook contact with all contact in the handheld but seems there is no option to do that. Let me know please if someone has similar experience and has found out solution. Thanks!

  • Solution to the "Disappearing Comments" problem with shared reviews

    I've been having repeated problems with users losing their comments on shared reviews, hosted on my webDAV server. After tearing my hair out for days, I wanted to share the simple fix to this issue, plus another tip:
    DON'T USE PERIODS OR SPACES IN FILE NAMES. Use hyphens and underscores instead.
    Illegal characters seem to gradually corrupt the file to the point where potentially every comment can get overwritten with a blank .xml file, permanently losing all your comments.
    My wish to Adobe is that they would put a pop-up warning at the time of saving a file for shared reviews, something to the effect of:
    "WARNING! saving a shared file with a space or a period could result in data corruption when shared over network drives or webDAV. Do you want to replace illegal characters with underscores?"
    My other tip is this:
    If using a webDAV server as I am, be sure to use the IP address rather than the domain name when specifying the location of the server.

    With all the issues you describe, I would search for something conflicting with Mountain Lion.
    Have you booted into Safe Mode and checked to see if it works correctly there? It will take a while to boot, and it will run a bit slow, so just look for the issues you described above. If they don't appear, you've got something installed that is causing the issues.

  • Problem with synchronizing desktop software with Lotus Notes

    Problem: synchronizing between blackberry storm and my pc with the desktop manager. During the settings of the configuration is asked for the location of the NOTES.INI file. The configuration program finds the NOTES.INI file it's self.
    After selecting the NEXT button I get an announcement that the NOTES.INI file can't be opened and the configuration stops.
    I don't know what to do to select the right file or setting so the desktop manager can synchronize with my blackberry.
    I hope somebody can help me with this problem.
    Regards
    Erik

    Hi and welcome to the forums:
    Please read the attached regards your error:
    Thanks,
    Bifocals
    Please remember to resolve your thread.
    Put the check mark in the green box that contained your answer! Thanks   
    http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB01534&sliceId=2&docTy...
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Problem with plasma-desktop

    After upgrading to kde 4.7 I've a problem with plasma: after login my screen is black with no panel. If I open a terminal and i launch plasma-desktop I obtain the following errors:
    giacomo@arch:~$ plasma-desktop &
    [1] 8737
    giacomo@arch:~$ QDBusObjectPath: invalid path ""
    QDBusObjectPath: invalid path ""
    ## Loading catalog liblancelot-datamodels
    Object::connect: No such signal KWindowSystem::windowChanged(WId,unsigned long*)
    link XMLID_34_ hasn't been detected!
    link XMLID_34_ hasn't been detected!
    link XMLID_36_ hasn't been detected!
    Application asked to unregister timer 0x0 which is not registered in this thread. Fix application.
    QGraphicsLinearLayout::removeAt: invalid index 1
    plasma-desktop(8738)/kio (KDirWatch) KDirWatchPrivate::removeEntry: doesn't know ""
    QImage::scaled: Image is a null image
    QImage::scaled: Image is a null image
    QPainter::begin: Paint device returned engine == 0, type: 2
    QPainter::setRenderHint: Painter must be active to set rendering hints
    QPainter::setPen: Painter not active
    QPainter::setFont: Painter not active
    Kross: "Loading the interpreter library for qtscript"
    Kross: "Successfully loaded Interpreter instance from library."
    QPainter::begin: Paint device returned engine == 0, type: 2
    QPainter::setRenderHint: Painter must be active to set rendering hints
    QPainter::setPen: Painter not active
    QPainter::setFont: Painter not active
    plasma-desktop(8738)/plasma StatusNotifierItemSource::refreshCallback: DBusMenu disabled for this application
    giacomo@arch:~$ QImage::scaled: Image is a null image
    plasma-desktop(8738)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    QGridLayoutEngine::addItem: Cell (0, 1) already taken
    setting locale to  "utf-8"  and encoding to  "utf8"
    Why plasma isn't running after login?

    So dbus has to be the first daemon placed in the rc.conf list?
    Yesterday evening I tried to delete the file /home/giacomo/.kde4/share/config/plasma-desktop-appletsrc and reboot: at new kde startup the screen was black but there were a panel in the low edge of the scrren, so plasma-desktop was running, but the desktop backgroung was not set. I re-apply all my settings (comic strip, cwp and system monitor) and at the next reboot plasma crashed again.
    When I come back to home I try to deactivate plasma activities and to change my rc.conf.

  • Problem with shared column mapping

    I have a problem with mapping different fields onto the same column. In most cases Kodo handles it very well but one tough case it does not
    Modification references contract N-1 using contract_id field
    Contract back references two modifications out of all modification owned by THIS contract (last_modification and executed_modifcation)
    when both modifications are not null it works fine since I make sure both fields point to modification owned by the same contract
    hovewer when I set one of the fields (executed_modifcation) to null (after it was not null) Kodo attempts to set not only executed_modifcation field to null but contract_id as well. Which obviously not desired
    I understand that it is a pretty hard corner case. Do you think you can handle it or it is a dead end?
    Attached are my files

    Abe,
    I fully agree with your analysis. In my case we can use precedence of direct
    mappings over reference mapping in null situation.
    However as you noted, there are cases when we have only references and so
    you can not say which mapping is more important. However since we are
    resolving NULL issue here, I am not sure we need to know precedence of
    references - not null case should always take precedence. In other words:
    priority 1: direct mapping
    priority 2: not null reference
    priority 3: null reference
    Of course all three cases are subject rule of not changing value of shared
    column
    "Abe White" <[email protected]> wrote in message
    news:[email protected]...
    I admit that I didn't go through all your metadata, but I do believe that
    3.0 final will handle this case. My plan is to implement updates such
    that direct field mappings always take precedence over foreign key
    mappings.
    Let's say column CONTRACT_ID is used by int field contractId and is
    also used by field lastModification as part of an FK to a Modification
    instance (which I believe is close to your mapping). Because contractId
    is a simple field rather than a foreign key, Kodo will give it the final
    say on nulling/defaulting the CONTRACT_ID column. So if you null the
    lasetModification field, CONTRACT_ID will retain the value of the
    contractId field. Any non-null value of the lastModification field will
    stilly have to jive with the contractId field, though, or else we'll
    throw an exception like we do currently when you try to set 1 column to
    multiple values.
    I believe this solves the common case of shared
    columns between direct mappings and FK mappings. There are other cases
    in which multiple FK mappings overlap on certain columns, and this does
    not solve nulling problems in those instances. However, I think those
    cases are very rare and not worth the effort. Correct me if I'm wrong
    and your situation actually is one of sharing columns between multiple
    FKs and no primitives after all.

  • Problem with shared services,, cannot load "assign access control"

    i m using 11.1.1.3 version of EPM.
    I have configured Essbase with Shared Services.
    When I do right click on application on shared services and select "Assign Access Control" , it gives "loading.." .it remains same for hours..
    I re configured essbase ,, but problem remained same...
    Could you please suggest what I can do assign filters to users.

    Have you given maxl a try:
    grant filter appname.dbname.filtername to user;
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Having Problems With Sharing & Permissions in Finder

    I am using a Mac Mini (mid-2011) running Lion Server 10.7.4.
    I have noticed lately that when I check files the Sharing & Permissions portion using Get Info on my files I find that there are two lines for each user on my compuer.  The first set of lines says Read & Write which I actually selected.  The second set of lines says Custom.  When I check I have the list Read & Write, Read, Custom.  When I try to change Custom I cam select new option No Privileges Info.  For the other users I am able to delete the extra line once I select No Privileges Info.  However even though I have more than one line I cannot delete the extra line for the main user.  I will try and delete the extra line for the main user logged in as someone else that has what I have defined as admin privileges (reason I have more than one user).
    This really concerns me because this issue is causing problems with me adding or removing files as needed in the terminal.  When I try I get this funky error:
    Dubious permissions on file (skipping): filename with duplicate entries for a user.
    This is happening more and more even though I am not changing the file permissions that I am aware of.
    Any help would be appreciated.

    Repairing the permissions of a home folder in Lion is a complicated procedure. I don’t know of a simpler one that always works.
    Back up all data now. Before proceeding, you must be sure you can restore your system to its present state
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the page that opens.
    Drag or copy — do not type — the following line into the Terminal window, then press return:
    chmod -R -N ~
    The command will take a noticeable amount of time to run. When a new line ending in a dollar sign ($) appears below what you entered, it’s done. You may see a few error messages about an “invalid argument” while the command is running. You can ignore those. If you get an error message with the words “Permission denied,” enter this:
    sudo !!
    You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up.
    Next, boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the Recovery screen appears, select Utilities ▹ Terminal from the menu bar.
    In the Terminal window, enter “resetpassword” (without the quotes) and press return. A Reset Password window opens. You’re not going to reset the password.
    Select your boot volume if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select  ▹ Restart from the menu bar.

  • Problems with sharing

    Hi, 
    I'm Building a Windows 2008 R2 Enterprise server for a schoolproject. 
    And i have problems with making the shares work.
    I've used the share and Storage Managment to share the folders. 
    But with the testing of the share somethings gone wrong.
    I can open the folders and documents but i can't create of modify new data. 
    My share permissions are Change and Read. 
    My permissions in the acces controle list are : List folders content, Read and Write. 
    I've tried the change the settings and sharing over and over again. 
    But i can't get set in the right way. 
    I'm Building the server with VMware Workstation 8
    So Helpp!!

    Please note that this is Directory Services Forum and your request is regarding Files and Folders management.
    I would recommend asking them in File Services and Storage forum: http://social.technet.microsoft.com/Forums/en-us/home?forum=winserverfiles&filter=alltypes&sort=lastpostdesc
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Get Active Directory User Last Logon
    Create an Active Directory test domain similar to the production one
    Management of test accounts in an Active Directory production domain - Part I
    Management of test accounts in an Active Directory production domain - Part II
    Management of test accounts in an Active Directory production domain - Part III
    Reset Active Directory user password

Maybe you are looking for

  • Add number of records to a field

    I need to load data in BW ODS from flat file and want to populate one field ROWID which will hold record numbers starting from 1 if ODS is empty. This ROWID in ODS is used as Key field. I want to populate this ROWID based on number of records in flat

  • Problem: IAP Product is unable to restore, Paid app has to buy again after reserving app name

    I face to 2 problems with my app after reserving app name for published app. 1. IAP I published my WP8 apps ~1 year ago (we didn't have to reserve app name at this time). Recently, I reserved an app name (same with published app) and published app. A

  • Problem: Word document with Thai font to PDF

    I have a MS Office 2007 Word document (.doc) that contains both English and Thai language. I need to convert this document to PDF with Acrobat 9 Pro. However, after going through the conversion process from the ribbon within MS Word, all of the Thai

  • Corrupt itunes library.xml

    The last time I opened iTunes, it told me my library file was corrupt and began importing my library XML file. iTunes doesn't keep a very good job of syncing the XML file with the library because only about 1/10th of the import was accurate. I lost a

  • Importing movie from I-Tunes to Keynote

    I created an I-movie and shared it into I-tunes so I could import it into Keynote for a slide presentation.  I can see the movie in I-tunes, but when I go to Keynote media movies, I-tunes, the movie does not show up to import.  Any suggestions??