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

Search:

Type: Posts; User: VijayDandur

Search: Search took 0.03 seconds.

  1. Replies
    22
    Views
    3,864

    Re: Class Constructor Parameters

    You are trying to reinvent the wheel, there is no need of using win32 API, unless it is very necessary... Use MFC student version.
  2. Replies
    6
    Views
    1,846

    Re: socket programming

    Kindly go through this article.

    http://www.vijaysringeri.blogspot.in/2011/09/bluetooth-server-programming-on-windows.html

    ~Vijay.
  3. Re: Running into issue of managed and unmanaged code

    Dear Eri523,
    Thanks a lot for your descriptive explanation. That was very helpful.

    I'll Tell you how I got into this problem.

    1) Initially I created a win32 console application to create...
  4. Running into issue of managed and unmanaged code

    Hi,

    I'm using VC ++ , Visual studio 2010 express edition.

    And trying to create simple form application, and a thread and some control classes in my application.

    1) But whenever I try to...
  5. Bluetooth _ What is the GUID for " Text transfer"

    Hi,

    In the application which I'm working on. Bluetooth server on pc, exchanges text with bluetooth client on mobile.

    I would like to what is the GUID needs to be registered for this text...
  6. Bluetooth socket not receiving data sent from client.

    HI,

    I'm using windows 7 , 64 bit os, and had written bluetooth server program running on this pc.

    This server will accept connections from clients , and display the text sent by clients.

    My...
  7. Replies
    3
    Views
    9,196

    Re: Handle bluetooth pairing code

    Thanks Mike,
    Yes, I haven't written any client code on the phone.
    But , I'm trying to just pair devices, so i thought it doesn't need any client code on phone.
    ok, I'll check it further.

    Kindly...
  8. Replies
    3
    Views
    9,196

    Handle bluetooth pairing code

    Hi,

    I'm using windows 7 pc, and trying to write a Bluetooth server app.

    My requirement is to pair my Mobile (Nokia -N8) with my server app, and then exchange data using a service class.
    ...
  9. Re: Controling other applications, by publishing events from host application.

    Hi Victor,

    The program is working as expected with the above code changes, but I'm facing another issue.

    The intent of writing this code is to send events to another program by running this.
    ...
  10. Re: Controling other applications, by publishing events from host application.

    Hi Victor,
    Thanks for the info.

    With the below changes, the code is working for me.

    INPUT output[2];
    ZeroMemory(&output, sizeof(output));

    Regards,
    Vijay.
  11. Re: Controling other applications, by publishing events from host application.

    Also, could you please let me know what is "KEYEVENTF_EXTENDEDKEY" and "KEYEVENTF_SCANCODE"
  12. Re: Controling other applications, by publishing events from host application.

    Return value is "2" which is successful.
  13. Re: Controling other applications, by publishing events from host application.

    Hi Victor,

    Here are the answers for your queries.

    1) Define "not working".
    When I run this program, and bring any other application into foreground say " MS world " and place cursor in editor...
  14. Re: Controling other applications, by publishing events from host application.

    Hi,
    I'm trying to use SendInput() Win32 API in my application to simulate keyboard left arrow key press event.
    From the help document I had written below code. but this is not working , can...
  15. Re: Controling other applications, by publishing events from host application.

    Hi Victor,
    No I didn't try it. Ok i'll check on that.

    Regards,
    Vijay.
  16. Controling other applications, by publishing events from host application.

    Hi,
    I'm working on a test project in which I'm planning to control " Need For Speed " game from another application..

    What I actually meant is , you might have played nfs game where the car...
  17. Replies
    1
    Views
    7,605

    Printing using Win32 Printer.

    Hi ,
    I have a problem printing using win32 printer to "Adobe PDF" printer ( Which generates output in pdf format)

    But the same code prints well with all other printers like Freepdf ,...
  18. Replies
    2
    Views
    859

    Advantages of using "Const "

    Hi,
    I know that usage of "const" will replace the traditional macro "#define"
    but there are lots of other advantages using the "const" keyword.

    can some one explain the advantages of using...
  19. Replies
    3
    Views
    3,052

    Re: Using GetPixel Function

    The code works fine with borland builder also.
    Check wheather any system dlls are missing or corrupted.
  20. Re: Is it possible to hide the default copy constructor.

    HI all,
    Thanks a lot.. I got the answer...

    Thanks for your support.

    Regards,
    Vijay.
  21. Re: Is it possible to hide the default copy constructor.

    Hi 0xC0000005 and paul,

    Thanks for your reply. so as i understand the below code

    base(base* baseptr)
    {
    this->i = baseptr->i ;
    }

    won't be considered as copy constructor at all and...
  22. Re: Is it possible to hide the default copy constructor.

    Hi ,
    First of all I don't want to make any constructor private , this leads to singleton class.

    I need answer for my question if all the constructors are made public :-)

    I think you understood...
  23. Is it possible to hide the default copy constructor.

    Hi,
    I am vijay, I have a question on default constructor.

    Question :

    Is it possible to hide the default copy constructor provide by the compiler...?

    Background :

    If the user...
  24. Replies
    9
    Views
    1,959

    Re: I have a question on extern "C"

    Dear friend,
    By adding this " __declspec(dllexport) " statement indicates that the function is to be exported , and __declspec is a standard calling convention. Thats all , it...
Results 1 to 24 of 24





Click Here to Expand Forum to Full Width

Featured