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

Search:

Type: Posts; User: hotsaravana

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Re: I have developed a Windows Service which causes error in MSVCR80.dll

    In debugger, It is running without any error!!!!
  2. I have developed a Windows Service which causes error in MSVCR80.dll

    I have developed a Windows Service that runs an executable named "RAPIBS.exe". This is developed under VS2005 environment.

    At some point it throws an exception like this...

    "Faulting...
  3. Replies
    4
    Views
    2,470

    Re: how to pass LPBYTE value?

    yeah. Thanks for your update Cilu.. I'll take the second one which is more suitable for any implementation..

    thanks once again.

    With regards,
    Saravana
  4. Replies
    4
    Views
    2,470

    Re: how to pass LPBYTE value?

    yes I'm sure that i'm passing an LPBYTE only

    see the declaration which is shown in the 2nd line of code



    LPBYTE TransBuf = new BYTE[12];


    And I have got it.. It is working well. I have...
  5. Replies
    4
    Views
    2,470

    how to pass LPBYTE value?

    Hi all,

    I'm trying to perform CRC Calculation for a set of byte.
    My Transmit Buffer is LPBYTE.

    here is my code



    CRCCalculator objCRCCalculator;
  6. Replies
    1
    Views
    928

    Text Alignment

    Hi,

    How to align string to Left, Right, Center and Middle? I have done other alignment like middle center,middle left,middle right, top left etc using StringAligment.

    Help me to alignment...
  7. offsetting/buffering of polygon-straight skeleton algorithm

    Hi,
    I want to perform offsetting/buffering of polygon(regular or irregular). I have searched and found straight skeleton algorithm is used for doing the operation in following link.
    ...
  8. Replies
    1
    Views
    3,537

    Trim ellipse

    Hi,
    I want to trim/remove portion of the ellipse when it intersect with another ellipse.There is no inbuilt function in C# to find intersection points.

    So I tried by solving both ellipse...
  9. Communication between two SDI application

    Dear All,

    I'm trying to exchange data between two different SDI application. I should not use any communication channel like Ethernet or Serial. I can allow to use a memory location which is...
  10. Re: Change the mouse cursor location dynamically

    protected override void OnMouseMove(MouseEventArgs e)
    {
    PointF[] MouseMove = new PointF[1];
    MouseMove[0].X = e.X;
    MouseMove[0].Y = e.Y;
    ...
  11. Re: Change the mouse cursor location dynamically

    My Graphics unit is in millimeter, Not in Pixel.Whether it is possible to set float value to cursor position.
  12. Re: Change the mouse cursor location dynamically

    Sorry I have posted wrongly...
    if (!this.Cursor.Equals(Cursors.Default))
    {
    this.Cursor = new Cursor(Cursor.Current.Handle);
    Cursor.Position = new...
  13. Change the mouse cursor location dynamically

    Hi,
    I want to restrict the mouse cursor movement only on Grid points. Grid Point may be float or int value. I have tried in the way i have added in code block, but even for int value it is not...
  14. Replies
    11
    Views
    2,704

    Re: Runtime exception in Release Mode

    Can anyone suggest me where the problem is?
  15. Replies
    11
    Views
    2,704

    Re: Runtime exception in Release Mode

    And regarding Project settings:

    Use of MFC - Use MFC in a shared DLL
    Runtime Library - Multi threaded DLL (/MD)

    These are the options I have given in project properties
  16. Replies
    11
    Views
    2,704

    Re: Runtime exception in Release Mode

    I have set "No Whole Program Optimization" in the project settings

    Yeah ! Heres the code for the Thread One (serial port thread)



    BOOL CPollingThread::IsIdleMessage(MSG *pMsg)
    {
    DWORD...
  17. Replies
    11
    Views
    2,704

    Re: Runtime exception in Release Mode

    The error was in the serial port thread.
    Without calling the InitInstance(), Its accepting the Start Thread Message (which i made intentionally to start the thread) in the below function.


    ...
  18. Replies
    11
    Views
    2,704

    Re: Runtime exception in Release Mode

    hi Ajay,

    I'm having 2 threads. One is display thread its InitInstance() is getting called, but its not coming for the second one. The second one is serial port reading thread.

    with regards,...
  19. Replies
    11
    Views
    2,704

    Re: Runtime exception in Release Mode

    I have missed one information in the above post.

    Basically it is a multi-threaded appln. One thread is looking over the serial port and another thread is looking over the graphics updation in the...
  20. Replies
    11
    Views
    2,704

    Runtime exception in Release Mode

    Dear All,

    I'm using VC++2008 edition in Windows Vista. I have comipled and executed my application in debug mode. Its working fine and providing exact outputs. But when i try to compile in release...
  21. Re: How to find Is another PC in the same network is alive from PC?

    Thanks in advance.
    Actually I had one doubt,
    In my Visual Studio 6.0, there is no such header files or library files.
    So, I just copied that files from the Visual Studio 2005.net system and...
  22. Re: How to find Is another PC in the same network is alive from PC?

    Ya. I have tried with IcmpSendEcho() function.

    It shows errors like this.. when i'm tring to execute the sample program.



    c:\program files\microsoft visual studio\vc98\include\icmpapi.h(175)...
  23. Re: How to find Is another PC in the same network is alive from PC?

    Ya.. I was usually try with CSocket. But do they offer any functions to find my needs out?
    Sorry I'm a beginner to Network programming.
  24. Re: How to find Is another PC in the same network is alive from PC?

    Hi...

    No.. but I didn't need any files or shared folder kind of that.
    Rather I need to check the Ethernet status alone..
    Is it possible with any other function?

    Suppose a Ethernet of the PC1...
  25. How to find PC2 is pinging successfully from a PC1 in a LAN? Any inbuilt function?

    Hai all,

    I'm using VC++6.0

    Scope of problem:
    PC1 wants to continuosly checking PC2's Ethernet Status, Whether PC2 is connected to the Network or not.

    I have found one function.
    ...
Results 1 to 25 of 63
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured