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

Search:

Type: Posts; User: developerid

Page 1 of 3 1 2 3

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    805

    Re: Modeless Dialog problem

    Hi,
    Thanks for your reply. Now the problem has been solved.
  2. Replies
    2
    Views
    805

    Modeless Dialog problem

    Hi,
    I am using VC++6.0, MFC.
    I am working on a MDI application, and got stuch place.
    I ahave created a Modeless dialog, and attached it with the main frame.

    when I move the FRAME WINDOW , this...
  3. Retrieving Dimension of a NonClientArea in a MDI Application

    Hi,
    I am having an MDI Application.
    My problem is that I want to retrieve the dimensions of NonClientArea of the frame Window.

    Can u suggetst , which API can be used for this purpose.

    With...
  4. Replies
    2
    Views
    673

    Re: Regarding Skin Crafter Implementation

    Hi,
    Infact the problem is with when I am loading the skin.
    when I call LoadSkinFromFile(path) function, it loads that file.Now even than If i don't apply the skin and do any activity in my...
  5. Replies
    2
    Views
    673

    Regarding Skin Crafter Implementation

    Hi,
    I am using Skin Crafter for the skinization of my application.
    when I do any activity after loading the skin file, my application gets crashed.
    can u suggest some idea for this..

    Regs
  6. Replies
    1
    Views
    572

    SkinCrafter Implementation

    Hi,
    Can u suggest How to implement SkinCrafter In An VC++ application.InFact i don't have any idea about this...

    Regs
  7. Replies
    8
    Views
    1,840

    Re: Check valid pointer...

    whenever u r going to release memory..I mean before calling delete, put a check, whether that pointer is NULL or not.If not than delete it and assign to that pointer NULL.

    This approach should not...
  8. Re: Cannot open include file: 'Wbemidl.h': No such file or directory

    It is unable to locate the file in ur system..
  9. Replies
    11
    Views
    4,143

    Re: wprintf doesnot print Chinese character

    try by using MultiByteToWideChar function to convert to unicode and on both the machine, check the value of first parameter(which is code page).

    I think u might get the difference there.If the...
  10. Replies
    11
    Views
    4,143

    Re: wprintf doesnot print Chinese character

    which OS u r using....???

    From ur ques..it seems that it might be a problem of code page u are using.....
  11. Replies
    1
    Views
    5,425

    _tcstol Conversion Problem...

    Hi,
    I have to convert a hex value to int, for that I use

    Variable are of foll. type..
    std::string pFirstStr
    wchar_t ptrTemp;

    nChar = _tcstol(pFirstByteStr.c_str(), &ptrTemp,16);//Problem...
  12. Replies
    2
    Views
    745

    Converting Hex Char to Int

    Hi, I am having a string , containing hexadecinak Value.
    I want to get its corresponding int value..
    what method I can use for this




    Regs
  13. Re: Conversion Problem In Multi Byte to Wide Char

    I came to know that output is not correct, as when I typed a chineese character, it did not displayed properly in the web controller.

    Secondly.. earlier the application was not supporting, and I...
  14. Re: Conversion Problem In Multi Byte to Wide Char

    Hi,

    Thanks for the time devoted by u...Still I have the same prob..
    can u have a look once again..

    I tried this by replacing the fifth parameter to 200, as well as, the second option by...
  15. Conversion Problem In Multi Byte to Wide Char

    Hi, I am working on a Unicode Conversion Module and facing this problem..

    I have define
    typedef basic_string<TCHAR> tstring;

    tstring strFirstMsg;
    tstring strSecondMsg;

    these two string...
  16. Replies
    0
    Views
    455

    Unicode Character Read Problem

    Hi,
    I am converting an application to unicode.
    Now in uncode a character may be of 1 byte or may be of 2 byte.So whenever I read that character(say in chinese), I need to know whether it occupies i...
  17. Re: Representing UNICode equavalant ofa Chatracter

    Hi,
    I made all the changes, which are specified in that link and for my problem I got a solution, in which message will be follwed by &#x and the browser will show correct display.

    Is there any...
  18. Re: Representing UNICode equavalant ofa Chatracter

    Hi,
    I checked the links...
    Conversion related with the strings, I have atready performed, so that it is compiling properly.....
  19. Representing UNICode equavalant ofa Chatracter

    Hi,
    I am convert an application in to UNicode.
    Hhow to get the unicode equavalant of a character.
    say I typed a message in some language say chineese.. and I want its equavalant message in...
  20. Re: How To convert Unicode RTF string(International) to HTML

    Hi,
    I check this link, but could not find much useful. Can u suggest something else...
  21. How To convert Unicode RTF string(International) to HTML

    Hi,
    I am converting an application in to unicode.
    my input string is an RTF string, and I need to convert this in to corresponding HTML string.

    here is the input string:
    This is for chineese...
  22. Replies
    1
    Views
    683

    UniCode Conversion problem

    Hi, I am converting an application to Unicode.

    It compiles successfully in UNICODE.
    but when I run, the output was something strange.

    In fact I am taking Input in a BSTR variable, and want to...
  23. Re: Regarding Converting of an application to Unicode.

    Thanks for clarification.................

    Regs
  24. Re: Regarding Converting of an application to Unicode.

    Hi,
    Pl. clarify this doubt..
    If I am converting an application, than is it necessary to replace
    int with DWORD,
    char[] to char*, and other similiar one.

    Regs
  25. Re: Regarding Converting of an application to Unicode.

    Hi,
    There is a doubt regarding UNICODE conversion.
    when I am converting an application to Unicode, do I need to replace BOOL, bool,int with something specific.. ??? or can they be as it is...

    if...
Results 1 to 25 of 65
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured