CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: codekomlete

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    519

    Change settings of a running process

    I noticed that when a process starts for the first time, it statically reads some system parameter info only once and keeps it until terminated

    which means,

    that if there is some modification...
  2. Replies
    1
    Views
    558

    Change settings of a running process

    I noticed that when a process starts for the first time, it statically reads some system parameter info only once and keeps it until terminated

    which means,

    that if there is some modification...
  3. Replies
    13
    Views
    11,124

    Re: Change system locale programatically

    Check this: http://stackoverflow.com/questions/819483/winxp-winxp-embedded-api-to-change-locale-specifically-ime
  4. Replies
    0
    Views
    3,527

    WinXP/WinXP Embedded API to change IME

    Hi,

    I am looking for an API on WinXP to switch between installed IME's.

    The scenario is, to be able to plug in a langauge keyboard (say Spanish) and change the IME by clicking on a UI button...
  5. Replies
    7
    Views
    3,095

    Re: Can we set locale with a single API call

    Thanks for the replies. What I want to achieve is a way to change the locale for the user when he does a language change from the UI.

    From the app, it can be achieved through a call to...
  6. Replies
    7
    Views
    3,095

    Re: Can we set locale with a single API call

    I have provided a UI where I give the user an option to change the application language at runtime. Then I want to update the UI as per the new language and also update the locale of the system to...
  7. Replies
    7
    Views
    3,095

    Can we set locale with a single API call

    Hi,

    I am interested in setting the locale of a system. I want that the last locale set should remain same even after system reboot.

    I came to know about a Winapi SetLocaleInfo but it only sets...
  8. Replies
    2
    Views
    1,463

    exponent to decimal conversion fn()

    Hi,
    I have the following program:

    int main()
    {
    float fVar = 1e+11;

    printf("%.10f", fVar);
    return (0);
    }
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured