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

Search:

Type: Posts; User: wow9999

Search: Search took 0.09 seconds.

  1. Replies
    2
    Views
    670

    toolbar at win32

    Hi all

    How to create a toolbar at win32 application?
  2. Thread: #define ?????

    by wow9999
    Replies
    2
    Views
    663

    #define ?????

    Hi there

    Can someone tell me What these code mean and why people want to write code like these?


    #define LVNI_ALL 0x0000
    #define LVNI_FOCUSED 0x0001
    #define...
  3. Thread: CListCtrl

    by wow9999
    Replies
    11
    Views
    11,900

    Thank you for your help, i am going to try it now.

    Thank you for your help, i am going to try it now.
  4. Thread: CListCtrl

    by wow9999
    Replies
    11
    Views
    11,900

    Hi there I used SetItemState, but only the...

    Hi there

    I used SetItemState, but only the last item will be seleted and get focus;

    Here is my code

    for(int i=0;i<=10;i++)
    {
    m_ImageList.SetItemState(i,LVIS_SELECTED,LVIS_SELECTED);
    }
  5. Thread: CListCtrl

    by wow9999
    Replies
    11
    Views
    11,900

    CListCtrl

    Dear all

    I create a dialog and add a List control which is a icon list control.

    i can selete several items if i press Ctrl or Shift.

    now, i want several items being seleted and set focus...
  6. Replies
    6
    Views
    1,354

    Thank you for your help. Do you mean...

    Thank you for your help.

    Do you mean "LVIS_FOCUSED","'LVIS_CUT".........

    I found "LVIS_FOCUSED", but the MSDN states " The item has the foucs, so it is surrounded by a standard focus rectangle,...
  7. Replies
    6
    Views
    1,354

    Sorry for asking the wrong question. i use...

    Sorry for asking the wrong question.

    i use CListCtrl to show Bitmap, and i want all of Bitmaps getting focus automatically when i open my dialog. Therefore, i use ClistCtrl's function SetItemstate...
  8. Replies
    6
    Views
    1,354

    using SetItemState

    Hi there

    for(int i=0;i<=5;i++)
    {
    m_ImageList.SetItemState(i,LVIS_SELECTED,LVIS_SELECTED);
    }

    How to selete more than one item by using SetItemState function?
  9. Replies
    5
    Views
    665

    Hi guys Thanks for your reply. I am looking...

    Hi guys

    Thanks for your reply.

    I am looking for a SCM-Source Code Manager, not a Project Manager, to substitute VSS.
  10. Replies
    5
    Views
    665

    looking for a software to manage project

    Hi there

    i am using MS visual sourcesafe to manage my VC++ project,

    Does anyone know other kind of software that can manage VC++ project like Visual Sourcesafe?


    Thanks
  11. Replies
    9
    Views
    2,640

    I am really thank you for help me to solve this...

    I am really thank you for help me to solve this problem. and i found another way to assign a Chinese Character to UINT




    CString aStr = "Learning ¤¤¤å";
    int i = 0;
    while...
  12. Replies
    9
    Views
    2,640

    HI DWORD GetGlyphOutline( HDC hdc, ...

    HI

    DWORD GetGlyphOutline(
    HDC hdc, // handle to device context
    UINT uChar, // character to query
    UINT uFormat, // format of data to return
    LPGLYPHMETRICS...
  13. Replies
    9
    Views
    2,640

    Thanks ...

    Thanks

    code:--------------------------------------------------------------------------------
    CString aStr = "Learning ¤¤¤å";
    char cChinese[3];
    cChinese[2] = '\0';
    int i = 0;
    while...
  14. Replies
    9
    Views
    2,640

    Thanks for your reply. for extracting currenct...

    Thanks for your reply.

    for extracting currenct byte, do you mean to use the IsDBCSLeadByte()?

    I really donot how to extract both the current and next byte, and combine the 2 extracted bytes ...
  15. Replies
    9
    Views
    2,640

    Extracting Chinese Character from a CString

    Dear all


    CString aStr="Learning ¤¤¤å"; //a mixed English and Chinese string

    Extracting each Chinese Character from The String and assign it to a UINT data type.

    UINT aWord = ????
    ...
  16. I do use _MBCS. How do i make a doubel byte...

    I do use _MBCS.

    How do i make a doubel byte character , when i get the Chinese character from the string?
  17. Extracting Chinese Character from a CString

    Dear all

    CString aStr="Learning ¤¤¤å"; //a mixed English and Chinese string

    Without using Unicode, How can i extract a single Chinese Character from a Mixed English and Chinese string?

    ...
  18. Thread: CString

    by wow9999
    Replies
    5
    Views
    978

    Thanks for your reply. my program is not...

    Thanks for your reply.

    my program is not UNICODE.

    Do i have to change my program to UNICODE?

    Thanks
  19. Thread: CString

    by wow9999
    Replies
    5
    Views
    978

    CString

    Hi all

    CString aStr="¤¤¤å"; //receive a Chinese sentence
    int aLength=aStr.Length(); //it returns 4, why not 2

    I need to work on strings character by character, so i assign each word to a...
  20. Replies
    0
    Views
    1,060

    "Print"--Send a file to Printer

    Hi

    Is anybody knows the way of how to send a text file to be printed to printer?

    I creat the file using CStdioFile.
Results 1 to 20 of 20





Click Here to Expand Forum to Full Width

Featured