XMPTextInput control height ignored in Flex 3 Properties

I need to set my XMPTextInput controls so that they have a height of 32.  I have tried this in many different ways and none of them work.  In Flex 3 in "Design" mode I select the control, open the properties tab and set the height to 32.  The control changes to the correct height.  When I run the panel the control height of 32 is ignored and a small height is used.
I even tried starting from scratch with a form that contains only one XMPTextInput field and I am still unable to increase the height.
Any ideas??
Fred

Jorg,
Thanks for the info.  Will this be addressed in Flash Builder 4?.  I am using  the canvas form layout.  What would be the best way to incorporate the xmpRead and xmpWrite events.  Does this have to be done for every instance of an TextInput control?  If so what would be the code to do this.
This is the code that I am currently using. 
Fred
<?xml version="1.0" encoding="utf-8"?>
<fi:XMPForm
        xmlns:mx="http://www.adobe.com/2006/mxml"
        xmlns:fi="com.adobe.xmp.components.*" width="1386" height="1000"
        label="Image Info" fontSize="14">
        <!-- Each namespace prefix that is used within an xmpPath-attribute,
         MUST BE registered at the top of EACH panel where it is referenced -->
            <fi:XMPNamespaces>
            <fi:XMPNamespace prefix="dc" value="http://purl.org/dc/elements/1.1/"/>
            <fi:XMPNamespace prefix="xmp" value="http://ns.adobe.com/xap/1.0/"/>
            <fi:XMPNamespace prefix="xmpRights" value="http://ns.adobe.com/xap/1.0/rights/"/>
            <fi:XMPNamespace prefix="my" value="http://ns.adobe.com/MyNamespace/"/>
            <!-- Create namespace for Fisher Fotos specific metadata information -->           
            <fi:XMPNamespace prefix="FileInfoPanel" value="http://ns.fisherfotoshots.com/FileInfoPanel/"/>
        </fi:XMPNamespaces>
            <mx:Canvas fontFamily="Verdana" fontSize="14" cornerRadius="1" id="sep01" height="974" width="1362" fontStyle="normal" textAlign="left">
            <mx:Label paddingLeft="10" paddingTop="10" text="Image Information" fontWeight="bold" fontStyle="italic" toolTip="This section contains general image information." width="50%" x="0" y="0"/>   
                <mx:Label text="Image Type" id="ImageType" fontStyle="italic" textAlign="right" toolTip="Select the image type." width="93" x="128" y="39.5"/>   
                    <fi:XMPComboBox width="396" id="cboImageType" xmpPath="FileInfoPanel:ImageType" fontSize="14" x="239" y="32" height="36">
                    <mx:ArrayCollection id="arrayImageType">
                        <mx:Object label="Select Image Type" data="Select Image Type"/>
                        <mx:Object label="Single" data="Single"/>
                        <mx:Object label="Panorama" data="Panorama"/>
                        <mx:Object label="Collage" data="Collage"/>
                        <mx:Object label="High Dynamic Range" data="High Dynamic Range"/>
                        <mx:Object label="Other" data="Other"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>           
                <mx:Label text="# Of Images" width="136" fontStyle="italic" textAlign="right" id="NumberImages" toolTip="Select the number of images or use the default 01." top="44" left="756"/>       
                <fi:XMPComboBox x="900" y="32" width="219" id="cboNumberImages" xmpPath="FileInfoPanel:NumberImages" height="36">
                    <mx:ArrayCollection id="arrayImageNumber">
                        <mx:Object label="Select Number Of Images" data="Select Number Of Images"/>
                        <mx:Object label="01" data="01"/>
                        <mx:Object label="02" data="02"/>
                        <mx:Object label="03" data="03"/>
                        <mx:Object label="04" data="04"/>
                        <mx:Object label="05" data="05"/>
                        <mx:Object label="06" data="06"/>
                        <mx:Object label="07" data="07"/>
                        <mx:Object label="08" data="08"/>
                        <mx:Object label="09" data="09"/>
                        <mx:Object label="10" data="10"/>
                        <mx:Object label="11" data="11"/>
                        <mx:Object label="12" data="12"/>
                        <mx:Object label="13" data="13"/>
                        <mx:Object label="14" data="14"/>
                        <mx:Object label="15" data="15"/>
                        <mx:Object label="16" data="16"/>
                        <mx:Object label="17" data="17"/>
                        <mx:Object label="18" data="18"/>
                        <mx:Object label="19" data="19"/>
                        <mx:Object label="20 Or More" data="20 Or More"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>    
                <mx:Label x="67" y="86.75" text="Orientation" width="154" id="Orientation" fontStyle="italic" textAlign="right" toolTip="Select the image orientation.  Horizontal=Landscape and Vertical=Portrait"/>       
                <fi:XMPComboBox x="239" y="79.25" width="396" id="cboOrientation" xmpPath="FileInfoPanel:Orientation" height="36">
                    <mx:ArrayCollection id="arrayOrientation">
                        <mx:Object label="Select Image Orientation" data="Select Image Orientation"/>
                        <mx:Object label="Horizontal" data="Horizontal"/>
                        <mx:Object label="Vertical" data="Vertical"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>       
                <mx:Label x="767.5" y="86.75" text="Calendar Usage" width="126" textAlign="right" fontStyle="italic" id="CalendarUsage" toolTip="Enter the month and year (ie. 10/2009) image was used in the calendar."/>
                <fi:XMPTextInput x="901.5" width="395" height="27" xmpPath="FileInfoPanel:CalendarUsage" id="txtCalendarUsage" fontSize="14" allowCommas="true" xmpType="Text" fontFamily="Verdana" y="86"/>
                <mx:Label x="76" y="133.5" text="Category" width="145" fontStyle="italic" textAlign="right" id="Category" toolTip="Select the primary image cateogry"/>   
                <fi:XMPComboBox x="239" y="126" width="396" id="cboCategory" xmpPath="FileInfoPanel:Catagory" height="36">
                    <mx:ArrayCollection id="arrayCategory">
                        <mx:Object label="Select Primary Category" data="Select Primary Catagory"/>
                        <mx:Object label="Landscape" data="Landscape"/>
                        <mx:Object label="Wildlife" data="Wildlife"/>
                        <mx:Object label="Underwater" data="Underwater"/>
                        <mx:Object label="Architecture" data="Architecture"/>
                        <mx:Object label="People" data="People"/>
                        <mx:Object label="Other" data="Other"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>
                <mx:Label x="746" y="133.5" text="Sub-Category" width="144" fontStyle="italic" textAlign="right" id="SubCategory" toolTip="Select the secondary image category or use the default None."/>
                <fi:XMPComboBox x="900.5" y="126" width="396" id="cboSubCategory" xmpPath="FileInfoPanel:SubCategory" height="36">
                    <mx:ArrayCollection id="arraySubCategory">
                        <mx:Object label="Select Secondary Category" data="Select Secondary Catagory"/>
                        <mx:Object label="None" data="None"/>
                        <mx:Object label="Landscape" data="Landscape"/>
                        <mx:Object label="Wildlife" data="Wildlife"/>
                        <mx:Object label="Underwater" data="Underwater"/>
                        <mx:Object label="People" data="People"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>       
            <fi:XMPSeparator x="10" y="180" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
            </fi:XMPSeparator>
            <mx:Text x="10" y="200" text="Copyright And Release Information" id="txtCopyrightReleaseInfo" fontWeight="bold" fontStyle="italic" toolTip="Items in the section deal with copyright filing and releases."/>   
            <mx:Label x="48" y="231" text="© Registration Number" width="173" fontStyle="italic" textAlign="right" id="CopyrightNumber" toolTip="Enter the number provided by the Copyright Office."/>
                <fi:XMPTextInput y="227" width="250" xmpPath="FileInfoPanel:CopyrightNumber" id="txtCopyrightNumber" height="27" x="239" borderThickness="1" cornerRadius="0" alpha="1.0" fontSize="14"/>
            <mx:Label x="710" y="224" text="© Registration Name" width="180" fontStyle="italic" textAlign="right" id="CopyrightName" toolTip="Enter the name that you used to file this copyright application"/>
                <fi:XMPTextInput  x="898" y="220" width="398.5" height="27" xmpPath="FileInfoPanel:CopyrightName" id="txtCopyrightName" fontSize="14"/>
            <mx:Label x="97" y="274.95" text="Model Release" width="124" id="ModelRelease" fontStyle="italic" textAlign="right" toolTip="If a model release was necessary for this image and was obtained select Yes.  Otherwise leave this option set to No"/>   
                    <fi:XMPComboBox x="239" y="267.45" width="107" id="cboModelRelease" xmpPath="FileInfoPanel:ModelRelease" height="36">
                    <mx:ArrayCollection id="arrayModelRelease">
                        <mx:Object label="Release?" data="Release?"/>
                        <mx:Object label="No" data="No"/>
                        <mx:Object label="Yes" data="Yes"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>
            <mx:Label x="746" y="267.4" text="Property Release" width="144" id="PropertyRelease" fontStyle="italic" textAlign="right" toolTip="If a property release was necessary for this image and was obtained select Yes.  Otherwise leave this option set to No"/>
                <fi:XMPComboBox x="898" y="259.85" id="cboPropertyRelease" width="107" xmpPath="FileInfoPanel:PropertyRelease" height="36.1">
                    <mx:ArrayCollection id="arrayPropertyRelease">
                        <mx:Object label="Release?" data="Release?"/>
                        <mx:Object label="No" data="No"/>
                        <mx:Object label="Yes" data="Yes"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>
            <mx:Label x="27" y="319" text="Date Of First Publication" width="194" id="DateOfFirstPublication" fontStyle="italic" textAlign="right" toolTip="Select Date of First Publication."/>
                <fi:XMPDateField x="239" y="318.95" width="250" id="datDateOfFirstPublication" xmpPath="FileInfoPanel:DateOfFirstPublication" height="27" showToday="true" dateFormatString="MM/DD/YYYY"/>
            <mx:Label x="647" y="319" text="Country Of First Publication" width="243" id="CountryOfFirstPublication" fontStyle="italic" textAlign="right" toolTip="Select or enter the Date of First Publication."/>
                <fi:XMPTextInput x="898" y="318" width="250" id="txtCountryOfFirstPublication" xmpPath="FileInfoPanel:CountryOfFirstPublication" height="27" fontSize="14"/>
            <fi:XMPSeparator x="10" y="354" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
            </fi:XMPSeparator>
            <mx:Text x="10" y="374" text="Stock Agency and Website Information" width="712" fontWeight="bold" fontStyle="italic" id="txtStockAgencyWebsiteInfo" toolTip="Items in this section are for Stock Agency and Website information"/>
            <mx:Label x="77" y="421.5" text="Stock Agency" width="151" fontStyle="italic" textAlign="right" id="StockAgency" toolTip="If the image has been uploaded to a stock agency, select the stock agency name.  Otherwise leave the option set to None."/>
                <fi:XMPComboBox x="239" y="414" width="250" id="cboStockAgency" xmpPath="FileInfoPanel:StockAgency" height="36">
                    <mx:ArrayCollection id="arrayStockAgency">
                        <mx:Object label="Stock Agency" data="Stock Agency"/>
                        <mx:Object label="None" data="None"/>                           
                        <mx:Object label="Alamy" data="Alamy"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>
            <mx:Label x="710" y="421.5" text="Agency Upload Date" width="182.5" fontStyle="italic" textAlign="right" id="AgencyUploadDate" toolTip="Enter the date when the image was uploaded."/>
            <fi:XMPDateField x="902" y="422" width="267" id="datAgencyUploadDate" xmpPath="FileInfoPanel:AgencyUploadDate" height="27" dateFormatString="MM/DD/YYYY"/>
            <mx:Label x="129" y="466.75" text="Website" width="95" id="lblWebsite" fontStyle="italic" textAlign="right" toolTip="If the image has been uploaded to the company website select Yes.  Otherwise select No."/>   
                <fi:XMPComboBox x="239" y="459" width="132" id="cboWebsite" xmpPath="FileInfoPanel:Website" height="36.5">
                    <mx:ArrayCollection id="arrayWebsite">
                        <mx:Object label="Uploaded?" data="Uploaded?"/>
                        <mx:Object label="No" data="No"/>
                        <mx:Object label="Yes" data="Yes"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>
            <mx:Label x="710" y="466.75" text="Website Upload Date" width="182.5" fontStyle="italic" textAlign="right" id="WebsiteUploadDate0" toolTip="Enter the date when the image was uploaded."/>
            <fi:XMPDateField x="902" y="466.75" width="267" id="datWebsiteUploadDate" xmpPath="FileInfoPanel:WebsiteUploadDate" height="27" dateFormatString="MM/DD/YYYY"/>              
            <fi:XMPSeparator x="10" y="512.5" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
            </fi:XMPSeparator>
            <mx:Text x="10" y="532.5" text="Art Print Information" fontWeight="bold" fontStyle="italic" id="txtArtPrintInfo"/>
            <mx:Label x="129" y="563.5" text="Art Print" width="102" id="ArtPrint" fontStyle="italic" textAlign="right" toolTip="If the image is to be sold as an Art Print select Yes, otherwise leave the default No selected."/>
            <fi:XMPComboBox x="239" y="556" width="107" id="cboArtPrint" xmpPath="FileInfoPanel:ArtPrint" height="36">
                    <mx:ArrayCollection id="arrayArtPrint">
                        <mx:Object label="ArtPrint?" data="ArtPrint?"/>
                        <mx:Object label="No" data="No"/>
                        <mx:Object label="Yes" data="Yes"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>
            <mx:Label x="77" y="607.5" text="Limited Edition" width="148" id="LimitedEdition" fontStyle="italic" textAlign="right" toolTip="If this is a limited edition select Yes, otherwise leave the default No selected."/>
            <fi:XMPComboBox x="239" y="600" width="107" id="cboLimitedEdition" xmpPath="FileInfoPanel:LimitedEdition" height="36">
                    <mx:ArrayCollection id="arrayLimitedEdition">
                        <mx:Object label="Limited?" data="Limited?"/>
                        <mx:Object label="No" data="No"/>
                        <mx:Object label="Yes" data="Yes"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>
            <mx:Label x="459" y="607.5" text="Edition Size" width="101" id="EditionSize" fontStyle="italic" textAlign="right" toolTip="Select the edition size."/>
            <fi:XMPComboBox x="568" y="600" width="140" id="cboEditionSize" xmpPath="FileInfoPanel:EditionSize" height="36">
                    <mx:ArrayCollection id="arrayEditionSize">
                        <mx:Object label="Edition Size" data="Edition Size"/>
                        <mx:Object label="N/A" data="N/A"/>
                        <mx:Object label="100" data="100"/>
                        <mx:Object label="250" data="250"/>
                        <mx:Object label="500" data="500"/>
                        <mx:Object label="1000" data="1000"/>
                        <mx:Object label="2500" data="2500"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>       
            <mx:Label x="733" y="607.5" text="Sold Out" width="154" id="SoldOut" fontStyle="italic" textAlign="right" toolTip="If print is sold out, select Yes, if not leave it selected to No."/>
            <fi:XMPComboBox x="902.5" y="600" width="120" id="cboSoldOut" xmpPath="FileInfoPanel:SoldOut" height="36">
                    <mx:ArrayCollection id="arraySoldOut">
                        <mx:Object label="Sold Out?" data="Sold Out?"/>
                        <mx:Object label="No" data="No"/>
                        <mx:Object label="Yes" data="Yes"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>
            <mx:Label x="77" y="654.5" text="Finish Options" width="151" id="FinishOptions" fontStyle="italic" textAlign="right" toolTip="Select the print finish type."/>
            <fi:XMPComboBox x="239" y="647" width="107" id="cboFinishOptions" xmpPath="FileInfoPanel:FinishOptions" height="36">
                    <mx:ArrayCollection id="arrayFinishOptions">
                        <mx:Object label="Options?" data="Options"/>
                        <mx:Object label="N/A" data="N/A"/>                       
                        <mx:Object label="Gloss" data="Gloss"/>
                        <mx:Object label="Satin" data="Satin"/>
                        <mx:Object label="Matte" data="Matte"/>
                    </mx:ArrayCollection>
                </fi:XMPComboBox>       
            <mx:Label x="768.5" y="654.5" text="Paper Options" width="126" textAlign="right" fontStyle="italic" id="PaperOptions" toolTip="Enter the print paper options for the image."/>
            <fi:XMPTextInput x="902.5" y="653.5" width="426" id="txtPaperOptions" xmpPath="FileInfoPanel:PaperOptions" height="27" fontSize="14" fontFamily="Verdana"/>
            <mx:Label x="77" y="700" text="Printer Profile" width="151" id="PrinterProfile" fontStyle="italic" textAlign="right" toolTip="Enter the printer profile(s) used to print image."/>
            <fi:XMPTextInput x="239" y="699" width="469" id="txtPrinterProfile" xmpPath="FileInfoPanel:PrinterProfile"  allowCommas="True" height="27" fontSize="14" fontFamily="Verdana"/>
            <mx:Label x="752.5" y="701" text="Release Date" width="142" fontStyle="italic" textAlign="right" id="ReleaseDate" toolTip="Enter the original release date for the image."/>
            <fi:XMPDateField x="902.5" y="696" width="266.5" id="datReleaseDate" xmpPath="FileInfoPanel:ReleaseDate" height="27" dateFormatString="MM/DD/YYYY"/>
            <mx:Label x="86.5" y="741" text="Print Size Options" width="142" textAlign="right" fontStyle="italic" id="PrintSize" toolTip="Enter available print sizes."/>
            <fi:XMPTextInput x="239.5" y="740" width="468.5" id="txtPrintSize" xmpPath="FileInfoPanel:PrintSize" allowCommas="True" height="27" fontSize="14" fontFamily="Verdana"/>
            <mx:Label x="705.5" y="741" text="Print Framing Options" width="188" id="FramingOptions" fontStyle="italic" textAlign="right" toolTip="Enter available framing options."/>
            <fi:XMPTextInput x="901.5" y="740" width="395" id="TxtPrintFrame" xmpPath="FileInfoPanel:FramingOptions" allowCommas="True" height="27" fontSize="14" fontFamily="Verdana"/>
            <fi:XMPSeparator x="10" y="782" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
            </fi:XMPSeparator>
            <mx:Text x="10" y="802" text="Price Information" fontWeight="bold" fontStyle="italic" id="txtPriceInfo"/>
            <mx:Label x="115" y="830" text="Wholesale Price" id="PrintWholesalePrice" fontStyle="italic" textAlign="right" toolTip="Enter the print Wholesale price."/>
            <fi:XMPTextInput x="238" y="829" width="138" id="txtWholesalePrice" xmpType="Text" xmpPath="FileInfoPanel:PrintWholesalePrice" height="27" fontSize="14"/>
            <mx:Label x="115" text="Retail Price" y="865" width="113" textAlign="right" fontStyle="italic" id="PrintRetailPrice" toolTip="Enter the print Retail price."/>
            <fi:XMPTextInput x="239" y="864" width="137" id="txtRetailPrice" xmpType="Text" xmpPath="FileInfoPanel:PrintRetailPrice" height="27" fontSize="14"/>
            <mx:Label x="736" y="862" text="Retail Framed Price" id="RetailFramePrice" fontStyle="italic" textAlign="right" width="158" toolTip="Enter retail framed print price."/>
            <fi:XMPTextInput x="902" y="861" width="159" id="txtRetailFramedPrice" xmpType="Text" xmpPath="FileInfoPanel:RetailFramePrice" height="27" fontSize="14"/>
            <fi:XMPSeparator x="5" y="1022" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
            </fi:XMPSeparator>
            <mx:Label x="10" y="921" text="Image Info Panel © 2009 Fisher Fotos.  Version 9.3.5.  Last Modified 02/04/2010." id="txtPanelInfo" fontWeight="bold" fontStyle="italic" textAlign="center" width="1363"/>
            <fi:XMPSeparator x="0" y="901" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
            </fi:XMPSeparator>
            <fi:XMPSeparator x="0" y="952" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
            </fi:XMPSeparator>           
        </mx:Canvas>
</fi:XMPForm>

Similar Messages

  • Problem with Layout / Missing Buttons in Flex Bulder Properties under Windows 7

    Hi Guys,
    I'have a very urgent problem wich i need to get fixed, but I didn't find any solution on the web.
    I upgraded to Windows7 Professional 64. After installing Flex Builder3 with all its updates I wanted to change the run/debug settings in the properties of the project.
    Unfortunatly the buttons on the rigth (edit, remove, etc won't show) i reinstalled flex builder 3 standalone several times without any luck.
    I checked if there are areas wich also don't look right. in the flex programm properties i cant add any new sdk. Buttons there are also not there.
    Please somebody maybe from adobe can help to solve this issue ?
    best regards
    Carsten

    Thanks alot David for trying to help. After spending several hours searching i found the problem.
    Believe it or not, the problem is caused by the Logitech Drivers.
    The Problem already existed in Vista 64bit.
    See this Post.
    http://cookbooks.adobe.com/post_Flex_Builder_3_on_Windows_Vista_64_bits_issues-12826.html
    After uninstalling the SetPoint Software everything is looking normal again.
    Thanks again for your help.
    Carsten

  • Control Item Types Desc Flex

    I am trying to define a DFF for Change Orders using "Control Item Types Desc Flex". When I define, it appears in Issues , Change Requests and Change Orders.
    How do i make it avialable only for chang orders and define different for issues.
    Thanks in advance

    These DFFs are common to control items (CI , CO & CR) . So all pages (Change Requests , Change Orders and Issues ) will be having this DFF. One way which can be thought of is using personalization , you can hide in page you want.But here also one thing to be noted is , if you have some required segments defined for DFF, hiding DFF will cause submit error as required attribute value is not provided.
    So in case required segment is there , defined some default value to that segment.
    Hope this helps
    Thanks

  • NPS Not Respecting to Ignore User Dial-in Properties

    Two domains, one works fine against it's NPS and the other does not; both look to have settings the same. 
    The one with issues is continually failing authentication with: "The Network Access Permission setting in the dial-in properties of the user account in Active Directory is set to Deny access to the user."
    Every AD user we checked has the box checked to rely on NPS policy (none are set to deny) and the single policy we have set is set to allow and to ignore user-specific dial-in properties. 
    Policy conditions are NAS Port Type: Wireless/Wireless Other, Windows Groups (domain users) and Authentication Type EAP. Machine certificate is set correctly with PEAP and nothing else is different than defaults.
    Any ideas on what's going on here?
    This topic first appeared in the Spiceworks Community

    Hi,
    According to this article:
    If the value of Network Access Permission is Control access through NPS Network Policy, NPS makes authorization decisions based solely on network policy settings.
    Managing Network Policies
    http://technet.microsoft.com/en-us/library/cc732724(v=ws.10).aspx
    Configure NPS to Ignore User Account Dial-in Properties
    http://technet.microsoft.com/en-us/library/cc732252(v=ws.10).aspx
    So I guess NPS is not configured properly or not working properly.
    Please check the checklist about deploying wireless authentication.
    Deploying 802.1X Authenticated Wireless Access
    http://technet.microsoft.com/en-us/library/dd282998(v=ws.10).aspx
    In addition, you can also have a look at event log. This may give us some clue.
    Hope this helps.

  • Windows server 2008 can't access control panel and can't choose "properties" under "my computer"

    Hello everyone!
    Today after a schedule restart on the night I thought everything was normal with my server. But When i go to "start -> control panel" it show me "empty". And if I try to lunch "change/remove software" via search window in
    "start" then nothing happen. 
    I know also that I can't right click on "computer" and choose "properties" in the start-menu. 
    Also another problem. I did install Fbackup to make schedule file backups on the night. The software worked well to launch when I had installed it, but after the night, this morning it just crash on launch.
    I can also tell that I did add from 4 CPU core to 6 CPU cores.

    Hi,
    Have you tried to see if the issue persists when you boot into Safe Mode? Since you it shows blank when accessing Control Panel, please check if the policy setting below has been
    configured.
    Please choose Start – Run - type (gpedit.msc) - click on (Administrative Templates) - (control Panel) -
    Prohibit access to Control Panel and Show only specified Control Panel applets. If they were configured, please disable them to see if it could resolve the issue.
    In addition, the issue may also be caused by the virus, please run a system scan to see if there is any virus. At this time, you can also launch Control Panel apps from the command
    line, and here's a list of .cpl files for your reference that you can print out:
    Accessibility Options
    access.cpl
    Add/Remove Programs
    appwiz.cpl
    Add Hardware Wizard
    hdwwiz.cpl
    Automatic Updates
    wuaucpl.cpl
    Bluetooth Properties
    bthprops.cpl
    Display Properties
    desk.cpl
    Firewall Properties
    firewall.cpl
    Game Controllers
    joy.cpl
    Internet Options
    inetcpl.cpl
    iSCSI Initiator
    iscsicpl.cpl
    Java Control Panel
    jpicpl32.cpl
    Licensing Mode
    liccpa.cpl
    Mouse Properties
    main.cpl
    Network Connections
    ncpa.cpl
    Network Setup Wizard
    netsetup.cpl
    ODBC Properties
    odbccp32.cpl
    Power Options
    powercfg.cpl
    Regional and Language Options
    intl.cpl
    Sound and Audio Devices
    mmsys.cpl
    Stored Passwords
    keymgr.cpl
    System Properties
    sysdm.cpl
    Telephone and Modem Properties
    telephon.cpl
    Time and Date Settings
    timedate.cpl
    User Accounts
    nusrmgr.cpl
    Windows Security Center
    wscui.cpl
    Wireless Link
    irprops.cpl
    Hope this helps.
    Regards,
    Andy Qi
    Andy Qi
    TechNet Community Support

  • [Bug] Default control style ignored in classes

    Taking time out from LVOOP before I break something I may regret to report a bit of a nuisance.  What is cheesing me off today is that my default control style (system) is being brazenly ignored by LV inside VIs which are owned by a class.  All controls/indicators created are modern.  argh.  Could be worse, it could be making everything silver.
    1. set default style to system or silver or classic
    2. in a vi outside of a class, drop a constant on the BD and create indicator -> should match the style set in 1
    3. in a vi inside of a class drop a constant on the BD and create indicator -> modern style
    Also, the scripting VIs for methods and accessors ignore the preferences for default label position.  At least that one I can fix myself.

    Hi Darin,
    Thank you for your feedback. I tried creating indicators inside of a VI in a class and it observed my default control style in LabVIEW 2013. Which version of LabVIEW are you running?
    Regards,
    Matthew B.
    Applications Engineer
    National Instruments

  • Control Height Of Region Containing JSR-168 Portlet

    We are in the process of converting some portlets from Oracle Reports to JSR-168. Our intitial portal page would contain the Oracle Reports portlets within the height of the region. The same output created by a JSR-168 portlet causes the region to grow vertically, which pushes the regions below it down thereby creating large gaps.
    The Oracle Reports portlet would have a scrollbar that allows the user to see all of the content hidden below the bottom of the region. No matter what css I apply, I cannot make the same thing happen with the JSR-168 portlet.
    Does anyone have any tips for constraining the vertical size of the regions so that they do not grow to accommodate all of the content but instead produce a scrollbar?

    Andre,
    When you drag a project folder over to a portal, workshop doesn't
    scan/detect the folder contents and create portlets accordingly. So, you
    are creating the wrong portlet type.
    In this case, you need to create the portlet via the file wizard. Just
    right-click on the directory where you want the portlet to live and
    select 'New->Portlet' to get the wizard. Then, select the portlet type:
    'Java Portlet'.
    -robert
    Andre Ranvik wrote:
    Is there anybody who has experience with deploying JSR 168 portlets on WLS 8.1SP2
    that have been "handcoded". The portlets I am trying to deploy are these:
    http://developers.sun.com/prodtech/portalserver/reference/techart/jsr168/#2
    I have tried to manually import the individual folders/files, modified the portlet.xml,
    and dropping the folder containing the jsp's onto a portal within Workshop. I
    respond "yes" to the question whether I want it to create a portlet. The problem
    is that it doesn't recognize this to be a JSR 168 portlet (or it doesn't support
    it??).
    I have also tried to deploy a portlet within a WAR file, but no such luck.
    Support for JSR 168 implies that one would expect support for deploying JSR 168
    portlets developed on other platforms.
    I am hoping for a step-by-step set of instructions on how this can be accomplished.
    Thanks a bunch!
    Andre Ranvik

  • Control Height&Width of pages in Acrobat doc

    I want to reduce the size of some pages in a pdf document.
    The document contains both searcheable text and pictures.
    But right now some of the pictures have ended up being to large.
    I don't understand how to control this.

    Sorry I used the wrong word in the first post, and there is no Edit option.
    The sentence should read:
    But right now some of the pages have ended up being to large.
    I am sure that Adobe would not overlook something basic like this!
    If I compile a number of existing pdfs into one pdf, surely I can then standardise their size, so that one page isn't twice the size of the next?

  • Controlling height of JPanels?

    I've got 3 panels on top of each other (like this GridLayout(3,1)).
    I want to scale the panel's height, so that their heights are 3:1:3. How do I do that? I loked at Dimension but I'm not sure if thats the way to do it?

    I think this is what you want. It uses GridBagLayout.
    Constructing GUI like this (just one column) was very simple.
    But if you add more columns and rows you will have to learn to manage Constraints on a larger scale.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    class Test extends JFrame
      public Test()
        addWindowListener(new WindowAdapter()
          public void windowClosing(WindowEvent e)
            dispose();
            System.exit(0);
        GridBagLayout gbl = new GridBagLayout();
        getContentPane().setLayout(gbl);
        GridBagConstraints gbc = new GridBagConstraints();
        JPanel p = new JPanel();
        p.setBorder(BorderFactory.createLineBorder(Color.blue, 5));
        p.setPreferredSize(new Dimension(100, 150));
        gbc.gridx = 0;
        gbc.gridy = 0;
        gbc.gridwidth = 1;
        gbc.gridheight = 1;
        gbc.fill = GridBagConstraints.NONE;
        gbc.insets = new Insets(0, 0, 0, 0);
        gbc.anchor = GridBagConstraints.NORTHWEST;
        gbc.weightx = 0;
        gbc.weighty = 1;
        getContentPane().add(p, gbc);
        JPanel p2 = new JPanel();
        p2.setBorder(BorderFactory.createLineBorder(Color.green.darker(), 5));
        p2.setPreferredSize(new Dimension(100, 50));
        gbc.gridy = 1;
        getContentPane().add(p2, gbc);
        JPanel p3 = new JPanel();
        p3.setBorder(BorderFactory.createLineBorder(Color.red.darker(), 5));
        p3.setPreferredSize(new Dimension(100, 150));
        gbc.gridy = 2;
        getContentPane().add(p3, gbc);
        pack();
      public static void main(String args[])
        Test mainFrame = new Test();
        mainFrame.setTitle("Test");
        mainFrame.setVisible(true);
    }Hope this helps,
    Boris

  • Control height on form tag?

    Can I make this code be only 25 px high? It seems to be
    naturally about 30-35 px high which is causing me design drama.
    <form action="/search/search.php" method="get">
    <input type="text" name="query" id="query" size="40">
    <input type="submit" value="Search">
    <input type="hidden" name="search" value="1">
    </form>
    Thanks!

    With CSS:
    form {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    background-color: #CC6666;
    input {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 12px;
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com

  • Flex properties file

    Hi. I've got some URL's in my Flex app that I'd like to pull
    into a properties file; the values will differ between our
    development and production systems. How do you get/set a properties
    file in Flex? Thanks.

    The Flex project properties files do not exist at run-time.
    Are you speaking in general, of needing to initialize your
    application at run time with some values?
    The simplest way to do this is to pass the values into the
    Flex app from the html wrapper, via flashvars. You just need a
    different version of the wrapper for each different deployment.
    This is the way I do it. It also makes it easy to have different
    launch configurations in FlexBuilder.
    Another solution is to use HTTPService to load an xml file
    containing your initialization data. Of course that way you have to
    have an URL for the HTTPService...
    Tracy

  • Is it possible to embed an external control (eg ActiveX) into a Flex app?

    I'd like to build an app, and Flex seems to be a good option.
    The Flex stuff would be hosted in an application within the Adobe
    ActiveX Flash Player. The communication between the hosting
    application and the Flex application would be possible via the
    ExternalInterface. However, I'd need to embed a special control (in
    fact a word processor) in one of the panels of the Flex
    application. Is there a way to do it? It could be a browser window
    as well.
    Thx

    I am new to flex myself but as musch as i know and if i have
    rightly understood your problem than if the control is compatible
    to flex ie: written in action script version supported by the flex
    version you are using than you can create a library project and add
    the action script code to it. now add the flex library project or
    the resulting .SWC file to your original project's library build
    path. your new control will apear in the custom controls
    list

  • Need Example how to use Tab Control properties...pls?

    Hi all,
    I would like to request for an example on using the Tab control and how to use its properties.
    Thanks in advance,
    juni

    Searching for Tab Control on NI Home yields several results. I find the following relevant to your request. I'll suggest you repeat the search for more examples.
    http://zone.ni.com/devzone/explprog.nsf/6c163603265406328625682a006ed37d/bcf35c2bdbf132d786256945007d8004?OpenDocument
    http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/c050233a993f14f88625698e007eb082?OpenDocument

  • How to access properties of swf created with pdf2swf

    Hi all-
    I am new to flex, I have been using pdf2swf to convert
    multi-page pdfs to swf files and then load them in adobe flex. I am
    able to load the files correctly with SWFLoader but not access the
    properties to advance the frames (play, stop). I have been scouring
    the internet for a way to do this that I understand.
    I have tried doing something like:
    var mymovie:MovieClip = MovieClip(myloader.content);
    and then using
    mymovie.play();
    which I can't seem to get to work.
    Has anyone here done this successfully. If so, could you give
    me an example of how this is done?
    Thanks,
    Cameron Bracken

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    Flex 3 - Embedding asset types:
    You can embed Button and MovieClip symbols in a Flex
    application, but you cannot embed ... Alternatively, if you use the
    SWFLoader control to load the Flex
    Link:
    http://livedocs.adobe.com/flex/3/html/embed_4.html
    BrideL.OrG Blog Archive Importing a SWF into Flex with AS3:
    Jul 4, 2006 ... Just to say thanks for posting the SWFLoader
    example, the ONLY one on the ... controlling frames using the
    movieclip details via SWFLoader.
    Link:
    http://www.bridel.org/?p=9
    All Classes (Flex 3):
    mx.skins.halo, The skin for the border of a SWFLoader or
    Image component when ..... mx.core, FlexMovieClip is a subclass of
    the Player's MovieClip class.
    Link:
    http://livedocs.adobe.com/flex/3/langref/class-summary.html
    Cannot load the SWFLoader content in a movieclip - Flex
    India:
    May 17, 2007 ... implementation of movieClip class in as2 is
    different from as3. ... Im just trying to load a .swf in flex. Im
    using SWFLoader
    Link:
    http://groups.google.com/group/flex_india/msg/85ec872c7d94851a
    S (Flex 3):
    SWFLoader. A flag that indicates whether to scale the content
    to fit the ..... for the content in the browser, such as
    'www.adobe.com' or 'www.example.org'.
    Link:
    http://livedocs.adobe.com/flex/3/langref/all-index-S.html
    SWFLoader gotoAndStop [Archive] - ActionScript.org Forums:
    Jun 27, 2006 ... [Archive] SWFLoader gotoAndStop Flex 2 &
    3. ... Is there any way that it is possible to cast the movieclip
    to flash 9 movieclip?
    Link:
    http://www.actionscript.org/forums/archive/index.php3/t-109586.html
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • Flex Builder 3 forgets valid serial number, constant prompt

    Hi all,
    I installed Flex Builder 3 on a Windows XP 32 bit machine under one user account. It came up and worked great for several days. Later on, I made another user account and tried to use Flex Builder 3. Each time it starts up it says my trial period is expired and I need to enter a serial number. At that point I re-enter my serial and it accepts it as valid. However, as soon as I move to build a project or do practically anything, the program re-prompts that my trial period is expired and I need to re-enter a valid serial.
    I have uninstalled and reinstalled Flex Builder a number of times, but that does not help this issue. I have deleted the file c:\Documents and Settings\Application Data\Adobe\Flex\license.properties, but that does not fix the issue. Deleting this file gives me a new trial period and the same behavior of accepting and "forgetting"/"ignoring" my valid serial number. One note, this file does contain my serial number and the date and time that the program most recently accepted it as a valid serial number.
    Are there registry keys that perhaps did not get unset or other "magic files" that I need to delete to completely reset the serialization process? It is very frustrating that it is not accepting and "remembering" the valid license key.
    Thanks for any guidance!

    Maybe you could try this -> http://forums.adobe.com/message/2650236#2650236
    I have the same problem, but it's unsolved, cause I'm working on a mac…
    Regards
    Guillaume

Maybe you are looking for

  • Can my iPhone 5 be hacked through a free app downloaded from the App store?

    I updated my phone to iOS 6.1.3 today. This evening (two hours ago) I downloaded a free app called "Caption Pics" by Viral Media Entertainment. About 15 minutes ago, something weird happened. I had 6 apps that the App Store wanted to update. I went t

  • MacAir - Apple USB Ethernet Adapter Drive

    Hi, im using macair, and trying to install bootcamp for windows Vista / XP. however, im having difficulties to download driver for Apple USB Ethernet Adapter. if anyone know where to download this driver, please advise me..

  • Unable to read picklist

    Hi i am trying to read picklist value using crm od web services.This is the java code i am using PicklistQuery pickquery=new PicklistQuery(); pickquery.setName("Account Type"); PicklistSetQuery picksetquery=new PicklistSetQuery(); picksetquery.setObj

  • How to avoid invoice split due to different billing due dates?

    Dear All, How to avoid invoice split due to different billing due dates for the group of  outbound deliveries? Thanks in advance. Regards, Niketan

  • Format Date

    Hi I've created a field of Date type. and It store the values as YYYY-MM-DD How can I view the date as DD-MM-YYYY ? I'm using Dreamweaver MX MySQl/PHP <?php echo $row_rsgrad['date_hiring']; ?>