Issue with FontWeight property in Custom Control

I have a user control which contains new FontWeight DependencyProperty as shown below. But when I set this property from XAML, it throws exception "Failed to create a 'Windows.UI.Text.FontWeight' from the text 'Normal'." It works properly if I set it through
code.
public new FontWeight FontWeight
get
return (FontWeight)(GetValue(FontWeightProperty));
set
SetValue(FontWeightProperty, value);
In the similar manner, I have created FontStyle property also but it does not throw any exception from XAML.

Sorry, you're right TypeConverters are not supported. The only option I see to be notified when the FontWeight (or whatever) property on your Control has been changed, is to add another property with exactly the same type, but of course another name, and
use databinding on the property you wish to monitor.
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<local:FontWeightTestUserControl Name="richEditBoxContainerUserControl" FontWeight="Black"
FontWeight2="{Binding ElementName=richEditBoxContainerUserControl, Path=FontWeight}"/>
</Grid>
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Text;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Documents;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
// The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236
namespace TestRichEdit
public sealed partial class FontWeightTestUserControl : UserControl
private FontWeight _fontWeight;
public static readonly DependencyProperty FontWeight2Property = DependencyProperty.Register("FontWeight2", typeof(FontWeight),
typeof(FontWeightTestUserControl), new PropertyMetadata(null, FontWeightTestUserControl.FontWeight2PropertyChangedCallback));
private static void FontWeight2PropertyChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
((FontWeightTestUserControl)d).FontWeight2 = (FontWeight)e.NewValue;
public FontWeightTestUserControl()
this.InitializeComponent();
public FontWeight FontWeight2
get
return this._fontWeight;
set
this._fontWeight = value;
As soon as the FontWeight property is set in XAML the FontWeight2 property is also updated. That's your queue.

Similar Messages

  • Issue with input field in table control

    Hi,
    I have an issue with field acgl_item-rstgr in the table control.
    I have created a screen program with a table control.
    In the control i have added a dictionary field as acgl_item-rstgr.
    When i execute, do f4 on the input field, select a value and press enter, then it is showing me
    error as 'Entry 'val' does not exist in T053R (check entry). Its really weird to understand this. I have selected the value
    from f4 and even then it says this. Its working for all other columns, but not working only for RSTGR.
    Plz help me on this regard.
    Code is like this.
    TYPES : BEGIN OF ty_rstgr,
              rstgr TYPE RSTGR,
             END OF ty_rstgr.
    TABLES : ACGL_ITEM.
    DATA : it_rstgr TYPE TABLE OF ty_rstgr.
    DATA : wa_rstgr TYPE  ty_rstgr.
    CONTROLS : table TYPE TABLEVIEW USING SCREEN 100.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    LOOP AT it_rstgr INTO wa_rstgr WITH CONTROL TABLE.
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0100.
      LOOP AT it_rstgr.
      ENDLOOP.
    Thanks,

    Hi Navitha,
    Its Check Table concepts for the error u stated. Please check wht the Search help ur using...Because for this field there is no search help at value table level...Use search help that hold all master data or create a custom search field in SE11 level or in program level.
    Cheers,
    Naveen

  • I am facing issue with the new iOS 7 control center; where I am not able to stop Music or go to next track from this shortcut center. Any Solution or Settings ?

    Hi,
    I have upgraded my iphone 5 to new iOS7 where I see that we have a new shorcut feature Control Center to turn on Wifi, Blutooth, Air Play etc..In the same we have for MUSIC where I am not able to pause or stop music and also cant go to next track and issue withe those buttons.
    Please let me know any seetings needs to changed.
    Thanks
    Niranjan

    Last point...who archives? On my regular email page I now have the Archive icon to the left of my Delete icon which I would prefer was to the left, first in the line as this is the icon I use mostly. With Folders, my Sent and Trash lists, who needs to archive?
    I can help you only with the placement of the icon placement -- if you right-mouse click on the toolbar, then select Customize Toolbar, you can move an icon to where you want it to be.

  • Issue with WRVS4400N v2 bandwith rate control (firmware 2.0.1.3)

    I have an issue with the QOS setting / bandwith rate control.
    I've tested it with a new factory config.
    Setup : limit my IP (all ports) to max rate at 512 Kbit/sec (min rate to 1 Kbit/sec) in downstream and enable checked.
    When I test my speed, there is no limit.
    If it try the exact setup with a RVS4400 (without wireless) it works fine!!!
    Does anyone have this issue or know how to solve it???
    Thanks in advance
    Al
    Here is my setup... (and yes when I made sure I'm using 192.168.1.101 while doing the test...)

    I have upgraded to the latest firmware V 2.0.2.1 with no difference.
    The Rate control function is not working at all.
    Cicso doesnt appear to want to fix it.

  • Issue with creating array of custom data type - WebLogic Integration

    Hi,
    We are doing WebLogic integration with Siebel for which from Siebel side we have generated java wrapper class which has all the methods, input\outputs defined and in\out params are serialized along with get\set methods. Following are the details of the input\output args.
    Account_EMRIO.java
    public class Account_EMRIO implements Serializable, Cloneable, SiebelHierarchy {
    protected String fIntObjectFormat = null;
    protected String fMessageType = "Integration Object";
    protected String fMessageId = null;
    protected String fIntObjectName = "Account_EMR";
    protected String fOutputIntObjectName = "Account_EMR";
    protected ArrayList <AccountIC> fintObjInst = null;
    Above class also includes constructors\overloaded constructor\getters\setters
    public AccountIC getfintObjInst() {    
    if(fintObjInst != null) {
    return (AccountIC)fintObjInst.clone();
    }else{
    return null;
    public void setfintObjInst(AccountIC val) {
    if(val != null) {
    if(fintObjInst == null) { 
    fintObjInst = new ArrayList<AccountIC>();
    fintObjInst.add(val);
    For the nested user defined data type AccountIC, it is defined in another java class as below
    AccountIC.java
    public class AccountIC implements Serializable, Cloneable, SiebelHierarchy {
    protected String fname = null;
    protected String fParent_Account_Id= null;
    protected String fPrimary_Organization = null;
    With the above, I was able to get all the AccountIC in the wsdl correctly and using this I was able to set the input param in the client
    WSDL:
    <xs:complexType name="accountEMRIO">
    <xs:sequence>
    <xs:element name="fIntObjectFormat" type="xs:string" minOccurs="0"/>
    <xs:element name="fIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageId" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageType" type="xs:string" minOccurs="0"/>
    <xs:element name="fOutputIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fintObjInst" type="tns:accountIC" minOccurs="0"/>
    </xs:sequence>
    <xs:complexType name="accountIC">
    <xs:sequence>
    <xs:element name="fName" type="xs:string" minOccurs="0"/>
    <xs:element name="fParent_Account_Id" type="xs:string" minOccurs="0"/>
    <xs:element name="fPrimary_Organization" type="xs:string" minOccurs="0"/>
    minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    Now, I wanted to make slight difference in getter method of class Account_EMRIO method getfintObjInst so that an array of AccountIC is retured as output.
    public ArrayList<AccountIC> getfintObjInst() {    
    if(fintObjInst != null) {
    return (ArrayList<AccountIC>)fintObjInst.clone();
    }else{
    return null;
    With the above change, once the wsdl is generated, I am no longer getting fintObjInst field for AccountIC due to which I am unable to get the array list of accountIC
    WSDL:
    <xs:complexType name="accountEMRIO">
    <xs:sequence>
    <xs:element name="fIntObjectFormat" type="xs:string" minOccurs="0"/>
    <xs:element name="fIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageId" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageType" type="xs:string" minOccurs="0"/>
    <xs:element name="fOutputIntObjectName" type="xs:string" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    The issue that I am facing here is, we have a custom data type(AccountIC) which has several fields in it. In the output I need a array of AccountIC. In the java bean, when this type was defined as
    protected ArrayList <AccountIC> fintObjInst = null; I was unable to get a array of AccountIC. this gets complicated as inside a AccountIC there is array of contacts as well and all the time I am getting just the first records and not a array.
    To summarize: How to get xsd:list or maxoccurs property for a field in WSDL for the user defined\custom datatype?
    Can someone help me with this.
    Thanks,
    Sudha.

    can someone help with this??

  • Is anyone having issues with their iPhone 5 music controls in a 2012 Hyundai Accent, both on Bluetooth and using a headphone or USB cable?  My music plays but I cannot skip songs without physically using the iPhone 5 controls.  Thanks!

    Hello,
    I have an AT&T iPhone 5 purchased from an AT&T store - it is a normal phone, no changes, no jailbreaking.  I tried using my phone and my girlfriend’s iPhone 5 with the USB auxiliary cable in my 2012 Hyundai Accent.  No matter what connector I use (headphone, USB, auxiliary) it doesn't charge or allow me to use the Hyundai’s controls to change music.  Music will play through the Bluetooth system, but I cannot control the music unless I physically touch my iPhone.  My iPhone 4 has a USB auxiliary cable and works perfectly; it charges and I have full control of my music without having to touch my phone. Nothing works even if I use the adapter that connects the iPhone 4 charger end to the iPhone 5. The picture below shows the iPhone 4 USB cable but it needs to have the (blue) iPhone 5 adapter.
    Here’s the best part of this whole situation.  I was told by Hyundai Customer Care that there is a specific USB cable available for my iPhone and that I need to contact a dealer.  However, two Hyundai dealerships have told me that they do not have a cable, that Apple has not made a cable for the iPhone 5, and that I need to contact Apple directly or order it from an Apple store.  It gets better.  I contacted an Apple Store and they told me to contact Hyundai.  I explained what I wrote above and they put on a call with Apple Customer Care.  After 37 minutes on the phone with Apple, they still couldn't give me a satisfactory answer on how to get this cable or if they even had a cable (Case ID 505467409).
    So here is the magical question:   Is there a working adapter for the iPhone 5 that connect to a 2012 Hyundai Accent? It needs to play music, charge the phone, and work with the car’s controls.  Thanks!
    -sam

    The problem is that you're using an uncertified lightning to 30-pin connector (the blue cable).  If you purchase the 30-pin to lightning cable (either online, at an Apple store or an authorized dealer) it should work fine.
    I have a 2011 Tuscon and tried the lightning to USB cable that came with the phone - no dice.  Talked to my local Hyundai dealer and they don't have an eta on the Hyundai lightning cables (I'm sure it's in the works).
    Lightning to 30-Pin Adapter (0.2M)
    Part Number: MD824ZM/A
    http://store.apple.com/us/product/MD823ZM/A/lightning-to-30-pin-adapter?fnode=48
    $29 in the US store, $45 in Canada (yes, even though our dollar has been par for years)

  • Issue with calling url using custom uri from page loaded in stagewebview

    I am using stageWebView for showing webpage in my mobile app but don't know how to move back to my app once it gets loaded. In application descriptor file, I had already registered custom uri scheme (myapp://) for IOS devices and from the loaded page inside stageWebView, I was trying to call following URL myapp://webcam. But nothing had happened. It neither called LOCATION_CHANGE event of StageWebView not called INVOKE_EVENT of nativeapplication.
    How can I fix this issue?
    Thanks in advance,
    Mamta

    Hi Ashutosh,
    yea it gets launched correctly from safari. But my problem is with the link(which is using custom uri scheme e.g myapp://backtoapp) in the loaded page inside StageWebView. It is not allowing app to moveback to app from StageWebView. Moreover these two event listeners INVOKE_EVENT(native application) and LOCATION_CHANGE(stagewebview) are not responding. Dont know what should I do in order to move back to app area(mainView.mxml) from StageWebView(native browser).
    Thanks,
    Mamta

  • Issue with dropdown menu on Custom List Form

    Hello everyone,
    Recently I created a custom list with a few lookup columns in it. When I open the form in Internet Explorer 9 or 10, the dropdowns pertaining to the lookup columns are extremently wide, even though each dropdown only contains 2 characters. However,
    if I open the form in Google Chome, and Firefox, the dropdowns are displayed properly.
    IE 9 Dropdown:
    Chrome Dropdown:
    If anybody has run into this issue and can point me in the right diretion, I will appreciate it. Thank you
    Fausto Capellan, Jr - SharePoint Admin

    Hi Fausto,
    According to your description, my understanding is that the drop-down list boxes of the lookup column became wide when using IE 9 or 10.
    Did you customize the list form in InfoPath?
    Per my test, the width of the drop-down list boxes can be customized in InfoPath.
    I tested in my environment, and the lookup column worked fine in IE 9 or 10.
    I recommend to add the SharePoint site to Compatibility View in IE to see if the issue still occurs.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Issue with chinese description for Customer master

    Dear All,
    In customer master there are few records with chinese characters. Now interesting thing is that sort field, street city etc are showning correct values in chinese characters but for medium description it is showing "#" .
    Why it is not showing chinese characters in only medium description field?
    Regards,
    SS

    Hi,
    Please check the language for the medium descritption field in the infoObject master data for the particular entry.
    Are there multiple languages maintained? what are the medium description texts against those?
    This can help to isolate the issue.
    Hope this helps!
    Regards,
    Saurabh

  • Issue with messagedownload field on custom OAF page

    We have a custom OAF page where we are displaying file attachments using messagedownload field.
    We have a VO for this field where we are fetching the file name and file (BLOB).
    For the message download field, the properties are set as:
    DataType: VARCHAR2
    View Instance: custom vo
    View attribute: filename
    File View Attribute: filedata(BLOB column)
    The issue is when we have multiple files to display of the same file type like 6 pdf files, the file name is correct, but the content is correct only for the first file. The remaining 5 files also show the content of the first file though the filename is correct.
    Please let us know if anyone faced similar issue and the probable solution.
    Thanks in advance.
    Regards,
    Kiranmayi.

    Check that the view object used to render the table must have a designated primary key, else download bean will download content from the first row every time.
    --Sushant

  • Attn Carl: Issue with interactive report and custom JavaScript

    I am trying to use interactive reports on the same page as a third-party JavaScript datepicker. The two components obviously interfere with each other, but I am not skilled enough in JavaScript to figure out why. It would be great if you could take a quick look.
    I am using the datepicker from http://yellow5.us/projects/datechooser/ (by the way, this is a really nice, lightweight datepicker that does not pop up a new window, and something like this should be built-in in the next version of Apex, instead of the cumbersome server-side popup that is currently in Apex. Consider this a post-3.1 enhancement request... :-).
    I have put up a simple demonstration page here:
    http://apex.oracle.com/pls/otn/f?p=36647:1
    When loading the page, Firefox complains (in the Error Console) that "event is not defined" on datechooser.js line 895, which looks like this:
    e = e || events.fix(event);
    (The error console in FF links to the full JS source code...)
    After the page has loaded, any clicks on the Interactive Report gives an error in the Error Console: "gReport has no properties".
    Internet Explorer (6.0) displays a similar warning message ("gReport.controls is null or not an object"), but the functionality (both datepicker and interactive report) still works.
    Would be eternally grateful if Carl or anyone JS-savvy could take a look at this problem...
    - Morten

    Hello,
    On line 931 of your file there is a call to attach the function to the window onload function
    events.add(window, 'load', function()......
    Try replacing that with this which is the way we do it in APEX , looks like that is where the conflict is.
    addLoadEvent(function().......
    I'm not sure this will fix it but hopefully it does, I can take a closer look tomorrow if it's doesn't.
    Consider this a post-3.1 enhancement requestCan you add to the enhancement thread.
    Regards,
    Carl
    blog : http://carlback.blogspot.com/
    apex examples : http://apex.oracle.com/pls/otn/f?p=11933:5

  • Issue with Video Demo and Custom Captivate Templates

    I recently bought a membership to ElearningBrothers Template library. I have used one of their custom Captivate templates for my current elearning project. Everything is fine except when I create video demos, the template seems to sit infront of the video, so that I can hear the narration, but the video won't display. Any ways to disable the custom template just for that slide?

    Nicolo - First off this stuff gets crazy sometimes.  No worries about the exam.  Sometimes when FXO ports go crazy it is due to battery reversal.  If you go to the FXO port settings try turning battery reversal on and or off... depending on its current setting.  See if that helps. 
    As for the 525s not registering..  These are inside the network correct?  Are you connecting one directly to the UC500 with a Cat5E or Cat6 patch cable and the same thing happens?  Does the MAC address on the phone match a MAC address under the EPHONE settings? 
    If you telnet into the UC500 can you execute a "dir" command at the CLI prompt and "CD" (change directory) into the phones folder and then the spa525g folder?  Do files exist in there? 
    Also I only see an IP address under BVI100?  This is the voice side of things what happened to the IP address under BVI1 (Data VLAN).  Can you give us some information about the internal network?  Cna you PING this phone system from the network?  What IP address does it have?

  • SP3 Upgrade - issue with portalRefresh property

    I had the BEA patch on SP2 to include the portalRefresh property for the .portlet files. After upgrading to SP3, one of my portlets is giving the following error -
    " <h1>Page Flow Error - No Relevant Page</h1>
    <span style="color:red">You have tried to return to a recent page in the current page flow through return-to="currentPage", but there is no appropriate page.</span>
    "No previous page for return-to="currentPage" on action portalRefresh in page flow /Controller.jpf."
    Any ideas?
    Kunal

    Why do you need to create 500 instances of schedules? How are you getting the users to publication? Are they dynamic users or enterprise users?
    If you have a report which gets all the users in the publication, there is no need to create hundreds of schedules for each user.
    'One DB fetch per each user' function - will fecth the data for each user in the publication (Enterprise or Dynamic users) while running the publication.

  • Issue in Custom Control UI element

    Hi there,
                   I have created 2 custom controls(SAP mobile 7.1), one for rendering images(actually map images) and another for capturing user's signature. Both are integrated into the main application and works fine when alone. But when present together, certainly on different screens in the main app, still it works but with rendering problems. Say when navigating from the screen that displays the map custom control to the screen that has the signature capuring custom control, the map image is still getting displayed over the signature custom control view.
               I wonder , if the problem is with disposing of the custom control. Can anyone suggest how to do that. Or something else has to be done?
    Regards,
    Aravind

    Hopefully someone more knowledgeable about custom controls \ SWT can add some input
    I do know disposing the SWT controls is important but not sure if it would solve your problem
    from our application that uses a few simple custom controls together, we definitely needed to use dispose or it would cause memory consumption issues and slow performance
    within the constructor
    [Text object].addDisposeListener(this);
    method to dispose color and fonts used
    public void widgetDisposed(DisposeEvent event)
                  font.dispose();
                  amber.dispose();

  • Problem with custom control and focus

    I've a problem with the focus in a custom control that contains a TextField and some custom nodes.
    If i create a form with some of these custom controls i'm not able to navigate through these fields by using the TAB key.
    I've implemented a KeyEvent listener on the custom control and was able to grab the focus and forward it to the embedded TextField by calling requestFocus() on the TextField but the problem is that the TextField won't get rid of the focus anymore. Means if i press TAB the first embedded TextField will get the focus, after pressing TAB again the embedded TextField in the next custom control will get the focus AND the former focused TextField still got the focus!?
    So i'm not able to remove the focus from an embeded TextField.
    Any idea how to do this ?

    Here you go, it contains the control, skin and behavior of the custom control, the css file and a test file that shows the problem...
    control:
    import javafx.scene.control.Control;
    import javafx.scene.control.TextField;
    public class TestInput extends Control {
        private static final String DEFAULT_STYLE_CLASS = "test-input";
        private TextField           textField;
        private int                 id;
        public TestInput(final int ID) {
            super();
            id = ID;
            textField = new TextField();
            init();
        private void init() {
            getStyleClass().add(DEFAULT_STYLE_CLASS);
        public TextField getTextField() {
            return textField;
        @Override protected String getUserAgentStylesheet() {
                return getClass().getResource("testinput.css").toExternalForm();
        @Override public String toString() {
            return "TestInput" + id + ": " + super.toString();
    }skin:
    import com.sun.javafx.scene.control.skin.SkinBase;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.event.EventHandler;
    import javafx.scene.control.TextField;
    import javafx.scene.input.KeyCode;
    import javafx.scene.input.KeyEvent;
    public class TestInputSkin extends SkinBase<TestInput, TestInputBehavior> {
        private TestInput control;
        private TextField textField;
        private boolean   initialized;
        public TestInputSkin(final TestInput CONTROL) {
            super(CONTROL, new TestInputBehavior(CONTROL));
            control     = CONTROL;
            textField   = control.getTextField();
            initialized = false;
            init();
        private void init() {
            initialized = true;
            paint();
        public final void paint() {
            if (!initialized) {
                init();
            getChildren().clear();
            getChildren().addAll(textField);
        @Override public final TestInput getSkinnable() {
            return control;
        @Override public final void dispose() {
            control = null;
    }behavior:
    import com.sun.javafx.scene.control.behavior.BehaviorBase;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.event.EventHandler;
    import javafx.scene.input.KeyCode;
    import javafx.scene.input.KeyEvent;
    public class TestInputBehavior extends BehaviorBase<TestInput> {
        private TestInput control;
        public TestInputBehavior(final TestInput CONTROL) {
            super(CONTROL);
            control = CONTROL;
            control.getTextField().addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>() {
                @Override public void handle(final KeyEvent EVENT) {
                    if (KeyEvent.KEY_PRESSED.equals(EVENT.getEventType())) {
                        keyPressed(EVENT);
            control.focusedProperty().addListener(new ChangeListener<Boolean>() {
                @Override public void changed(ObservableValue<? extends Boolean> ov, Boolean wasFocused, Boolean isFocused) {
                    if (isFocused) { isFocused(); } else { lostFocus(); }
        public void isFocused() {
            System.out.println(control.toString() + " got focus");
            control.getTextField().requestFocus();
        public void lostFocus() {
            System.out.println(control.toString() + " lost focus");
        public void keyPressed(KeyEvent EVENT) {
            if (KeyCode.TAB.equals(EVENT.getCode())) {
                control.getScene().getFocusOwner().requestFocus();
    }the css file:
    .test-input {
        -fx-skin: "TestInputSkin";
    }and finally the test app:
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.GridPane;
    import javafx.stage.Stage;
    public class Test extends Application {
        TestInput input1;
        TestInput input2;
        TestInput input3;
        TextField input4;
        TextField input5;
        TextField input6;
        Scene     scene;
        @Override public void start(final Stage STAGE) {
            setupStage(STAGE, setupScene());
        private Scene setupScene() {
            input1 = new TestInput(1);
            input2 = new TestInput(2);
            input3 = new TestInput(3);
            input4 = new TextField();
            input5 = new TextField();
            input6 = new TextField();
            GridPane pane = new GridPane();
            pane.add(input1, 1, 1);
            pane.add(input2, 1, 2);
            pane.add(input3, 1, 3);
            pane.add(input4, 2, 1);
            pane.add(input5, 2, 2);
            pane.add(input6, 2, 3);
            scene = new Scene(pane);
            return scene;
        private void setupStage(final Stage STAGE, final Scene SCENE) {
            STAGE.setTitle("Test");
            STAGE.setScene(SCENE);
            STAGE.show();
        public static void main(String[] args) {
            launch(args);
    The test app shows three custom controls on the left column and three standard textfields on the right column. If you press TAB you will see what i mean...

Maybe you are looking for

  • I need help with my Iphone 5

    During my IOS 8.3 update, my Iphone 5 went into recovery mode, and wont do anything else. It says to leave recovery mode, i need to restore my device, so i did and it says it can't restore it for some reason. What shall i do? (I havent even had the p

  • Where to find the API documentation for MS SQL Server 2000 JDBC

    I Downloaded and installed the MS SQL Server 2000 JDBC package, but I found that it does not provide enough help docs such as API documentation, demo and etc. It would be most grateful if you would provide some information about this driver.

  • RoboHelp 9 - Initial published display

    I'm pretty new to RoboHelp used it many years ago, When I publish as FlashHelp and click View Result the item displayed is the 3rd item down in my TOC instead of the first item. How do I publish and have the first topic display?

  • Has anyone else experienced their macbook powering off by itself after installing lion?

    This never happened before the lion install, but now it has happened twice and I can't restart without attempting power on mulitple times.

  • Black screen in Apple TV playback

    When playing TV shows recently, the screen goes, black for a second or so. The video is still streaming because it has advanced after the picture and sound come back. At times it will not happen at all, and other times it is really bad. Has anyone ha