Cannot show the chinese characters (HKSCS)

Dir Sir/Madam,
I type a Chinese character, which is a HKSCS character, in a form, Form6i with Oracle database 9.2.0.4.0. It can be shown on the screen but it becomes a white box and then disappears when the field lose forus. Moreover, it disappears when the save action is taken if I type it on the field without clicking or typing other fields.
I would like to know what NLS Lang and codepage should be set. And any other actions should be taken or any settings should be set.
Thank you very much for your kindly attention and help.
Steffany.

Hard to say where the problem lies because the unicode value for str should be "\u20214" or 0x20214. I don't what what &amp#220027 is.
Although I see str=ji�n when I view the post, I suspect that the actual code you use is in a HTML format of "& # 20214;", you can try this:
String str="\u20214";
and delete the codes under NCR2UnicodeString as well as the code that calls NCR2UnicodeString.
Good Luck!
VV

Similar Messages

  • Who knows how to read the Chinese Characters from JDBC?

    I wrote two files. One is a jsp file, the other is java file. But in the jsp file it cannot print the Chinese characters, only can print the English characters. I have changed the Character Coding of the browser, but it has no effects. However, the java file works much fine. It can print the both English and Chinese characters.
    This is a part of my codes.
    String query="SELECT * FROM MyDB.dbo.BookList WHERE bookname like \'Java%\'";
    ResultSet rs=sm.executeQuery(query);
    rs.next();
    out.println(rs.getString(1));
    MyDB is a database in the SQL server.

    Hi,
    Did you try setting the contentType/charset of the JSP page? The default is latin, I think.
    <%@ page ... contentType="text/html; charset=character_set" ... %>
    Maybe this helps? At least it could give you a start of where to look...
    Best,
    Guy
    http://www.atomikos.com - JTA transactions

  • Error :cannot show the value of the filter.The Field may not be filterable or the number of items returned exceeds the list view threshold enforced by administrator

    Issue : In sharepoint 2013, I am experiening below error while using filter in the list view due to the number of items in this list exceeds the list view threshold, which is 10000 items. Tasks that cause excessive server load (such as those
    involving all list items) are currently prohibited.
    Error :cannot show the value of the filter.The Field may not be filterable or the number of items returned exceeds the list view threshold enforced by administrator
    Could you please suggest a way to avoid this issue apart from incrementing the list view threshold limit .
    Prashanth

    Reorganizing content, or creating more specific views. sharepoint is warning you that the content is structured in such a way that it can cause performance issues, which should be addressed in some way.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • MS Notepad unable to display the Chinese characters I type and display them as squares

    MS Notepad is unable to display the Chinese characters I type and display them as squares. But when I copy those squares on notepad to Wordpad or MS Word, they display the Chinese characters just fine. I've no idea why those Chinese characters I type can't display properly on notepad. I check the font of the notepad and it's the default. I've another Windows Vista desktop computer which has notepad of the similar setting and display Chinese characters just fine. Both are using Chinese (Simplified) - Microsoft Pinyin New Experience Input Style to input those characters. But I don't understand why my Windows 7 is facing this problem.

    Hi,
    Notepad is a very simple text editor BUT it will work if you use the SAME language in Windows. Please try:
    1. go to control panel, click "Clock, Language, and Region"
    2. click "Change location" under the "Region" section
    3. go to the "administrative" tab, then click "change system locale...", then select "Chinese".
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • ME2N report cannot show the PO number properly

    Hi Sir/Madam,
    Why some of the header cannot show the PO number properly in ME2N report (refer to the attachment)?
    Please advise the root cause and how to prevent it, thanks load.
    Best Regards,
    Gary

    Dear Patra,
    Thanks for your reply. Attached the expend selection for your reference.
    Actually the issue is happening occasionally.
    Best Regards,
    Gary

  • How can I write the chinese characters in a web with my magic mouse?

    How can I write the chinese characters in the search box with my magic mouse?

    You can do it with a trackpad but I am not sure about the mouse.  Take a look at his link, http://support.apple.com/kb/HT4288

  • How can I change the Chinese characters back to English appear on the bottom icons after clicking the App Store icon on the iPad?  It was in English before I upgrade to iOS5.

    How can I change the Chinese characters back to English appear on the bottom icons after clicking the App Store icon on the iPad?  It was in English before I upgrade to iOS5.

    Is the address on your account based in France ? The language of the stores should reflect the language of the country where your account is based, which isn't necessarily the same language as you've set on the device.
    If your account isn't based in a French spealing country, then try logging out of the account (via Settings > Store) and then log back in (and also make sure that your address is correct and complete), and see if the language of the iTunes and App Store the reflect the language of the country where your account is based.

  • XMLType.extract cannot show special French characters in select statement

    Hi,
    The (e acute) é characters get garbled when they are retrieved from the
    XMLType column of a regular table.
    How can we fix to get (e acute) é characters properly?
    We both tried setting "setenv NLS_LANG French_France.WE8ISO8859P1" and
    "setenv NLS_LANG French_France.WE8DEC" before loading the table.
    Database version:
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - ProductionThe sample test case is as follows:
    --connect to any schema where you can store XMLType
    set long 2000;
    set pagesize 2000;
    set serveroutput on;
    --delete from test;
    drop table test;
    create table test (id number, xmldata XMLType);
    declare
    featureDescriptorXML  CLOB;
    xml_type XMLType;
    new_xml_type XMLType;
    myName varchar2(100);
    myName2 varchar2(100);
    myName3 varchar2(100);
    stmt varchar2(4000);
    begin
    featureDescriptorXML :=
    '<?xml version="1.0" encoding="UTF-8"?>' ||
    '<abc:TheFeature xmlns:' || 'de' || '="' || 'http://abc.klmno.org/fghde' || '" xmlns:abc="http://www.ghijklmn.net/abc"' ||
    ' xmlns:xyz="http://www.ghijklmn.net/xyz">' ||
    '<abc:Name>de:MyGénérique</abc:Name>' ||
    '</abc:TheFeature>';
    xml_type := xmltype(featureDescriptorXML);
    myName := xml_type.extract('/abc:TheFeature/abc:Name/text()', 'xmlns:abc="http://www.ghijklmn.net/abc"').getStringVal();
    dbms_output.put_line('abc:Name value stored in VARCHAR2 variable from XMLType variable is ' || myName);
    -- can show French chars
    insert into test(id, xmldata) values(20, xml_type);
    stmt := 'select t.xmldata.extract(''/abc:TheFeature/abc:Name/text()'', ''xmlns:abc="http://www.ghijklmn.net/abc"'').getStringVal() from test t';
    execute immediate stmt into myName2;
    dbms_output.put_line('abc:Name value stored in VARCHAR2 variable from XMLType column in 2nd version is ' || myName2);
    -- cannot show French chars
    stmt := 'select  t.xmldata from test t';
    execute immediate stmt into new_xml_type;
    myName3 := new_xml_type.extract('/abc:TheFeature/abc:Name/text()', 'xmlns:abc="http://www.ghijklmn.net/abc"').getStringVal();
    dbms_output.put_line('abc:Name value stored in VARCHAR2 variable from first XMLType column and then from XMLType variable in 3rd version is ' || myName3);
    -- cannot show French chars
    end;
    select t.xmldata.extract('/abc:TheFeature/abc:Name/text()', 'xmlns:abc="http://www.ghijklmn.net/abc"').getStringVal()
    from test t;
    -- Cannot show French chars
    select t.xmldata.extract('/abc:TheFeature/abc:Name/text()', 'xmlns:abc="http://www.ghijklmn.net/abc"').getStringVal() "myname"
    from test t;
    -- Cannot show French chars
    select t.xmldata.getCLOBVal() from test t;
    -- Cannot show French chars
    select t.xmldata from test t;
    -- Can show French charsOutput is as follows with setenv NLS_LANG French_France.WE8ISO8859P1
    and NLS_DATABASE_PARAMETERS are as follows:
    SQL> select * from nls_database_parameters;
    PARAMETER                      VALUE
    NLS_LANGUAGE                   AMERICAN
    NLS_TERRITORY                  AMERICA
    NLS_CURRENCY                   $
    NLS_ISO_CURRENCY               AMERICA
    NLS_NUMERIC_CHARACTERS         .,
    NLS_CHARACTERSET               WE8DEC
    NLS_CALENDAR                   GREGORIAN
    NLS_DATE_FORMAT                DD-MON-RR
    NLS_DATE_LANGUAGE              AMERICAN
    NLS_SORT                       BINARY
    NLS_TIME_FORMAT                HH.MI.SSXFF AM
    PARAMETER                      VALUE
    NLS_TIMESTAMP_FORMAT           DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT             HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT        DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY              $
    NLS_COMP                       BINARY
    NLS_LENGTH_SEMANTICS           BYTE
    NLS_NCHAR_CONV_EXCP            FALSE
    NLS_NCHAR_CHARACTERSET         AL16UTF16
    NLS_RDBMS_VERSION              11.2.0.2.0
    20 ligne(s) sélectionnée(s).
    Table creé.
    abc:Name value stored in VARCHAR2 variable from XMLType variable is
    de:MyGénérique
    abc:Name value stored in VARCHAR2 variable from XMLType column in 2nd version is
    de:MyGénérique
    abc:Name value stored in VARCHAR2 variable from first XMLType column and then
    from XMLType variable in 3rd version is de:MyGénérique
    Procdure PL/SQL terminée avec succès.
    T.XMLDATA.EXTRACT('/ABC:THEFEATURE/ABC:NAME/TEXT()','XMLNS:ABC="HTTP://WWW.GHIJK
    de:MyGénérique
    myname
    de:MyGénérique
    T.XMLDATA.GETCLOBVAL()
    <?xml version="1.0" encoding="DEC-MCS"?>
    <abc:TheFeature xmlns:de="http://abc.klmno.org/fghde" xmlns:abc="http://www.ghij
    klmn.net/abc" xmlns:xyz="http://www.ghijklmn.net/xyz">
      <abc:Name>de:MyGénérique</abc:Name>
    </abc:TheFeature>
    XMLDATA
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <abc:TheFeature xmlns:de="http://abc.klmno.org/fghde" xmlns:abc="http://www.ghij
    klmn.net/abc" xmlns:xyz="http://www.ghijklmn.net/xyz">
      <abc:Name>de:MyGénérique</abc:Name>
    </abc:TheFeature>We also tried setting NLS_CHARACTERSET to AL32UTF8
    via ALTER DATABASE CHARACTER SET,
    and then shutting down the database and restarting it.
    But, that did not help.
    Thanks

    Good to hear then, you have not yet got a SR on your hands.
    One of the reasons I hate NLS issues is that me first one had to do with an client browser/ application server and database setup that involved not equal settings between the app.server and the database. Always, always fully check that the app.server (on all fronts) have the same NLS settings as the database so that you avoid unnecessary conversion between the middle tier and the database tier. "On all fronts" means, as I once painfully discovered, possible NLS settings in a registry, app.server configuration file, java application in the JVM, etc, etc, etc. Another issue is that JDBC drivers, AFAIK, have issues with "opaque data types" (http://en.wikipedia.org/wiki/Opaque_data_type) like "XMLTYPE" so, to be sure, I would advice to transport the "XML content" in a data type which is supported much longer like "CLOB". In such cases, NLS conversions shouldn't take place. There are exceptions of course, one I can think of right now is when you move Binary XML content via the binary xml transport method (can't remember right now the proper java classes to use for this) between the client and server to obtain performance gains due to among others less and more efficient data transport across the network and avoiding validation and post parse overhead during the Binary XML content handling in the database.
    Looked it up anyway :-) the following is part of the 11.2 Oracle XDK
    Binary XML usage with Java:
    http://download.oracle.com/docs/cd/E14072_01/appdev.112/e10708/adx_j_xmlbin.htm#BAJFBGGB
    Scalable DOM:
    http://download.oracle.com/docs/cd/E14072_01/appdev.112/e10708/adx_j_parser.htm#CCHGIADJ

  • Coldfusion 9 not showing some chinese characters

    We had web based application made in coldfusion 5 hosted on windows 2000 server. Now we have migrated our application on Coldfusion 9 and windows 2003 server. The problem we are facing is that some chinese characters are showing incorrectly on application pages. we have tried installing language pack and also there is no issue with browser.
    Can anybody help us in this regard? Thanks in advance.

    craptastic, the forums ate my whole posting because of a stray quoted email marker. this posting was supposed to be:
    first off, you need to use the access for unicode driver. secondly, cf5 didn't
    know unicode from a hole in the ground & the only way for it use unicode or any
    non-latin-1 page encoding is by basically garbaging the data as far as any
    unicode compliant application goes (cf6 & above). if you still have the cf5
    server, write some cf pages to extract the data from the access db then
    re-import it on the cf 9 server.  finally, access? really?

  • What do the Chinese characters in top left of window fram signify?

    In the top left hand corner of the browser frame are a number of what appear to be Chinese characters- which change according to changing pages why are they there? What do they mean? Is it important? Has the program been corrupted? Is my security compromised?

    Hello racraft, the problem is mcafee site advisor extension, please try to disable or remove that extension and you are OK.
    see : [http://service.mcafee.com/faqdocument.aspx?id=TS100162 How to uninstall SiteAdvisor]
    '''check another option''', if works for you, '''without to uninstall the mcafee site advisor extension''' :
    disabled the add-on then close firefox and restart Firefox again. Then enable the add-on again, close firefox one more time and restart Firefox again. ([https://support.mozilla.org/en-US/questions/1039845#answer-673562 works here] :-))
    thank you

  • How to read the Chinese characters set?

    Hello, everyone,
    I have a serial problem about using JavaMail.
    When i read the mail which contain Chinese characters set ( e.g. Big5 ). It will display a unreadable coding.
    Example: " =?big5?B?aGl5YXRvbw==?= "
    How to solve it? Please give me a solution if you know that. I am looking forward to receiving you reply.
    hiyatoo,

    As I know, you can use this:
    msg.setContent(messageText.toString()), "text/html;charset=Big5");
    It works well at my JavaMail API. By the way, your computer msut support Chinese characters.
    Hope this can help.

  • Firefox could not show properly Chinese characters. how to fix?

    I have firefox portable with the Chinese language pack add-on, but every time I open any Chinese website, the characters are not proper presented so I could not recognize them.

    Make sure that you have installed East Asian language support.
    * http://en.wikipedia.org/wiki/Help:Multilingual_support_%28East_Asian%29 Wiki: Help:Multilingual support (East Asian)
    * http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/int_pr_install_languages.mspx?mfr=true

  • I have an IDNs domain name, with chinese words. but firefox cant show the chinese words and only show the punycode, it make the IDNs meaniingless and even worrst then a long english domain name. pls help

    so what can we do to make firefox show my chinese domain name?
    submit a request? or ...

    Only domains that are white-listed show as real text.<br />
    Otherwise you see punycode.
    If you want to see the IDN then you need to create a new Boolean pref network.IDN.whitelist.ws and set the value to true.<br />
    See:
    *https://support.mozilla.com/kb/network.IDN.whitelist.*
    *http://kb.mozillazine.org/about:config
    *http://www.mozilla.org/projects/security/tld-idn-policy-list.html
    *https://developer.mozilla.org/en/Internationalized_Domain_Names_(IDN)_Support_in_Mozilla_Browsers

  • How can show the Chinese character in Oracle Report Graph on RedHat Linux?

    The OS is RedHat Linux and I set NLS="SIMPLIED CHINESE_CHINA.ZHS16GBK" in %ORA_AS_HOME%/bin/reports.sh
    The report file is a JSP Web Report, including Chinese character in web HTML text and graph.
    Now Chinese character in HTML text can be displayed correctly but the Chinese character in graph can not be display.
    Anybody can help me? thanks a lot.

    The report server is 9i and it is running in Oracle AS 904.
    And set NLS_LANG="SIMPLIED CHINESE_CHINA.ZHS16GBK" in %ORA_AS_HOME%/bin/reports.sh

  • Textbox cannot showing the Data Binding

    Dear All, I have a problem about showing data to textbox. I have a class i call it itemCategoryFormController.java here the code:
    public class ItemCategoryFormController extends GenericForwardComposer {
        @Autowired
        private DatabaseManager databaseManager;
        @Autowired
        private SessionManager sessionManager;
        @Autowired
        private SecurityService securityService;
        @Autowired
        private MasterService masterService;
        private WebUtil webUtil;
        private DataBinder binder;
        private Paging itemGroupPaging;
        private Combobox filterCBox;
        private Listbox itemGroupLBox;
        private Bandbox itemGroupBd;
        private Integer totalItemGroup = 0;
        private String locationPath;
        private Map<String, Object> params;
        private ItemCategory selectedItemCategory;
        private ItemCategory selectedTemp;
        private ItemGroup selectedItemGroup;
        private List<ItemCategory> itemFilters = new ArrayList<ItemCategory>();
        private List<ItemGroup> itemGroups = new ArrayList<ItemGroup>();
        public ItemCategory getSelectedItemCategory() {
            return selectedItemCategory;
        public void setSelectedItemCategory(ItemCategory selectedItemCategory) {
            this.selectedItemCategory = selectedItemCategory;
        public ItemGroup getSelectedItemGroup() {
            return selectedItemGroup;
        public void setSelectedItemGroup(ItemGroup selectedItemGroup) {
            this.selectedItemGroup = selectedItemGroup;
        public List<ItemCategory> getItemFilters() {
            return itemFilters;
        public void setItemFilters(List<ItemCategory> itemFilters) {
            this.itemFilters = itemFilters;
        public List<ItemGroup> getItemGroups() {
            return itemGroups;
        public void setItemGroups(List<ItemGroup> itemGroups) {
            this.itemGroups = itemGroups;
        @SuppressWarnings("unchecked")
        @Override
        public void doAfterCompose(Component comp) throws Exception {
            super.doAfterCompose(comp);
            this.self.setAttribute(Constants.CTRL, this, false);
            webUtil = new WebUtil(comp);
            params = (Map<String, Object>) Executions.getCurrent().getArg();
            AppProgram program = securityService.getAppProgramByUrl(sessionManager.getUrlAddress());
            locationPath = program.getFileName();
            selectedUserLogin = sessionManager.getAppUser();
            setControlPermission(program);
            binder = new AnnotateDataBinder(comp);
        public void onCreateWin(Event event) {
            if(isMessageMode()) loadMessage();         
            selectedItemCategory = (ItemCategory) params.get(Constants.PARAM_ITEMCATEGORY);
            init();
        private void init() {
            String action = (String) params.get(WebUtil.PARAM_ACTION);
            if(action.equals(WebUtil.ACTION_NEW)) {
                if(selectedItemCategory != null){
                    selectedItemCategory.setActive(true);
                    selectedItemCategory.setLastUpdated(databaseManager.getDateServerNow());
                    selectedItemCategory.setLastUpdater(sessionManager.getAppUser().getUserId());
                    selectedTemp = selectedItemCategory;
                    selectedItemCategory = new ItemCategory();
                }else{
                    selectedItemCategory = new ItemCategory();
                    selectedItemCategory.setActive(true);
                    selectedItemCategory.setLastUpdated(databaseManager.getDateServerNow());
                    selectedItemCategory.setLastUpdater(sessionManager.getAppUser().getUserId());
            } else {
                if(selectedItemCategory == null) selectedItemCategory = selectedTemp;
            loadItemGroup();
            viewMode = action.equals(WebUtil.ACTION_VIEW);
            editMode = action.equals(WebUtil.ACTION_EDIT);
            if((action.equals(WebUtil.ACTION_EDIT) || action.equals(WebUtil.ACTION_VIEW))) {
                checkPrevNext();
            binder.loadAll();
        private void loadItemGroup() {
            totalItemGroup = masterService.countItemGroup();
            itemGroupPaging.setTotalSize(totalItemGroup);
            selectedItemGroup = masterService.getitemGroupByNo(selectedItemCategory.getItemCategoryGroupNo());
            itemGroups = masterService.getitemGroups(0, itemGroupPaging.getPageSize());
            doPaging(itemGroupPaging, Constants.PARAM_ITEMGROUP);
        public void onChanging$filterCBox(InputEvent event) {
            Integer sizeOfFilter = Integer.valueOf(Labels.getLabel(Constants.I3_PAGESIZE_FILTER));
            itemFilters = masterService.getitemCategorysByFilter("%" + event.getValue() + "%", 0, sizeOfFilter);
            binder.loadComponent(filterCBox);
        public void onChanging$itemGroupFilterTb(InputEvent event) {
            itemGroups = masterService.getitemGroupsByFilter("%" + event.getValue() + "%", 0, itemGroupPaging.getPageSize());
            itemGroupPaging.setTotalSize(masterService.countItemGroupByFilter("%" + event.getValue() + "%"));
            itemGroupPaging.setActivePage(0);
            binder.loadComponent(itemGroupLBox);
        @SuppressWarnings({ "unchecked" })
        private void doPaging(final Paging paging, final String param) {
            paging.addEventListener("onPaging", new EventListener() {
                @Override
                public void onEvent(Event event) throws Exception {
                    PagingEvent pEvent = (PagingEvent) event;
                    int pageNo = pEvent.getActivePage();
                    int first = pageNo * paging.getPageSize() + 1;
                    int last = first + paging.getPageSize() - 1;
                    redraw(param, first, last);
        protected void redraw(String param, int first, int last) {
            if(param.equals(Constants.PARAM_ITEMGROUP)) {
                itemGroups = masterService.getitemGroups(first, last);
                binder.loadComponent(itemGroupLBox);
        public void onClick$itemGroupClearBtn(Event event) {
            selectedItemGroup = null;
            binder.loadComponent(itemGroupBd);
            itemGroupBd.close();
        private void clearForm() {
            selectedItemCategory = null;
            selectedItemGroup = null;
    I have a zul file that call form.zul Here i want show itemgroups data:
    <bandbox id="itemGroupBd" width="30%" onfocus="itemGroupBd.open=true" autodrop="true" readonly="true" value="@{ctrl.selectedItemGroup, converter='com.cynergy.web.converter.NameObjectConverter' }" disabled="@{ctrl.viewMode }"> <bandpopup>
    <vbox>
    <hbox>
    <image src="/images/icons/icon-filter-16.png"/> <label value="${c:l('label.filter.value')}"/>
    <textbox id="itemGroupFilterTb"/> <space width="5px"/>
    <button id="itemGroupClearBtn" label="${c:l('button.clear.value')}"/>
    </hbox>
    <listbox id="itemGroupLBox" model="@{ctrl.itemGroups }" width="400px" onselect="itemGroupBd.close();" rows="${c:l('label.pageSize.bandbox.value')}" selecteditem="@{ctrl.selectedItemGroup }" emptymessage="${c:l('message.list.data.empty')}">
    <listhead sizable="true">
    <listheader width="30%" label="${c:l('label.code.value')}"/>
    <listheader label="${c:l('label.name.value')}"/></listhead>
    <listitem self="@{each=itemGroup }">
    <listcell label="@{itemGroup.itemGroupNo }"/>
    <listcell label="@{itemGroup.itemGroupName }"/>
    </listitem>
    </listbox>
    <paging id="itemGroupPaging" detailed="true" pagesize="${c:l('label.pageSize.bandbox.value')}" sclass="paging-border"/>
    </vbox>
    </bandpopup>
    </bandbox>
    There are no error showing, but textbox not showing the data. Textbox only showing:
    com.procits.app.master.model.ItemGroup@6924b697
    I'm new in java programming i hope you can help me.
    Best regards,
    Surbakti

    cvsSpecMapping is a resource and not a property so you should set the DataContext using the StaticResource markup extension instead of Binding:
    <StackPanel Orientation="Horizontal" Margin="0, 5" DataContext="{StaticResource cvsSpecMapping}">
    Also, the Source property of a CollectionViewSource is supposed to be set to a collection:
    private void Window_Loaded(object sender, RoutedEventArgs e)
    sm = new Models.SpecimenMapping();
    var cvsSpecMapNames = (CollectionViewSource)(this.FindResource("cvsSpecMapping"));
    cvsSpecMapNames.Source = new List<Models.SpecimenMapping>() { sm };
    You may also want to set a default value of the HL7SpecimenTypeName property to confirm that the binding actually works after you have done the above changes:
    public class SpecimenMapping : INotifyPropertyChanged
    private const int MAX_HL7SPECIMENTYPENAME_LEN = 250;
    #region class properties
    private string _hl7SpecimenTypeName = "def....";
    public string HL7SpecimenTypeName
    get { return _hl7SpecimenTypeName; }
    set
    if (value != _hl7SpecimenTypeName)
    _hl7SpecimenTypeName = EnforceMaxLength(value, MAX_HL7SPECIMENTYPENAME_LEN);
    NotifyPropertyChanged();
    Hope that helps.
    Please remember to mark helpful posts as answer to close your thread and then start a new thread if you have a new question.

Maybe you are looking for

  • How can I create an alt background color for items in a jlistbox or jtree

    What I'm looking to do is have a white background for say items 1,3,5, etc. and a light yellow background for items 2,4,6, etc. I was wondering how can I set an alternative background color on items in a JTree or a JList

  • Can anyone help me get a serial number from Adobe & Identit-e?

    I bought the Adobe Creative Suite 6 Design Standard Student & Teacher edition through Amazon online. I followed the instructions inside the package to verify my eligibilty as an educator. I received a message on the screen after submitting my materia

  • Windows Vista & GPRS-internet on N80 through BT

    Hi All, Did anyone face a problem with N80 in establishing a connection to a mobile GPRS internet using One-touch Access from PC Suite (via Bluetooth!)? The error is that PC Suite doesn't find any suitable modem (In OS modem list, a standard bluetoot

  • TV-Out in MEGAPC-180

    Hello, I am writing you from Zaragoza (Spain). I've bought a MEGA PC Series (Model 180) trhee weeks ago. I've installed WXP with SP1 and SP2 and all the utilities and drivers stored in your MEGAPC-CD. I have no problem with any driver: DDR-RAM, DVD,

  • Using font.properties to map custom in-house true type fonts

    Hi all, I'm currently attempting to get Forms Server to display a custom fonts called TH Sans Serif which is MS Sans Serif modified for our special needs. We need to show a whole array of fonts which caters for Rumanian, Hungarian, Polish, Slovak, We