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

Search:

Type: Posts; User: greekgoddj

Page 1 of 9 1 2 3 4

Search: Search took 0.14 seconds.

  1. Re: Validation 'before' setting value or issuing command

    Anyone?
  2. Validation 'before' setting value or issuing command

    Greetings,

    I am relatively new to WPF and have an issue relating to validation with DataGrid control. I have read this article (http://msdn.microsoft.com/en-us/magazine/ff714593.aspx) which covers...
  3. Replies
    3
    Views
    5,724

    Re: Forum for python and wxpython

    Hello,
    Yes I would like to see a Python section!

    pleaseeeee
  4. Re: Conditional Compilation Issues/Problems

    Never mind...It was all my imagination after all!
  5. [RESOLVED] Conditional Compilation Issues/Problems

    Greetings,

    I am having issues with compiling the source code of Kiss FFT http://sourceforge.net/projects/kissfft/ . In the header it has the following compilation condition:



    #ifdef...
  6. Replies
    7
    Views
    885

    Re: Open Source Question

    Hi!

    That cleares things up somewhat! Thanks also for the links. I will look into them in detail now.

    Ciao!
  7. Replies
    7
    Views
    885

    Re: Open Source Question

    Hi,

    So what stops people who are not part of the Firefox developement team from putting out their version of Firefox based on the original Firefox code, and also calling it Firefox?


    PS: We...
  8. Replies
    7
    Views
    885

    Open Source Question

    Hello,

    I am curious about the following regarding open source code. Imagine 5 people download the Firefox source code and makes major changes to it, ading features that they want, and removing...
  9. Replies
    4
    Views
    1,377

    Re: Reading directory contents

    The link above seems dead...or is it just me?
  10. Replies
    6
    Views
    1,295

    Re: Drag and Drop Sticks...

    Yes I call
    CButton::OnLButtonDown(nFlags, point); in the function that handles the OnLButtonDown message, before sendning a custom message to the parent. It does seem like some code somewhere is...
  11. Replies
    6
    Views
    1,295

    Re: Drag and Drop Sticks...

    It is a dialog that contains an object derived from CButton. On OnLButtonDown the custom button fires a message which is captured by the parent dialog. The parent dialog then calls a member function...
  12. Replies
    6
    Views
    1,295

    Re: Drag and Drop Sticks...

    Hi,

    The cursor is the normal one, but if I try to click on some buttons then nothing happens. If I click the button, hold it down and move it a bit, the cursor then changes to the "+" in a square,...
  13. Replies
    6
    Views
    1,295

    Drag and Drop Sticks...

    Greetings,

    I have implemented my first Drag and Drop using OLE. I have followed the examples at MSDN and it more or less works. When I click on control and drag it over the window that supports...
  14. Replies
    8
    Views
    1,134

    Re: Can a member function know who called it?

    Ohh I just posted a reply and then saw your post. Yeah I see your suggestion, and also see how it would be quite an overhead. It seems I will have to go ahead with passing a pointer to the function...
  15. Replies
    8
    Views
    1,134

    Re: Can a member function know who called it?

    Alright,it is as I thought. I know I can pass the object calling the function in the function's argument list, but there are a lot of functions that need this capability and was hoping to avoid...
  16. Replies
    8
    Views
    1,134

    Can a member function know who called it?

    Greetings,

    Another ridiculous question. I highly doubt it is possible to do the following but I might as well ask first.

    Is there a way for a member function to know which object called it?...
  17. Replies
    4
    Views
    1,102

    Re: "Special sting comparison"

    Great..thanks...

    I was searching for "compare common strings." With "longest common substring", I get lots of results.


    Thanks!
  18. Replies
    4
    Views
    1,102

    "Special sting comparison"

    Greetings,

    I am trying to compare strings together in order to extract the common parts in them. For example, if one string is "Twinke twinkle little star" and the second string is "Twinke twinkle...
  19. Replies
    4
    Views
    894

    Re: .lib from .lib

    Great,

    Thanks for that information.

    :)
  20. Replies
    4
    Views
    894

    Re: .lib from .lib

    Well I guess I expected it to know just as it knows when compiling an executable that uses the library, and only code for functions used. Does that make an sense? :confused:
  21. Replies
    4
    Views
    894

    .lib from .lib

    Greetings,

    I have a .lib which is like 23MB and has a lot, and I mean a lot of functions in it. lets call this "A.lib". If I make an executable that uses a few functions from A.lib, then the...
  22. Replies
    20
    Views
    2,891

    Re: Single Event Handle for Multiple Controls

    Ohh..I just posted that last post and THEN saw the recommendation of ON_EVENT_RANGE!! So yes guys..that was what I needed! Thanks Mitesh :)
  23. Replies
    20
    Views
    2,891

    Re: Single Event Handle for Multiple Controls

    Hi again,

    The AX controls take care of events from mouse and keyboard and everything is fine with controls themselves. When the AX controls respond to those user events(or are they messages), the...
  24. Replies
    20
    Views
    2,891

    Re: Single Event Handle for Multiple Controls

    Yes, that is correct. Sorry if it was not clear enough.
  25. Replies
    20
    Views
    2,891

    Re: Single Event Handle for Multiple Controls

    Hmmmm....emmm... good question :blush:

    Well its safe to say now that ON_CONTROL_RANGE is not suitable to be used with ActiveX controls...so the new question is...What is? :)
Results 1 to 25 of 206
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured