Shadowing API Issues on 2012R2 (SM_REMOTECONTROL GetSystemMetrics and WTSStopRemoteControlSession) Always Returns Zero

According to the MSDN article on the GetSystemsMetric API, SM_REMOTECONTROL returns zero if the user is not currently being shadowed but will return non-zero if the user is currently being shadowed.  It lists no restirction on OS support from what I
can see.
WTSStopRemoteControlSession also lists no restrictions on OS support in MSDN.
I have a simple VB.NET application that calls these APIs.  It basically reads:
<DllImport("user32.dll", CharSet:=CharSet.Auto, ExactSpelling:=True)> Public Shared Function GetSystemMetrics(ByVal nIndex as Integer) As Integer
End Function
Private Const SM_REMOTECONTROL as Integer = &H2001
<DllImport("wtsapi32.dll", SetLastError:=True)> Public Shared Function WTSStopRemoteControlSession(ByVal iLoginId as Int32) as Int32
End Function
Private Declare Function ProcessIdToSessionId Lib "Kernel32.dll" Alias "ProcessIdToSessionId" (ByVal processID as Int32, ByRef sessionID as Int32) as Boolean
retVal = GetSystemMetrics(SM_REMOTECONTROL)
On 2008R2, retVal = 1 when the user is being shadowed, retVal = 0 when the user is not being shadowed.
On 2012R2, retval = 0 no matter if the user is being shadowed or not shadowed.
Dim sessionIDCurrent as Int32
ProcessIdToSessionId(Process.GetCurrentProcess, sessionIDCurrent)
WTSStopRemoteControlSession(sessionIDCurrent)
On 2008R2, the shadow session will be stopped and WTSStopRemoteControlSession returns non-zero (indicating success)
On 2012R2, the sahdow session will NOT be stopped and WTSStopRemoteControlSession returns zero (indicating failure).  LastDLLError returns zero as well.
Has anyone else run into this?  Is this a known issue?

Known issue,similar to this question: http://stackoverflow.com/questions/14725781/getsystemmetrics-returns-different-results-for-net-4-5-net-4-0
http://connect.microsoft.com/VisualStudio/feedback/details/763767/the-systemparameters-windowresizeborderthickness-seems-to-return-incorrect-value
https://connect.microsoft.com/VisualStudio/feedback/details/753224/regression-getsystemmetrics-delivers-different-values
Best Regards,
Please remember to mark the replies as answers if they help

Similar Messages

  • What cause Macbook Air A1237 time and date always return from an older date when it restarts? I have tried to reset its PRAM and still it has the same issue.

    So here is the story,
    1. First, this Macbook Air A1237 always display the wrong date and time every time I open it after shutdown.
    2. The Battery always in zero percent and not charging at all.and the magsafe always in color orange.
         *also the battery displays the colored black plug that states it was plug in using the power cord.
    I need help on how to fix this issues.I'm hoping for your kind assistance.
    Grazie Mille!
    Ciao Ciao!
    Regards,
    Freddierick Llarina

    Hi,
    Had similar issue with the same model. It works with power adapter plugged in, but not with battery alone.
    You need to get the battery replaced.
    Cheers,
    Clarence

  • HasEventListener and willTrigger always return true

    Hi  everybody.
    I'm trying to achieve the following result.
    I'm listing all items in a form.
    When I encounter a button I check if it has already an event listener applied to it. If not , I apply the event Listener with addEventListener.
    In this way, the next time I'll list the whole form I won't apply the event listener another time (if for example I apply the same event listener twice to a button which insert a new record in a database as result I'll have 2 records added also if the user clicked once...no good at all!!!)
    To accomplish this task I'm using the Actionscript function hasEventListener(EventType) and here comes the weird thing.
    Eveytime I invoke hasEventListener on the form's button it always returns true event if is the first time a list the form (so no event listener applied yet) , even if before to invoke hasEventListener I run removeEventListener.
    I've got the same behavior when i use willTrigger() function, it always returns true no matter when i call it.
    One possible solution could be set a global boolean property to store if Ialready listed the form and applied the event listener to it, but it would be better using hasEventListener, because I've got a class that perform this form listing , and this class is used on wide project, so if I get to fix this problem inside the class I would fix the problem in the entire project in on shot (I love oop programming!!!!)
    Has anybody already addressed this problem?
    Any advisement would be really appreciated.
    Thanks in advance for the attention.
    Best regards!!
    Luke

    Hi, flex harUI.
    Thanks very much for your reply.
    I knew that if I apply an event listener twice it should fire up only once, but this isn't what happen.
    Here's my scenario:
    -  I've got a component with the form inside it
    - Through a menu a go to the state the component is in and I call an "init" function inside the component
    - In the init function I call the Class which activate the form by applying eventlistener on the button
    - The user can navigate away from the component by click another menu item and then return to the component invoking again the form activation (and so let my application apply once again the addEventListener)
    - Here's what happen: the second,third,... time the user return to the component, when he try - for example - to add a record, the record is added two,three... times according to how many times the users "reinitialized" the component. The same things happen when the user tries to delete a record, he is prompted two,three,.... times if he's sure to delete it.....
    It's a really strange behaviour.
    I've found i worked around, by setting a global bool var "initialized" and before call the form activation i check the value of this var, but It's not a very beautiful solution, 'cause I would prefer to fix this problem inside the class, so the fix the problem in the whole project just in one shot!!! (that's why I would like to use hasEventListener() to check if the button has already an eventListener)
    Thaks anyway for the reply!
    If I've some news I'll update ya.
    Bye!

  • RowAtPoint and columnAtPoint always return 0

    //in NormalGUI
         ptsinfo.addActionListener(new NTListener());
         delete.addActionListener(new NTListener());
         nTable.addMouseListener(new NTListener());
    //in NormalGUI
    public class NTListener extends MouseAdapter implements ActionListener{
         int selectRow,selectColumn;
         public void mousePressed(MouseEvent e){
              if (e.isPopupTrigger()) {
                   showPopup(e);
         public void mouseReleased(MouseEvent e){
              if (e.isPopupTrigger()) {
                   showPopup(e);
         public void showPopup(MouseEvent e){
              NormalGUI.nPop.show(e.getComponent(), e.getX(), e.getY());
              selectRow = NormalGUI.nTable.rowAtPoint(new Point(e.getX(),e.getY()));
              selectColumn = NormalGUI.nTable.columnAtPoint(new Point(e.getX(),e.getY()));
              System.out.println(new Point(e.getX(),e.getY()));     
    }the point printed has not problem but rowAtPoint and columnAtPoint.
    The popup menu shows at the right point
    I try to use e.getSource and find that it really from nTable.
    they are always return 0 instead of -1?
    Why it happens? Thanks.

    Darryl.Burke wrote:
    Doesn't happen to me. To get better help sooner, post a SSCCE that clearly demonstrates your problem.
    db
    import javax.swing.table.*;
    import javax.swing.*;
    import java.util.*;
    class NTable extends AbstractTableModel{
         static Object[] cells = {"",".mpg","&#22823;&#22618;&#24859;","&#12518;&#12513;&#12463;&#12452;",Boolean.FALSE,"2006-08-04","","M&#12473;&#12486;","00:02:34","1440x1080","323014660","","","[HDTV] &#22823;&#22618;&#24859; - [2006.08.04] - &#12518;&#12513;&#12463;&#12452; ( M&#12473;&#12486; - 17Mbps 2m34s 1440x1080).mpg","&#22823;&#22618;&#24859; - &#12518;&#12513;&#12463;&#12452; (2006.08.04 M&#12473;&#12486;) .ts",new Integer(0)};
         static Object[] cells2 = {"",".m2t","&#22823;&#22618;&#24859;","&#37329;&#39770;&#33457;&#28779;",Boolean.FALSE,"2004-08-29","BShi","BEAT MOTION","00:02:32","1440x1080","397588604","","","[HDTV-TS] &#22823;&#22618;&#24859; - [2004.08.29] - &#37329;&#39770;&#33457;&#28779; (BShi BEAT MOTION - 20Mbps 2m32s 1440x1080).m2t","&#22823;&#22618;&#24859;-&#37329;&#39770;&#33457;&#28779;[BEAT.MOTION.2004.08.29].ts",new Integer(0)};
         int noOfFile;
         static String[] col = {"no.","Suffix","Artist","Songs","Talk","Date","TV station","Program","Duration","Resolution","Filesize","ptsinfo","Date added","new name","old name","rare"};
         static ArrayList<Object[]> datas = new ArrayList<Object[]>();
         public NTable(){
                   datas.add(cells);
                   datas.add(cells2);
         public int getRowCount(){
              return datas.size();
         public int getColumnCount(){
              return col.length;
        public Object getValueAt(int r, int c){
             if(c==0){
                  return String.format("%04d", r+1);
            return getDataList(r)[c];      
         public Class getColumnClass(int c){
              if(c==11){
                   try{
                        return JButton.class;
                   }catch(Exception e){}
              return getDataList(0)[c].getClass();
         public String getColumnName(int c){
              return col[c];
         public void setValueAt(Object obj, int r, int c){
              Object[] tempArray = getDataList(r);
              tempArray[c] = obj;
              datas.set(r, tempArray);
              if(c==15){
                   NormalGUI.nTable.changeSelection(r+1, c, false, false);
         public boolean isCellEditable(int r, int c){
              if(c>0&&c<=10||c==15){
                   return true;
              }else{
                   return false;
         public static int getdatas(){
              try{
                   return datas.size();
              }catch(Exception e){
                   return 0;
         public static Object[] getDataList(int r){
              return datas.get(r);
    import java.awt.Point;
    import java.awt.event.*;
    public class NTListener extends MouseAdapter implements ActionListener{
         int selectRow,selectColumn;
         public void mousePressed(MouseEvent e){
            if (e.isPopupTrigger()) {
                 showPopup(e);
         public void mouseReleased(MouseEvent e){
            if (e.isPopupTrigger()) {
                 showPopup(e);
         public void mouseClicked(MouseEvent e){}     
         public void mouseExited(MouseEvent e){}
         public void mouseEntered(MouseEvent e){}
         public void showPopup(MouseEvent e){
              NormalGUI.nPop.show(e.getComponent(), e.getX(), e.getY());
             selectRow = NormalGUI.nTable.rowAtPoint(new Point(e.getX(),e.getY()));
             selectColumn = NormalGUI.nTable.columnAtPoint(new Point(e.getX(),e.getY()));
             System.out.println(new Point(e.getX(),e.getY()));     
         public void actionPerformed(ActionEvent e){
              if(e.getSource().equals(NormalGUI.ptsinfo)){
                    try {
                         Runtime rt = Runtime.getRuntime();               
                         Process prcs = rt.exec("C:\\WINDOWS.0\\AppPatch\\AppLoc.exe \"E:\\(A)&#31243;&#24335; (F)\\&#30475;&#22294;&#25991;&#38899;&#27138;&#39006;\\ptsInfo050\\ptsinfo.exe\" \"/L0411\"");
                         } catch(Exception ioe) { System.out.println(ioe); }
              }else if(e.getSource().equals(NormalGUI.delete)){
                   System.out.println(selectRow+"+"+selectColumn);
                   NTable.datas.remove(selectRow);
                   NormalGUI.nTable.updateUI();
    import java.awt.Font;
    import javax.swing.*;
    import javax.swing.table.TableColumn;
    import javax.swing.table.TableModel;
    public class NormalGUI extends JFrame{
         static TableModel nModel;
         static JTable nTable;
         static JScrollPane nPanel;
         static JPopupMenu nPop = new JPopupMenu();
         static JMenuItem ptsinfo = new JMenuItem("Open ptsinfo");
         static JMenuItem delete = new JMenuItem("Delete this file");
         public NormalGUI(){
              setBounds(0,0,500,500);
              nModel = new NTable();
              nTable = new JTable(nModel);   
              nPanel = new JScrollPane(nTable);
              nTable.setRowHeight(20);
              int[] columnWidth={45,145,100,150,45,105,95,200,85,105,115,65,100,900,400,40};
              nTable.setFont(new Font("&#24494;&#36575;&#27491;&#40657;&#39636;", Font.BOLD, 16));
              nTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
              nTable.addMouseListener(new NTListener());
              ptsinfo.addActionListener(new NTListener());
              delete.addActionListener(new NTListener());
              nPop.add(ptsinfo);
              nPop.add(delete);
              TableColumn column;
              for (int i = 0; i<nTable.getColumnCount(); i++) {               
                   column = nTable.getColumnModel().getColumn(i);
                   column.setPreferredWidth(columnWidth);
              add(nPanel);
              setVisible(true);
         public static void main(String[] args){
              new NormalGUI();

  • HT201210 I've updated to the latest IOS version. I am now asked to accept the conditions. I click on accept and am always returned to the accept window. What am I missing

    I've updated to the last IOS version and am now asked to accept the conditions. I click on I accept and am constantly referred back to the acceptance window. What am I missing? TIA

    Hi Vulcan37!
    I have some troubleshooting steps for you that can help you resolve this issue. First, you will want to try just performing a reset on your phone by following the instructions in this article:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    You may also need to make sure your Safari settings are set for accepting cookies. More information on this can be found here:
    Privacy and security - iPhone User Guide
    http://help.apple.com/iphone/7/#/iphb01fc3c85
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • Shadow copies issues with Windows Server 2012 R2, deduplication and defragmentation

    Hello,
    I have a virtual Windows Server 2012 R2 with a data volume with deduplication and shadow copies enabled.
    During this weekend some Windows process deleted all the shadow copies and I don't know what process has caused this issue.
    After taking a look at Internet forums it seems that could be related to defragmentation process and cluster size but if I review the logs it seems that shadow copies deletion is during some deduplication optimization process (Background Optimization, WeeklyGarbageCollection
    and WeeklyScrubbing) and 1 hour after defragmentation.
    The related events are a lot of volsnap 33 and finishing with volsnap 36.
    Any help would be appreciated.
    Thank you.

    Hi Ricard,
    Above all, here is a long discussion about a "losing all volume shadow copy" issue:
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/204e8cce-cd1f-4ca2-852e-a5f09a77c04c/volsnap-event-id-25-and-loss-of-previous-backups?forum=windowsbackup
    As it mentioned, it could be caused by disk I/O. When you have high input/output traffic on the original volume, the shadow copy storage area cannot grow fast enough to hold all the copy-on-write changes. This causes deletion of all the shadow copies on the
    original volume.
    Deduplication will cause a high disk I/O for sure so it could be the cause of this issue.
    Here are some suggestions for this issue:
     a. Put the shadow copy storage on another volume, even if the volume is located on the same hard disk.
     b. Make sure that the volume that causes the issue is not the same volume that contains the paging file. If it contains paging file, consider putting the paging file on another volume.
     c. Make sure that the volume is not used as the shadow copy storage for any other volume. 
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • MDM ABAP API  ISSUE ( server  is getting down )

    Hi Folks,
    I am trying to retrieve matching results using MDM ABAP API.
    I am spiting source and target records into lot of blocks dynamically
    in program. I am getting output 2 to 3 times if i can run program
    sequential after that server is getting down (before running program
    i am completely going out and rerunning).After server bring's up
    running couple of times and server getting down.
    Please help me how can i solve this issue.
    Thanks,
    Anil.

    Hi Anil,
    You can have a look at the below links can cross check the steps you have performed in establishing the connection correctly:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/00c49ffb-e5e5-2910-73ba-c85af1da5b0a
    ABAP APIs: Error "The connection is not trusted"
    Comaptible ABAP APIs for MDM 5.5 SP6 Patch 1
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/tip%2b%2bMDM%2bABAP-API%2b%2bThings%2bto%2bRemember%2b(for%2bStarters)
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e060251e-b58d-2910-02a2-c9a1d60d9116
    Hope It Helped
    Thanks & Regards
    Simona Pinto

  • DI API Issues after P42

    Hi,
    Using SBO 2007 A, we developed a .NET C# Application making use of DI API to create credit documents.
    After patch 42 we are experiencing the following error when attempting to Add the completed document.
    This has been working for over a year, up until the patch was applied.
    Herewith the exception thrown:
    The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT)), Interop.SAPbobsCOM,    at SAPbobsCOM.IDocuments.Add()
    I have removed the DI API from Add\Remove applications, deleted the temp folder and re-installed the DI API to correct patch level, this has not helped.
    Any ideas? Thanks.
    Edited by: Craig Christie on Mar 4, 2009 2:02 PM
    Edited by: Craig Christie on Mar 4, 2009 2:54 PM

    The issue seems to be resolved and was isolated to a particular document.
    I will post the findings here as the issue caused entire SBO applications to hang on the network.

  • Printing Issues with HP OfficeJet 100 and Windows 8.1

    We use HP OfficeJet 100 mobile printers and have a printing issue.When we print the printer acts as if it is going to print and then prints one blank page.Printer will not print even though it is showing as default printer.Printer will just stop printing in the middle of a document, even in the middle of printing out a page. We are printing via the USB cableWe are using Windows 8.1We are connecting to laptopsWe have been using the HP mobile range of printers since 2004 and have only experienced these issues since we moved the laptops onto Windows 8/8.1 We have:Uninstalled and reinstalled the printer drivers – this fixed this issue for a short while and then it reappeared againCalled HP support and they directed us to the driver support page which had the latest print drivers, uninstalled and reinstalled drivers with them on the phone. This initially fixed the problem and then it returned a few days laterAfter trawling the support forums found directions to change the print processor to “WinPrint” – No effect as the processor was already on this settingDownloaded the HP diagnostic tool – HP Print and Scan Doctor – didn’t fix anything Any further help would be much appreciated.

    Hello there Lawrence, Welcome to the Forums! I hope you enjoy your experience
    I noticed your post about the troubles you are running into when you attempt to install your OJ 6100 printer on your Windows 8.1 laptop. I read all of your attempts and seen you have tried several methods to try and get the installation to complete successfully.
    I would like to make some suggestions that may help. Let me know how it goes!
    1. Check that Internet Explorer pop-up blockers are turned off before downloading the installer
    Internet Explorer Pop-up Blocker: How do I turn off Pop-up Blocker?
    Try to install
    2. If you're running McAfee Live Safe or any other firewall, please temporarily disable the "real time scanning".
    How to disable realtime scans
    Try the install
    3. Go to the start screen (you may also press the windows key + R to open the run box) and type %WINDIR% this should show the windows folder.
    Click on the folder and scroll until you see files. Look for a filed named "HPWINS*.DAT" (the * is for a number that varies) remove this file and try the installation.
    Try the install
    Enjoy your Monday!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Issue in MODVAT Clearing Account and Rounding off of Excise.

    I have one issue in MODVAT Clearing Account and Rounding off of Excise.
    Example:
    Material cost    100Rs.
    Excise  value
    1. BED             10.5 Rs
    2. ECes             2.1 Rs
    3. HEces          1.3.Rs
    At the time of GR
    Material Ac Dr          100 
         To GR/IR                        100
    At the time of Excise Capture
    We done the rounding of Excise value
    RG23 A  BED         11
    RG23 A  Eces          2
    RG23 A  HEces        1
       To MODVAT            14
    At the time of IR . System create IR with reference of PO
    GR/IR  DR      100
    MODVAT         13.9
        To Vendor         113.9
    So here you can see that there is a difference of 0.1 in MODVAT account and hence we are crediting Vendor  with the lesser amount here with 0.1 RS.
    So we cannot reconcile the MODVAT Account
    Less Payment to vendor by 0.1 Rs
    So is there any solutions on that.
    regards
    Shayam
    Edited by: Shayam_210 on Jan 3, 2011 7:08 AM
    Edited by: Shayam_210 on Jan 3, 2011 7:09 AM

    Hi,
    Check the rounding setting in below:-
    SPRO > Logistics - General > Tax on Goods Movements > India > Basic Settings > Maintain Company Code Settings
    SPRO > General Settings > Currencies > Define rounding rules for currencies
    Regards,
    Gaurav

  • Payroll issue regarding the Claims - /561 and /563

    Hi Payroll Experts,
    I have a payroll issue regarding the Claims - /561 and /563 (October PY Run)
    When i m runnning the Current month Payroll(October PY Run), Total Earning - total deductions are not matching with Net Pay. later i came to know that the system creates the WT /561 and deducts from the Net Pay.
    But as per the Employee Payment Details , there is no recovery required from the employee for the past one year. But even then the system creates the WT /561. and deducts the same from NET Pay.
    The followng are the WT details
    IN - Period
    OCT 2011
         /101 Total gross amount     118,897.00
         /110 Net payments/deductions     76,070.00-
         /550 Statutory net pay     95343
         /551 Stat.net recalc.diff.     37,692.00-
         /552 Stat.net subs.adjustment      37,692.00-
         /559 Bank transfer                                                   34,317.00
         /560 Net pay     37,218.00
         /563 Claim from previous month     5,609.00
    FOR Period
    Sept- Oct
         /101 Total gross amount     49,213.00
         /110 Net payments/deductions      31,721.00-
         /550 Statutory net pay     41,529.00
         /551 Stat.net recalc.diff.     14,591.00
         /552 Stat.net subs.adjustment     23,101.00-
         /553 Recalc.diff.to last payr.     37,692.00
         /559 Bank transfer                                                   14,591.00
         /560 Net pay     14,591.00
         /561 Claim     5,609.00
    I request  some body to  throw siome light on the same.

    Hi Experts,
    Thanks for everyone for replying to my query ,
    I have a doubt that If you check the WTs /551 and /552  in the IN PRD, the negative sign is coming for both the WTs
    Is it correct?
    And also, Assume that there may be a master data changes like Bank details and other deduction Wts happened in the month of Aug and now i m going to run the payroll for the month of Nov,
    some of the employees having differences in the Net Pay, Eventhough the employee is having sufficient balances.
    So how do i handle this issue
    IS ther any way to solve this differences?
    Please Let me know how to solve this issue.
    Thanks

  • Lenovo G560 - Issue with won't boot and black screen after HDD upgrade

    Lenovo G560 - Issue with won't boot and black screen after HDD upgrade.
     What happen: My laptop was working fine, no blue screen issue, no funny business at all. I bought a new SSD Intel 120 GB and thought it would be a good idea to replace the HDD. I shutdown and disconnected the power adapter, waited a couple of minutes and removed the battery. I opened up the back case and replaced the HDD. And put all the screws back and put the battery back in.
    Problem: The very first time I turned the power on, nothing happens besides a black screen. I pressed the dvd drive it works and opens up and closes. I waited for about 30 mins and still has blac screen. When I mean black screen, no bios menu, no logo, just a black screen with the fan sound on.
    I have tried these:
    1. Unplugged everything - battery, adapter, and pressed the power on button for about 60 seconds, nothing, the laptop turns on with the LED display on for both on and battery LED's. But nothing but black screen, no sound of windows loading just the fan and black screen.
    2. I tried putting back my old 2.5" and nothing but black screen.
    Thoughts and suggestions?
    Solved!
    Go to Solution.

    Hi Autoexit173,
    Welcome to Lenovo Community!
     As per the query we understood that you are facing issue with system not booting in your Lenovo G560 laptop.
    As you have mentioned that the system not booting, please try to remove the RAM and  turn on the system and check if you can hear any beep sound. Also try to clean the RAM slots and check for the issue.
    Click here for the steps to remove the RAM and refer page number 40.
    Hope this helps. Do post back if issue persists!
    Best regards,       
    Ashwin.S
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • JPEG/PSD issue--I open a jpeg and edit it (levels, crop) and then "save as" and the save as option shows there are now levels in the image and it wants to save it as a .psd file or a copy with layers.  What am I doing that has these settings appear?

    JPEG/PSD issue--I open a jpeg and edit it (levels, crop) and then "save as" and the save as option shows there are now levels in the image and it wants to save it as a .psd file or a copy with layers.  What am I doing that has these settings appear?

    16bit? Pixels extending beyond the canvas? (from a crop with delete unused pixels turn off).  Have you previously been saving PSD files?
    IME you sometimes have to tell Photoshop that the first save of a session is JPG, and it remembers from there on.  The way to 'tell' Photoshop that JPG, or PDF, or PNG etc are now your preferred format is to Ctrl (Cmd) click on that format in the Save As drop down list.  So long as the file does not have parameters that your chosen format does not support, then this should work for you.
    [EDIT]  Just noticed that you did include 'Crop' in the subject line.  Do you have 'Delete cropped pixels' checked?

  • Is there an issue with Safari in Iphones and Ipads where it does not recognize option disabled="disabled" tag properly?

    Greetings everybody,
    I have run into a peculiar problem with the Safari browser on mobile platforms (IPad, IPod, IPhone) which I hope I can find a solution for in this community.
    I just launched a new website where I sell products with certain variations, for example please view this link: http://www.finerribbon.com/aegean-single-face-satin-ribbon.html
    On this particular product, the product variants are supposed to work in such a way where:
    If you select the value "1/8" from the "Choose Ribbon Width" field
    THEN
    The only options active and available to choose from in the "Choose Roll Size" field should be: 500 Yds, 20 Yds & Sample Swatch
    Now, if we browse to the above link in Safari using a desktop or a laptop, there are no problems at all, but if we browse to the above link using an IPhone or an Ipad, then we have a problem where all the options are available regardless of the values chosen, basically the above functonality does not work.
    I was told that there an issue with Safari in Iphones and Ipads where it does not recognize option disabled="disabled" tag properly, is this true? Can anyone advise me if there is a solution to this problem? I would sincerely apperciate it.
    Thank you very much for your time and help!

    Hi...
    I have run into a peculiar problem with the Safari browser on mobile platforms (IPad, IPod, IPhone) which I hope I can find a solution for in this community.
    Now, if we browse to the above link in Safari using a desktop or a laptop, there are no problems at all, but if we browse to the above link using an IPhone or an Ipad, then we have a problem
    At the top of this window you'll see the following:
    Apple Support Communities > Mac OS & System Software > Safari > Discussions
    This the Safari forum for the Mac OS X.
    Better that you post your topic here  > Developer Forums: Apple Support Communities
    I do see on my iPad what you are rreferring to. But you shoudl get the feedback you need in the developer forum.

  • TS1363 My iPod Nano 7th Generation couldn't be detected by iTunes when I plugged in. I tried resolving the issue by uninstalling the iTunes and then install it back again but yet still the same problem exist. Can you please help me to solve this issue?

    My iPod Nano 7th Generation couldn't be detected by iTunes when I plugged in. I tried resolving the issue by uninstalling the iTunes and then install it back again but yet still the same problem exist. Can you please help me to solve this issue? I have already updated to the latest version of iTunes on my Windows 8 and I cannot synchronize my iPod for the time being. Please do help me to solve this problem. Thank You.

    uninstall all iTunes,5 programes,this worked for me after reinstall them

Maybe you are looking for

  • Pricing procedure for order with reference from order

    Dear Friends, If I create a sales order with reference to another sales order of different type, the pricing procedure is copied too. But I would to use another pricing procedure for second document I found the oss note 14136 but this is for referenc

  • Exception error_message in rfc function module

    Hi all, I am getting a short dump Raise exception in my R/3 system when calling a RFC function module in R/3 for printing  a label in LOFTWARE. The error analysis shows the that exception condition 'Nlink exception' condition raised . The rfc destina

  • How to export a slideshow in iPhoto 9.5 without losing quality

    Hi Would appreciate comments from the forum on how to best export a slideshow in iPhoto 9.5 without losing quality. I tried the highest quality option on the export menu but still noticed a signficant degradation in the quality of the slideshow in iP

  • Application Folders

    Hello! I just purchased a new MacBook Pro. I used migration assistant to transfer my files/applications over from my old MacBook Pro and everything seems to be there except there are two things I can't figure out... 1. On my "Downloads" stack, the la

  • Time machine not recognizing free space even though it "knows" about it

    Trying to back up to an external hard drive I'm getting this error from Time Machine when it tries to back up: "This backup is too large for the backup volume. The backup requires 52.5 GB but only 495.8 GB are available..." Clearly it KNOWS the space