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

Search:

Type: Posts; User: LordHolNapult

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Re: Add Icon to a Button , keeping the Text

    Well, thank u for the code. I will study it later.
    At the moment I've found a class that does what I've needed... but it's not mine :|

    I was suppose not to create a class, but to modify my...
  2. Re: Add Icon to a Button , keeping the Text

    yes, and I've tryed many ways... but failed.

    Essentially, I dont want to use a foreign class already prepared, I would like to understand what to put in OnInitDialog ....
  3. [RESOLVED] Add Icon to a Button , keeping the Text

    Hi, I've lurked many hours to understand this... but I'm not so good to understand the code of the others..

    - I have a button in a dialog application.
    - To get some colours, I would like to...
  4. Replies
    9
    Views
    1,249

    Re: Child Dialog disconnected from Parent

    Bah! NON technical answer... :thumbd:

    Suppose this case: Dialog TWO does many things. If It finds that some data are not updated, it casts an advise dialog (THREE) with the error message.
    ...
  5. Replies
    9
    Views
    1,249

    Re: Child Dialog disconnected from Parent

    I've reached this conclusion on my own and fixed the program, because the test that control this damned popup is a test already done inside the Parent caller.

    But I want consider my worst case,...
  6. Replies
    9
    Views
    1,249

    Re: Child Dialog disconnected from Parent

    You didn't read carefully... let's try like this:

    Throwing the Three dialog from the TWO::OnInitDialog function, show THREE BEFORE TWO appears. Only after I've closed Three, TWO appears.
    And...
  7. Replies
    9
    Views
    1,249

    Re: Child Dialog disconnected from Parent

    ok, hope pseudo-code is right :

    Class ONE {

    void my_ONE_func( void) {

    TWO obj;
    obj.domodal();

    return;
  8. Replies
    9
    Views
    1,249

    Child Dialog disconnected from Parent

    :confused:
    hi, I've got this strange error:

    I have a dialog base program. The Parent Dialog (call this ONE) call a CHILD (call this TWO ), but, inside the TWO::OnInitDialog function I call an...
  9. Re: Visual c++ 6 fail the autofill function (intellisense)

    Be Sure i will try tonigh!

    I only hope that the problem could be solved...

    anyway, god bless you! :cool:
    --------------
    EDIT: PERFECT!!! IT WORKS!!! THANKS A LOT AND SEE YA!...
  10. Visual c++ 6 fail to show listing functions(intellisense)

    Hi, I have a little proble with my Visual C++ 6.0 sp6 :
    I have a dialog based application with an Utility class that I use for various functions.

    Inside the Class of a Dialog I've added a new...
  11. Re: Catch the HELP event of a Property Sheet

    Of Course I've tried what you said, but nothing happened at the Button HELP clicking.
    The program Ignore any winhelp event method... :cry::cry::cry:
  12. Replies
    6
    Views
    1,077

    Re: random nbrs

    to memorize your numbers use a number array and create a function to test if the number has been already called.

    Of course this is not a high performance code... and after 40 "random" numbers you...
  13. Replies
    6
    Views
    1,077

    Re: random nbrs

    Hi,
    try to call this function to recreate the Random sequence of numbers.

    Call it only ONE time, no further calls necessary



    srand( time(NULL) ); //rehash random numbers

    const int...
  14. Re: Catch the HELP event of a Property Sheet

    Thank you for the answer.. but i didn't seems to run for me :cry:

    I post some code:

    Inside Property Sheet Constructor I create property Pages..

    ...
  15. Re: Catch the HELP event of a Property Sheet

    someone can help , please ? :(
  16. Catch the HELP event of a Property Sheet

    Hi everyone, I have a property Sheet with many property pages.
    I've already coded everything about catching Ok, Cancel and Apply events.
    Using Visual c++ 6 it was only a matter of the event list to...
  17. Re: How to change a Property Page Title ?

    Whoooa!! Hours of Darkness burned by my infusible brain.
    I've lurked all around the WEB and this is my BEST SOLUTION found.. hope to have some glory now :cool: !!

    Ok, you can change the TITLE of...
  18. Re: How to change a Property Page Title ?

    Thanks, but I don't undestand very much.
    Can you gently show to me an example of how to use this function to change the Property Page ( NOT property sheet...) title ?
  19. [RESOLVED] How to change a Property Page Title ?

    Hi, I've the following Property Sheet (PS) structure:

    PS (Property Sheet) - main window
    + PP1 (property page 1) - object
    + PP2 (property page 2) - object

    As you know, I can only draw...
  20. Replies
    3
    Views
    1,004

    Re: DoModal()

    I've also used 2 different ways:

    The first and the simpler is to manage temporary files that contain my data. Using DoModal on dialog class must finish with a OnOK() function that writes what I...
  21. Re: ClistCtrl - Sortitems() error

    I've solved!

    before every "string" sorting, I must do a sort process with this compare proc.


    "return (int)(lParam1 - lParam2);"


    I still don't know why... but I suppose that should be...
  22. [RESOLVED] ClistCtrl - Sortitems() error

    Hi, I've this strange problem :

    I've a list of 30 rows x 5 columns.
    (Every row contains 5 strings and I've coded the Headers to obtain the click event.)
    Obviously I try the sortItems when this...
  23. Replies
    1
    Views
    722

    Image i ClistCtrl - Details

    Hi, I've a problem because I want to put an Icon/Bitmap inside my REPORT list, but after I've done the example code, I didn't find the way to insert the Bitmap where in the THIRD column or the rows
    ...
  24. Re: How to catch the Carriage Return in a single line Edit Box ?

    Thanks.
    Seems to be a bit difficult for the purpose I expected.

    Anyway I've changed te DEFAULT button from On OK to the FIND WORD button. :cool:
    Now the enter command is catched.
    This is a...
  25. How to catch the Carriage Return in a single line Edit Box ?

    I've this problem :

    I've a dialog box with the return default key associated to OnOK() method. This is good , but I wanto to get the Carriage Return inside one of the CEdit Box I have in this...
Results 1 to 25 of 47
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured