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

Search:

Type: Posts; User: mecheil.edwar

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    5
    Views
    2,088

    Re: dynamic array resizing

    I can advise you to read Data Programming in C++,

    this will provide you a good understanding for how to manage the memory during run time of your program..


    you can read also read Ivor...
  2. Re: how to send event from MDI window to child window

    I hope to find answer to this question..
    I am using VS 2008 and OS win7 64 Bit ...

    I have a strong understanding for Win API programming but I am new for CS..

    Many thanks in advance for your...
  3. how to send event from MDI window to child window

    I have a simple question :

    my project is two windows = main window + child window
    I added button1 in main window

    When I click in Butten1 I want to send this event to Child window to Draw Line...
  4. Re: The Best Books to Learn how to protect the softwares - C/C++ WinAPI32 Programming

    D_Drmmr,

    Many Thanks for your answer,

    May I expect to get any PDF Document and/or Book to help in this issue.

    My Best Regards
  5. Re: How to Add Symbols Like Phi , Sqaure Roots , Alpha .. to WinAPI32 Application

    Many thanks Igor for your answer.

    May I request further details or any Hints to use Rich text control.

    My Kind Regards.
  6. How to Add Symbols Like Phi , Sqaure Roots , Alpha .. to WinAPI32 Application

    I try to build Win32API engineering Applications..
    the output text should Have so Many Latin Letters Like Alpha , Phi , Theta
    and many math Symbols Like Square roots.. But I do not know how can I...
  7. The Best Books to Learn how to protect the softwares - C/C++ WinAPI32 Programming

    I would like to Know the Best Books that can teach how to protect the softwares. in other words how by writing C/C++ WinAPI32 I can protect my program.

    I see some programs are using dongles...
  8. Re: How to arrange work Between WndProc & New Thread

    Thanks D_Drmmr for your reply..
    But the Problem if I let GDI paint the window , I will lose the the Painting object from OpeGL Device...

    So I need to stop painting from GDI on the child Window...
  9. Re: How to arrange work Between WndProc & New Thread

    Any Updates ..
  10. How to arrange work Between WndProc & New Thread

    Hi My Best Friends,

    I have very simple question :

    Given :
    - To Build a Window and add bottuns on this window , Say Window 1

    - From This Window ,Build Child Window Say Window 2

    Required :
  11. Re: How to add data by Using Function CreateFile(...)

    How Can I thank You Igor , for your effective efforts and your perfect code...
    Really I have to thank you very much.. for this valuable code..
    It is working very well.. Excellent...
    My Best...
  12. Re: How to add data by Using Function CreateFile(...)

    Thanks Victor ,
    But I do many Trials But I could not write file as per required format..
    Hoping I can get support..

    My Best Reagrds
  13. Re: How to add data by Using Function CreateFile(...)

    Thanks Victor for your reply,

    I wrote this code :
    //~~~~~~~~~~~~~~~~~~~~~~~
    WriteFile(hf,TEXT("3 \n"),a,&FileSize,NULL);
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    But unlucky it is not working ( I...
  14. How to add data by Using Function CreateFile(...)

    I try to Create one text File By Using CreateFile(..) Function,

    I want to add data ( x,y,x) coordinate to file By This way :

    X Y Z
    1 3 8
    0 13 11

    But when I write...
  15. Re: OpenGL with C++ Application GLUT.DLL Problem

    Many Thanks Igor for your clarifications..
    and one more question , Can I combine DLL file with my Project .. because if I run the *.exe file the *.DLL file will be included with the *.exe file..

    ...
  16. Re: OpenGL with C++ Application GLUT.DLL Problem

    My Deep Respect for you Victor , every time you do your best to answer my questions...

    and Kindly I have one idea I want to discuss , Some saying copy the file *.DLL and keep it with working...
  17. OpenGL with C++ Application GLUT.DLL Problem

    I try to Build one Application by Using OpenGL...

    But every time I try to check the Application I got this message

    GLUT.DLL is missed..

    I checked the folder c/Windows/System32
    I found the...
  18. Re: How to Activate WM_CHAR Message with Edit Box (from DIALOG)

    Thanks Victor For your answers , After searching for this subject and as per Igor Answer also ,
    Modeles Dialog can not recieve WM_CHAR Message ,

    And I can suggest some ideas to manage CHAR ,
    ...
  19. Re: How to Activate WM_CHAR Message with Edit Box (from DIALOG)

    Thanks Igor for your perfect answer , But is there any tool to manage the Input Char ,

    I Understood that Dialog Box Manage only the the Keyboard interface for Few Keys Only as Example (Enter...
  20. Re: How to Activate WM_CHAR Message with Edit Box (from DIALOG)

    I hope Igor , Marc Gregoire and VictorN will provide us a solution for this subject..

    My Best Regards
  21. Re: [Question] How to get Data from Edit Class

    Thanks for VictorN , Igor and Marc for their answers ,

    I have other question , If I add Edit Class inside Dialog Class ,
    I found that WM_CHAR message is not working ,
    How I can get WM_CHAR...
  22. Re: How to Activate WM_CHAR Message with Edit Box (from DIALOG)

    I got solution for first problem
    To Set the no of Char in Edit Box Use this Function;
    SendDlgItemMessageA(hDlg,EDIT_BOX1,EM_LIMITTEXT,4,lParam);

    Here I Put No of Char of Edit_Box1 as Example...
  23. How to Activate WM_CHAR Message with Edit Box (from DIALOG)

    I try to build one application as following:

    The Main Window With Window Class = CLASS1 ; and With Window Proc =wnproc()

    Then I create a dialog (Child window) By Using Function :...
  24. How to Set the number of char that input in Edit Box

    I do one application ,
    I want to define the number of char that user input to Edit Box (Edit box inside Dialoge)
    as Example if I want to input in Edit Box 4 digit only say 1223 as example
    How can...
  25. Re: wsprintf() Function how to read Double Variable

    Thanks so much S_M_A and VictorN for valuable answers,

    and Here is code example :


    int p,z;
    double x; x = 23.4454 // as example

    CHAR AA[20];
    TCHAR sBuffer[80];
Results 1 to 25 of 66
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured