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

Search:

Type: Posts; User: harshandu

Search: Search took 0.06 seconds.

  1. Replies
    6
    Views
    913

    Re: two dialogs to same class

    I want to invoke dialog A or B depending upon my requirements.
  2. Replies
    6
    Views
    913

    two dialogs to same class

    Hi all,
    Can we add two dialogs to the same class?
    Consider two dialogs A and B of class clz.
    now if i make a call as
    clz obj;
    obj.DoModal();
    here which dialog is invoked.

    ...
  3. Replies
    6
    Views
    928

    Re: Tree View Right Click Problem.

    Ya jayender thats required but it isnt alone solve the problem.we need to override the onnotify function as said above.
  4. Replies
    6
    Views
    928

    Re: Tree View Right Click Problem.

    Hello all,
    Thanks a lot.I solved by using following code.

    BOOL CAddASDU::OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult)
    {
    // TODO: Add your specialized code here and/or call...
  5. Replies
    6
    Views
    928

    Re: Tree View Right Click Problem.

    Ya i am using.
  6. Replies
    6
    Views
    928

    Tree View Right Click Problem.

    Having problems about right clicking on an item in a tree control. The item
    that is clicked on is not the right one.
    If I have three items in a tree.
    Here is my problem. I click on the first item...
  7. Replies
    3
    Views
    642

    Re: Which view to use in MFC.

    I want to draw lines as roads and boxes or rectangles as vechicles.
  8. Replies
    3
    Views
    642

    Which view to use in MFC.

    Hi all,
    i am writing a simulation for traffic systems.I want to know which view is better suited for such type of application.

    Thank u all.
  9. Replies
    14
    Views
    6,002

    Re: MOving a group of buttons in MFC

    Hi all,
    I want to move the buttons while application is running and not in resource editor.

    Thank u.
  10. Replies
    14
    Views
    6,002

    MOving a group of buttons in MFC

    Hi all,

    I need to move a group of buttons.I tried with group box and frames but only the frame or group box is moving and not the buttons placed in it.
    Plz help regarding this.
  11. Replies
    6
    Views
    954

    Re: MFC question -- updation problem

    DoDataExchange function is in class B.
  12. Replies
    6
    Views
    954

    Re: MFC question -- updation problem

    Yes,Exactly the class A is derived from dialog class.and i am using its context.then also i am getting error.
  13. Replies
    6
    Views
    954

    MFC question -- updation problem

    HI,

    There are two classes A and B as follows

    class A
    {

    public:

    update_host(CString hostname);
  14. Replies
    4
    Views
    901

    Calling a function of another class.

    Hi,

    There are two classes A and B.

    class A
    {

    void a1(char )

    }
  15. Replies
    4
    Views
    1,228

    Re: Is using Sleep an ideal solution here?

    HI ,

    What i feel is, if u use sleep and if there are any updates at that time then you will miss those updates.so,instead of sending the updates in that thread,put the updates in a message queue...
  16. Ipaddr. of all machines connected in a local area network.

    HI all,

    how to get the ip addresses of all the computers connected to a local area network.it would be helpful if anybody gives the functions or the code.Thank you

    Regards,
    Harsha.
  17. Replies
    7
    Views
    3,960

    Re: calling c++ function from c

    Hi all,

    Thanks all.My problem got solved by using extern "c" and __cplusplus.The solution given by NMTOP40 worked.Thanks a lot.

    Regards,
    Harsha.
  18. Re: What protocol i have to adopt for reliable transmission?

    Hello,

    I suggest to go on for the TCP/IP protocol.Its better to create two threads one for capturing data and another for sending data.Its better to use queues but addition to that a...
  19. Replies
    183
    Views
    37,346

    Re: Meaning of your username!

    my name is harsh.my user name is harshandu which means me and you.
  20. Replies
    7
    Views
    3,960

    calling c++ function from c

    Hi,

    how to call a c++ function from a c program.my code

    abc.h file

    class one
    {
    private :
    public:
Results 1 to 20 of 20





Click Here to Expand Forum to Full Width

Featured