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

Search:

Type: Posts; User: SilentJackqh

Page 1 of 3 1 2 3

Search: Search took 0.07 seconds.

  1. Replies
    5
    Views
    1,504

    LoadImage(GetModuleHandle(NULL),...

    LoadImage(GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_RESET),...,...,...,...);
  2. Replies
    4
    Views
    1,339

    Jackyquah@hotmail.com

    Jackyquah@hotmail.com
  3. Replies
    4
    Views
    1,339

    Thanx, I will try Blender3D.org one thing I...

    Thanx, I will try Blender3D.org
    one thing I still doesn't got the answer.

    How can I know the location of the mesh in my 3D World ?
    and
    How can I put the mesh to a exact location in my 3D World ?
  4. Replies
    4
    Views
    1,339

    about Create Shape function in Direct3d

    Hi, I am new in this Direct3D
    1.Shape Function in Direct3D 9 X Create Shape Function like :
    D3DXCreateSphere(...) Function.
    what kind of Vertex data( I mean D3DFVF_...) it would return ?
    How can...
  5. Replies
    3
    Views
    1,017

    Sets a new address for the window procedure. ...

    Sets a new address for the window procedure.
    Windows NT/2000 or later: You cannot change this attribute if the window does not belong to the same process as the calling thread.

    From MSDN
  6. Write/Read File in low level Program ?

    how can I Write/Read file in low level directly into Disk, without using ReadFile /WriteFile.
    I mean Read/write directly to Disk Sector.
    what is Dos File Format, Window file format
  7. Replies
    1
    Views
    1,722

    I don't know about ADO or ODBC, but last month I...

    I don't know about ADO or ODBC, but last month I try to make application that can connect to MYSQL Database without ADO or ODBC.
    you just need the library and include files for your code which you...
  8. Dunno I never try BITMAP Button, May be, you...

    Dunno I never try BITMAP Button,
    May be, you can Remove the Border style From BUTTON Window,
    or
    if it doesn't work, use try to used Owner draw Button.
  9. Use Bitmap Button Style ? for Edit Background...

    Use Bitmap Button Style ?

    for Edit Background used :

    WM_CTLCOLOREDIT for or WM_CTLCOLORSTATIC;
    WM_CTLCOLOREDIT is for EDIT Text ;
    WM_CTLCOLORSTATIC is for Readonly Edit Text
    case...
  10. Help, Try to used ATL Control in Win32 programing

    I try to used ATL Full Control, on win32 base.
    I Insert it on Dialog Box.
    but when I try to run it, the dialog box can't appear, but when I delete the inserted control, the dialog box can appear.
    ...
  11. Replies
    2
    Views
    724

    I found it View List. don't bothered with this...

    I found it View List. don't bothered with this post.
  12. Replies
    2
    Views
    724

    it's look like Data Grid on active x

    it's look like Data Grid on active x
  13. Replies
    2
    Views
    724

    Sheet or Data Table.

    Is there any Control dialog that can make a sheet or Data table ?
    which in Win32 API not MFC.
  14. Hi, Completely lost how to make a DLL

    How can I Create a DLL ?
    can someone give simple example. with one function to export, and how to link or export it ?
  15. What's the different between Begin paint and GetDC ?

    I usually used GetDC, never used Begin Paint to paint something in WM_PAINT.
    what's the different ?
    and which one is faster ?
  16. Replies
    15
    Views
    4,128

    BOOL CALLBACK DlgProc(HWND hDlg,UINT msg,WPARAM ...

    BOOL CALLBACK DlgProc(HWND hDlg,UINT msg,WPARAM
    bool bQuit=false;

    wParam,LPARAM lParam)
    {
    switch(msg)
    {
    case WM_COMMAND :
    {
    switch(LOWORD(wParam))
  17. Replies
    15
    Views
    4,128

    what is the combo box style ? Dropdown list or...

    what is the combo box style ? Dropdown list or simple.
    cause, I a problem like that in past with dropdown Combo box.
    may be you not set the height of the combo box more height when he drop down...
  18. Actually, all the Pictures file changes when I...

    Actually, all the Pictures file changes when I call WM_PAINT.
    I found my problem it's seems not in the function.
    when I call it, it deleted by SetWindowRgn, when I refresh it, it back.

    thanx
  19. Help, I don't know what is wrong with this code,

    Help, I don't know what is wrong with this code,
    but when I Display it in a Window, it's nothing happen, the pictures doesn't come up.
    WM_PAINT seems find I try with single pictures it's works....
  20. Replies
    1
    Views
    604

    problem with Edit Text

    is there possible to make Edit Control Detect \n as end of line ?
  21. Replies
    10
    Views
    987

    Sorry to interrupt just wanna ask, how do u know...

    Sorry to interrupt just wanna ask, how do u know that they consumes 4 MB ?
  22. Ok, this is the first one that the terrain...

    Ok, this is the first one that the terrain Pictures didn't show,but no sign the function return error or something else.

    BOOL CALLBACK DlgCreateTerrainProc(HWND hDlg,UINT msg,WPARAM wParam,LPARAM...
  23. I can make it work with this one but I still...

    I can make it work with this one but I still don't understand what is wrong with the first one.

    BOOL CALLBACK DlgCreateTerrainProc(HWND hDlg,UINT msg,WPARAM wParam,LPARAM lParam)
    {
    static...
  24. Need Help can't find the problem with my proc.

    what is wrong with this program can someone help me ?
    the terrain picture can't show up. it's Procedure for a child dialog.
    there is no message that the window can't stretch or hBmp not loaded.
    ...
  25. I think you found ur problem, when used...

    I think you found ur problem, when used WindowProc, except for dialog box. I think u need to add
    DefWindowProc(...) function; in default area;

    example :

    LRESULT CALLBACK WndProc(HWND ...)
    {...
Results 1 to 25 of 58
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured