Windows API ANSI version and UNICODE version

Windows API have two version:
ANSI version and UNICODE.
I want to display chinese, so i use the UNICODE version. but i find it's some mistake.
and later,  i change to ANSI version, it's correct.
why the ANSI version can display chinese, and UNICODE can't.
i use the api function
FindWindowA
GetWindowTextA
who can tell me?

I understand Vista is a 32 bit.
IE 8 is what I have but I would consider IE 9 if that would be necessary.
Just a bit more update. I just tried to download Adobe FP 10 again with the following results, again:
The Adobe Download Manager windows shows:
FP 10.3 Status as 100% "Installation Pending".
FP 10.2 Status as 100% " Instatlling Application"
and that will go one forever but never really actually installs anything and just keeps cycling through the "Add to Download" e.g. "Fanbase", "Times Reader"
and "Adobe Air" (none of which I want added to the download), and the download and installation shows as 100%.
Go figure!

Similar Messages

  • Currently running Adobe XI Standard, i have a PDF that i Save As excel however on my computer it converts it differently than my coworkers computer who has the same Adobe version and same version of Excel 2010. Is something different selected on mine than

    Currently running Adobe XI Standard, i have a PDF that i Save As excel however on my computer it converts it differently than my coworkers computer who has the same Adobe version and same version of Excel 2010. Is something different selected on mine than his? How can i troubleshoot?
    Can provide more information if needed...

    Hello nmohamm,
    To examine the conversion settings in Acrobat, do the following:
    1. Select Edit > Preferences
    2. In the preferences dialog, select the "Convert From PDF" category.
    3. In the "Converting From PDF" list, select "Excel workbook".
    4. Click the "Edit Settings" button to view your conversion settings.
    Regards,
    Charlene

  • Search Example Code inside for Versioned and non-Versioned Documents

    These may be of use to someone...
    File names:
    AttributeSearch.java
    AttributeContentSearch.java
    The AttributeSearch application will search for documents (both versioned and non-versioned) with a file name containing "txt", residing in the user "system"'s home directory.
    The AttributeContentSearch application will search for documents (both versioned and non-versioned) with a file name containing "txt", and document content containing the word "hello", residing in the user "system"'s home directory.

    import oracle.ifs.beans.LibraryService;
    import oracle.ifs.beans.LibrarySession;
    import oracle.ifs.common.CleartextCredential;
    import oracle.ifs.common.ConnectOptions;
    import oracle.ifs.common.IfsException;
    import java.util.Locale;
    import oracle.ifs.beans.DirectoryUser;
    import oracle.ifs.beans.PrimaryUserProfile;
    import oracle.ifs.beans.PublicObject;
    import oracle.ifs.beans.Document;
    import oracle.ifs.beans.Folder;
    import oracle.ifs.beans.ContentObject;
    import oracle.ifs.beans.Search;
    // SEARCH RESULT
    import oracle.ifs.beans.SearchResultObject;
    // CONTENT + ATTRIBUTE SEARCH
    import oracle.ifs.search.ContextSearchSpecification;
    // SELECT, FROM
    import oracle.ifs.search.SearchClassSpecification;
    // ORDER BY
    import oracle.ifs.search.SearchSortSpecification;
    // WHERE
    import oracle.ifs.search.SearchClause;
    import oracle.ifs.search.SearchQualification;
    import oracle.ifs.search.JoinQualification;
    import oracle.ifs.search.FolderRestrictQualification;
    import oracle.ifs.search.AttributeQualification;
    import oracle.ifs.search.ContextQualification;
    public class AttributeContentSearch
    public static void main(String args[])
    try {
    LibraryService ifsService = new LibraryService();
    System.out.println("Oracle iFS Version " + ifsService.getVersionString());
    CleartextCredential credentials = new CleartextCredential("system","manager");
    ConnectOptions options = new ConnectOptions();
    options.setLocale(Locale.getDefault());
    options.setServiceName("ServerManager");
    options.setServicePassword("ifssys");
    LibrarySession ifsSession = ifsService.connect(credentials,options);
    DirectoryUser thisUser = ifsSession.getUser();
    System.out.println("Connected as \"" + thisUser.getDistinguishedName() + (thisUser.isAdminEnabled() ? "\" (admin enabled)" : "\""));
    PrimaryUserProfile userProfile = thisUser.getPrimaryUserProfile();
    SearchResultObject[] sro = runSearch (ifsSession,"hello");
    if (sro != null)
    for (int i = 0; i < sro.length; i++)
    System.out.print (((PublicObject)sro.getLibraryObject()).getName());
    System.out.println (" (" + ((PublicObject)sro[i].getLibraryObject()).getId() + ")");
    } catch (IfsException e)
    public static SearchResultObject [] runSearch( LibrarySession ifsSession, String searchCriteria) throws IfsException
    ContextSearchSpecification ss = null;
    SearchClassSpecification scs = new SearchClassSpecification();
    SearchSortSpecification sss = new SearchSortSpecification();
    SearchQualification sc = null;
    ss = new ContextSearchSpecification();
    ss.setContextClassname(ContentObject.CLASS_NAME);
    scs.addSearchClass( PublicObject.CLASS_NAME );
    scs.addSearchClass( Document.CLASS_NAME );
    scs.addSearchClass( ContentObject.CLASS_NAME );
    scs.addResultClass( Document.CLASS_NAME );
    sss.add( Document.CLASS_NAME, "NAME", true );
    sc = buildSearchClause( ifsSession, searchCriteria);
    ss.setSearchClassSpecification( scs );
    ss.setSearchQualification( sc );
    ss.setSearchSortSpecification( sss );
    Search s = new Search( ifsSession, ss );
    s.open();
    SearchResultObject [] sro = s.getItems();
    s.close();
    return sro;
    public static SearchQualification buildSearchClause( LibrarySession ifsSession, String searchCriteria ) throws IfsException
    Folder f = ifsSession.getUser().getPrimaryUserProfile().getHomeFolder();
    FolderRestrictQualification frq = new FolderRestrictQualification();
    frq.setStartFolder( f );
    frq.setSearchClassname(PublicObject.CLASS_NAME);
    AttributeQualification aq = new AttributeQualification();
    aq.setAttribute(Document.CLASS_NAME, PublicObject.NAME_ATTRIBUTE);
    aq.setOperatorType(AttributeQualification.LIKE);
    aq.setValue("%txt%");
    ContextQualification cq = new ContextQualification();
    cq.setQuery(searchCriteria);
    cq.setName("Test0");
    JoinQualification jq1 = new JoinQualification();
    jq1.setLeftAttribute ( Document.CLASS_NAME, Document.CONTENTOBJECT_ATTRIBUTE );
    jq1.setRightAttribute( ContentObject.CLASS_NAME, null);
    JoinQualification jq = new JoinQualificatio n();
    jq.setLeftAttribute ( PublicObject.CLASS_NAME, PublicObject.RESOLVEDPUBLICOBJECT_ATTRIBUTE );
    jq.setRightAttribute( Document.CLASS_NAME, null);
    SearchClause sc;
    sc = new SearchClause(jq, jq1, SearchClause.AND);
    sc = new SearchClause(sc, cq, SearchClause.AND);
    sc = new SearchClause(sc, frq, SearchClause.AND);
    sc = new SearchClause(sc, aq, SearchClause.AND);
    return sc;
    null

  • The product version and database version are not compatible

    The following simple program gets an exception {The product version and database version are not compatible} its very hard to proceed from here. Does anybody know what cause this?  
    Best Regards
    Jan Isacsson
    using System.Collections.ObjectModel;
    using Microsoft.MasterDataServices.Deployment;
    using Microsoft.MasterDataServices.Services.DataContracts;
    namespace MdsDeploy
        class Program
            static void Main(string[] args)
                try
                    ModelReader reader = new ModelReader();
                    Collection<Identifier> models = reader.GetModels();
                    foreach (Identifier modelId in models)
                        Console.WriteLine(modelId.Name);
                catch (System.Exception ex)
                    Console.WriteLine("Error: " + ex.Message);
                Console.ReadKey();

    Hi Jan,
    For the error "The product version and database version are not compatible", as Emma said, the version number of the Service does not match the database schema version.
    In your scenario, which version of database are you using? Please note that MDS update required after SQL 2012 SP1 installation, please refer to the links below to see the details.
    http://byobi.com/blog/2012/11/mds-update-required-after-sql-2012-sp1-installation/
    http://msdn.microsoft.com/en-IN/library/gg488708.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • Tool versions and Application versions

    hi,
    i have a doubt in basic concept of peopleosft regarding the realtion between tool versions and application versions
    I have two systems..
    system1 : Application version 8.8 and tool version 8.49
    system 2: Application version 8.9 and tool version 8.46
    Now, the integration broker and webservices are completley different in these two tool versions...
    from whatever i know..when tool version is upgraded..navigations in application remain same but the way the process is done in background differ...
    so if we have webservices in application 8.8 and tools 8.46...the navigations are different and when we upgrade to 8.49 the whole concept of webservices change...so the navigations invariably change..how can it be possible..?
    Can someone explain me this or give a link to a doc for reference..
    Thanks in advance,
    Karthik
    Edited by: karthik tulasi on May 18, 2009 12:14 PM

    Well, you seems confuse, or I was not clear enough.
    Maybe I'm still not getting your question as it should, so you could try to rephrase it again.
    What's your concern exactly ?
    A new try on my side:
    The menu your are talking about is the Peopletools menu, so application does not interact with it.
    The only link between application and Peopletools are some calls. The application does NOT care about the Peopletools menu.
    The application/peopletools capabilities are embeded in the Peopletools which are ready or not ready to receive calls from differents Applications versions.
    Once more, menus are only frontend user GUI, but internally, this is an other stuff I tried to explain above.
    Basically, for the application point of view, Peopletools version are not know. This is the other way around, Peopletools are willing to receive application calls.
    Nicolas.

  • Are there two versions of ipod (like US version, and EU version) or is there just one worldwide?

    Are there two versions of ipod (like US version, and EU version) or is there just one worldwide?
    I want to buy an ipod touch 5 from ebay (i'm from croatia) and i'm woried is there just one model that is worldwide or are there a few models ( like US and EU)?????

    Some features like FaceTime (prohibited in some middle eastern countries, lower volume limit is EU countries) is controlled by a unique identifier on the iPod based on where the iPod was officially sold, I would avoid getting one officially sold in a middle eastern country. A non-EU one would also be better too

  • What difference on ABAP language between 2004 version and before version

    Hi everyone,
    Does there exist difference about ABAP language between 2004 version and before version? If it does, what's that? For example, what's new keywords? Which old key words can't be applied on 2004 platform any more?
    Any suggestion is highly appreciated.
    Best Regards,
    Julian

    hi
    good
    to get all these details plz visit the SAP site where you ll get the release notes related to all the concepts.
    Thanks
    mrutyun^

  • Difference between UCOS restricted version and unrestricted version

    Hi to all,
    somebody knows which is the difference between restricted version and unrestricted version??
    Which are the main differences??
    Thanks
    David

    Hi.
    Basically restricted version has encryption enabled and unrestricted not.
    You may give a look to this thread.
    https://supportforums.cisco.com/discussion/11409366/restricted-version-and-unrestricted-version-ccm-comparison
    HTH
    Regards
    Carlo

  • I cant find my all files in new version and older version is better than new and fix this problem....!

    I can't find my all PDF in new version and older version is better than new and fix this problem as soon as possible....!

    Hi Manoj,
    what exact problem are you facing? Are you unable to locate your pdf files?
    Regards,
    Rahul

  • Active version and Inactive version in Product llocation plan

    Hi Gurus,
    We are using product allocation functionality, in which i would like to what is the importance of active and Inactive versions.
    Which is the version in which we need to maintain the product allocation (MC94).
    Regards,
    Babs.

    Hi dsk,
    Thank you for the feedback on active version and inactive version.
    My doubt is if you look in to transaction MC94 , we have two tabs one u201CActive versionu201D and other u201CInactive versionu201D.
    When I maintained product allocation in Active version u201CA00u201D and executed the sales order product allocation is not happening. And then I tried to maintain the allocation under Inactive Version u201C000u201D then executed the sales order. Now the product allocation is happening and even the structure is getting updated after saving the sales order. So I need to under stand under which version we need to maintain the allocation so that allocation functionality will work during sales order creation.
    Regards,
    Babs

  • Diff between Project version and selection version

    Hi All
      what is the functions of the project version and selection version and difference between the same.
    Thanks
    S.Murali

    Hi,
    Refer below sap help link for function and use of project version & selection version.
    project version
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/d8/1fe8344d1d166be10000009b38f83b/frameset.htm
    selection version
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/ee/41f41846ee11d189470000e829fbbd/content.htm
    Regards,
    Sandeep
    Edited by: Sandeep Theurkar on May 23, 2009 1:29 PM

  • What is difference between Oracle version  and DB version.

    What is the difference between Oracle version and DB Version?
    How we came to know about the installed version through SQL query.

    SQL> select * from v$version;
    BANNER
    Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    PL/SQL Release 8.1.7.0.0 - Production
    CORE 8.1.7.0.0 Production
    TNS for Linux: Version 8.1.7.0.0 - Development
    NLSRTL Version 3.4.1.0.0 - Production
    SQL>
    Joel P�rez

  • Difference between Planning Version and Simulation Version

    Hi friends,
    What is the difference between Planning Version and Simulation Version?
    Thanks,
    Debi

    Debi
    There are a lot of threads in this forum that give detailed info about version concept. Also you can refer to help.sap.
    Anyways , planning version is the version against which your live cache data is stored.  The data against this version is the one that the planners and buyers are going to refer to or use to make their planning and buying decisions. Data against the planning version is nothing but data relevant to the business .
    There may be instances where you would like to simulate some scenario. If you want to do trial and error analysis and at the same time if you do not want to impact the actual business data , then you create simulation versions and simulate your scenario.
    For example your actual sales orders received for the month of March may be 100 CS. This is the actual number that will be stored against your planning version. Lets say the demand planner wants to find out what will be the impact if there is a sudden bulk demand from a new customer for 500 CS - that is if he wants to do a what - if analysis then he can create a simulation version and try to check the impact .
    Thanks
    Aparna

  • Camera Raw Versions and PSE Versions

    On my Windows 7 PC, I have installed (and have a license for) among other both PSE V10 and PSE V12.  On my PC, when editing a Nikon NEF File, PSE V10 uses Camera Raw 6.4.1 and PSE V12 uses Camera Raw 8.2.
    Since on my C Disk I see only one copy of a Folder named "NIKON D5000" (this folder is in C:\ProgramData\Adobe\CameraRaw\Camera Profiles\Camera ), I have the impression that both the versions 6.4.1 and the Version 8.2 of Camera RAW share the identical Camera Profiles.   Is that impression/guess correct?
    Question 1: Can I conclude, that (since both Camera Raw Version share the same Camera Profile folders), if I will buy a Nikon D5300 (which officially gets supported only by Camera Raw 8.n (n being probably equal or higher than 3)), that once  Camera Raw 8.n (n=> 3) will be installed on my PC (because this will be the Camera Raw Version supported/used by PSE V12), I will  be able to process my future D5300 Nef Files both with the combination of PSE V10 and Camera Raw 6.4.1 and the combination of PSE V12 and Camera Raw 8.n (even though officially, Camera RAW 6.4.1 does not support the D5300)? Thank You very much in advance for your answer.
    Question 2: Can somebody point me to a downloadable  NEF file shot by the Nikon D7100?
    I will then download that NEF file and see whether I can process it with the combination of PSE V10 and Camera Raw 6.4.1. This will allow me to verify the answer to question 1. Thank You very much in advance for your answer

    Since I am probably not the only one on these forums who do not understand well (or who is/was not even aware of) the Adobe DNG converter,  I would like to add the following:
    Yes, 99jon is totally correct: a NEF File from the Nikon D7100 will not open with PSE V10 and with ACR6.4.
    ...But: a couple of days ago, I realized that I could use the latest versions of the free downloadable Adobe DNG Converter (which supports among other Nikon D7100 NEF and the RAW Files of most modern cameras) to convert the D7100 .NEF files into DNG Files. To perform such a conversion, I started the DNG Converter, identified the windows folder containg the NIKON D7100 NEF Files, provided a couple of options and then let the DNG Converter convert the NIKON D7100  NEF Files into .dng files.
    Once done, I imported the .dng files into PSE V10,...and could edit them without problems with the combination of PSE V10 and ACR 6.4. Even if I am not a specialist and might be wrong: I did not came across any limitation for the ACR editing of the NIKON D7100 .dng files that was problematic for my purposes (ACR even supported multiple "Camera Profiles" for the D7100!). I am more than happy!
    To summarize: if making a small détour via the DNG Converter,  it becomes possible to edit with the combination of old PSE Versions and old ACR Versions the "DNG versions" of RAW Files shot with new cameras (like for example the NIKON D7100)..

  • How/where can I download FrameMaker11? I only have a licence for this version and not version 12.

    Hi guys,
    I have already started a chat about this but I kinda got kicked out.
    The essence is that I need to download FrameMaker 11 to re-sintall it on a PC.
    The problems is that I couldn't find a download anywhere for a FrameMaker version older than version 12.
    So I'd really appreciate your help, guys.
    Best,
    Tim
    P.S
    Here's the chat transcript from yesterday, btw:
    info: You are now chatting with Mayank. To ensure we stay connected throughout our interaction , please don't click on the 'x' in the chat window. Doing so will disconnect our chat session.
    Mayank: Hello! Welcome to Adobe.
    Mayank: I have received your query. Please allow me a moment to verify your account and to review the details of your request.
    Mayank: Sure I will provide you the download links for Framemaker 11
    Mayank: There is a way to download the previous version
    info: Your chat transcript will be sent to [email protected] at the end of your chat.
    Mayank: Please follow the below instructions
    Mayank: https://www.adobe.com/cfusion/tdrc/index.cfm?product=framemaker
    Mayank: Click on the above link and login
    Mayank: It will take you to FM 12 download page
    Mayank: Do not click on download
    Mayank: Let me know once you are on that page

    If you purchased your copy online, you should be able to re-download the install files from the Adobe Licensing site; otherwise you’ll have to contact Adobe Support again. Hopefully you deactivated your copy of FM on the old machine first to free up your serial number.

Maybe you are looking for

  • Updating only the last record.

    Hi, I have a scenario where we get more than 1 record based on style. Everytime the new record comes in, I need to update the last record inserted. It requires a procedure to do it, but need some help on how to just update the last record only and no

  • Reduction level in planned orders

    Hi, Few part# are having planned orders with reduction level 2 even though there is sufficient time for production.  Say for eg: parts are supposed to be delivered on 29/09/2009 it is taking reduction level 2 even though it has an opportunity to star

  • Apple Movie Trailers Website not displaying Correctly

    Hi, for a few days now when I go to Apples Movie Trailer Website, there's a gap where the trailers should be. Here's a screenshot: http://img198.imageshack.us/i/screenshot20100412at422.png/ Does anyone else notice this?

  • Clearing text field

    Hi, I have a page where you scan a barcode into a text field submits when enter pressed. If the barcode exists a report appears showing that record. The barcode must stay in the text field. My question is if I scan a barcode and the barcode does not

  • What is Oracle Database Clusturing?

    Hi Gurus What is Oracle Database Clusturing? And what is the procedure? Help will be highly appreciated. Regards Zahid Ali