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

Search:

Type: Posts; User: Bengi

Page 1 of 18 1 2 3 4

Search: Search took 0.24 seconds.

  1. Replies
    3
    Views
    1,256

    Re: convert FILE* to HFILE

    win32 programming uses Handlers, when u create a file/open a file, u get a handler to it,the return value is not the file pointer like in c (FILE*), it is a dword value.
    u use the handler to copy...
  2. Thread: How to Show...

    by Bengi
    Replies
    2
    Views
    733

    Re: How to Show...

    thanks Khp!!

    you'v really helped me to learn new stuff :) :thumb:
  3. Thread: How to Show...

    by Bengi
    Replies
    2
    Views
    733

    How to Show...

    Hey guys,

    i am quite new in XSL, so i started learn it a bit.
    although i am quite confuse.

    i want to show this XML data in my web page (html)



    <?xml version="1.0"?>
  4. Replies
    0
    Views
    942

    (Symbian) CMdaAudioToneUtility prob

    if someone knows about symbian,
    i can't seem to make the CMdaAudioToneUtility run.
    i mean, the code crashes when i create the object.
    also examples on sites crashes...
    normally i just try do a...
  5. http://gamedev.net/reference/list.asp?categoryid=2...

    http://gamedev.net/reference/list.asp?categoryid=24#55

    MSDN
  6. Thread: Popup Menu

    by Bengi
    Replies
    2
    Views
    1,322

    HBITMAP hMenuItemBitmap = LoadBitmap(hInst,...

    HBITMAP hMenuItemBitmap = LoadBitmap(hInst, MAKEINTRESOURCE(IDB_PIC));
    SetMenuItemBitmaps(hPopupMenu, iPosition, MF_BYPOSITION, hMenuItemBitmap, hMenuItemBitmap);
  7. Replies
    1
    Views
    2,858

    #define _WIN32_WINNT 0x0400 #include ...

    #define _WIN32_WINNT 0x0400
    #include <Windows.h>
    #include<conio.h>
    #include<stdio.h>
    #include <stdlib.h>
    #include <string.h>

    ...
  8. Replies
    1
    Views
    776

    The CopyFile function copies an existing file to...

    The CopyFile function copies an existing file to a new file.

    BOOL CopyFile(

    LPCTSTR lpExistingFileName, // pointer to name of an existing file
    LPCTSTR lpNewFileName, // pointer to...
  9. Replies
    7
    Views
    1,388

    thnx paul! i wonder why SGI didn't though...

    thnx paul!

    i wonder why SGI didn't though about deallocation ...
    /me slaps SGI's main coder ;) "add deallocation godverdomme" :D
  10. Replies
    7
    Views
    1,388

    yes it is really long, can't really find the...

    yes it is really long,

    can't really find the sulotion there, reading it will take too much time, so may i just ask for the sulotion to be answered here?
    thnx
  11. Replies
    7
    Views
    1,388

    what is the exact link please? searching in the...

    what is the exact link please?
    searching in the board is like finsing niddle in a haste ;D
  12. Replies
    7
    Views
    1,388

    The STL Deallocation Story

    hi,

    i'v been using STL and it's really ease to code in.
    the only problem i am getting is that the containers i use:
    for example:
    vector<some type: struct,int...>, multimap<...,...>
    are never...
  13. Replies
    6
    Views
    765

    http://www.codeproject.com/useritems/ListView.asp

    http://www.codeproject.com/useritems/ListView.asp
  14. Replies
    6
    Views
    900

    EndDialog()

    EndDialog()
  15. Replies
    2
    Views
    1,485

    i already posted a code somewhere, but here we go...

    i already posted a code somewhere, but here we go again.



    HWND CreateToolBar(HWND hWnd, HINSTANCE hInst)
    {
    /*
    Function:
    ---------
    "CreateToolBar"
  16. 1. Creating ToolTips and assigning them to...

    1.


    Creating ToolTips and assigning them to controls is a lot easier than the way you have gone about it.

    First thing you need to do is activate tool tips for the Parent Window (ie: the...
  17. Replies
    11
    Views
    1,123

    rename *.c -> *.cpp

    rename *.c -> *.cpp
  18. Thread: Change Color

    by Bengi
    Replies
    1
    Views
    531

    Change Color

    hi, i want to change the color of a selected item in my listview (list control.)
    anyone has any idea?
    mfc/win32api sample will be happely awarded.
    see pic to understand what i wanna do.
    i know i...
  19. Replies
    0
    Views
    688

    Change selection color

    someone knows how to change the slelection bar's color ?
    in exampleu i want to change the rect's color in a listview when i select an item.
    i tried this piece of code:


    case...
  20. ListControl == ListView :) there are 2 Lists :...

    ListControl == ListView :)

    there are 2 Lists :
    1. ListBox
    2. ListView (ListControl)
  21. u need to subClass the control and handle the...

    u need to subClass the control and handle the WM_CHAR
    it will be good idea to send the chars u want to handle in the lParam as array and scan it in ur own procedure
  22. Replies
    6
    Views
    1,041

    same problem here ...

    same problem here ...
  23. http://www.codeproject.com/useritems/ListView.asp

    http://www.codeproject.com/useritems/ListView.asp
  24. Replies
    17
    Views
    2,903

    heya, well, i didn't though of the copy...

    heya,
    well, i didn't though of the copy constructor as being the problem (i wasn't able to pin point it).
    i knew it crashes on the delete after x times, but fail to notice the copy problem.
    i...
  25. Thread: Spin Control

    by Bengi
    Replies
    1
    Views
    750

    InitCommonControls(); fucntion!! write it in the...

    InitCommonControls(); fucntion!! write it in the case WM_INITDIALOG:
Results 1 to 25 of 430
Page 1 of 18 1 2 3 4





Click Here to Expand Forum to Full Width

Featured