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

Search:

Type: Posts; User: anantwakode

Page 1 of 29 1 2 3 4

Search: Search took 0.18 seconds.

  1. [RESOLVED] IActiveScriptParse::ParseScriptText Issue

    Hi,

    Thanks for looking in to this.

    While exprementing with scripting engine, facing some poblem regarding ParseScriptText, If I call this function from application's main thread then everyting...
  2. IConnectionPointContainer Implemantation Issue

    Dear All,

    thanks for looking in to this.

    I am implementating IConnectionPointContainer for myClass, I have simply publically derived it from IConnectionPointContainer and other interfaces....
  3. Importing .IDl file and genrating code

    Hi,

    I have an existing .idl file, which is having so many interfaces , I need to automate the process of ATL Wizard to create the empty definition classes for the interfaces defined in the idl...
  4. Replies
    2
    Views
    949

    Re: Read diffrent formats file in MFC.

    Hi,

    go through this link here you will find file formats of your interests.

    http://en.wikipedia.org/wiki/List_of_file_formats

    according to file format read bytes from the file and store the...
  5. Replies
    19
    Views
    3,967

    Re: COM server exe import

    Hi,


    might be there is any issue with the path specified.. !

    -Anant
  6. Replies
    19
    Views
    3,967

    Re: COM server exe import

    Hi,


    check the section "Search Order for filename" in
    http://msdn.microsoft.com/en-us/library/8etzzkb6(VS.71).aspx


    -Anant
  7. Re: Problem getting info out of serial port

    Hi,

    Try keeping no of bytes to be received less...! how many bytes do you receive in in single read ??? why do you used two calls for readfile...just use if..else..


    -Anant
  8. Re: Developing a native C++ monitor class using condition variables

    Hi,

    What you want to monitor ??? plz describe your problem in detail ..! so that other can understand the problem and provide the solutions.
    what you want to do exactly ?


    -Anant
  9. Replies
    1
    Views
    2,946

    Re: setsockopt - keep alive

    Hi,

    check WSAIoctl() API. and SIO_KEEPALIVE_VALS Control Code.


    -Anant
  10. Re: Need some books and documentations.

    Hi,

    Check the book ..
    "file system internals" By Rajeev Nagar

    -Anant
  11. Re: problem in developing drivers in kernel mode

    HI,

    you can test your drivers on same machin by using VMWare.

    -Anant
  12. Replies
    19
    Views
    3,967

    Re: COM server exe import

    hi,

    is it working on same machin ???


    -Anant
  13. Replies
    6
    Views
    1,927

    Re: Memory leak or not memory leak?

    Hi,

    check this.. !

    http://www.softwareverify.com/cpp/memory/index.html



    -Anant
  14. Replies
    5
    Views
    1,028

    Re: Question re: fread/fwrite

    Hi,


    FILE * the_file;
    the_file = fopen(filename,"w+b")
    fwrite(Array1,sizeof(unsigned char),size_x,the_file);
    fclose(the_file );
  15. Replies
    5
    Views
    1,028

    Re: Question re: fread/fwrite

    hi,


    try to print your array before writing to the file.. ! have you checked the array contents. ???


    -Anant
  16. Replies
    4
    Views
    840

    Re: Memory Leak

    HI,

    try this


    char *string = NULL;//new char[szTemp.GetLength() + 1];
    string = (char*)szTemp.GetBuffer(szTemp.GetLength() + 1);
    wcstombs(string, szTemp, szTemp.GetLength() + 1);
    m_nFileSize...
  17. Replies
    2
    Views
    959

    Re: C++ Developer - Surrey, UK

    hi,


    please make your private message ON as well as post your mail ID, so that other user willbe able to send you private messages and mail .


    Thanks,
    anant
  18. Replies
    7
    Views
    9,182

    Re: Is Thread Alive or Not

    hi,

    yes it is true...it is blocking call. it is useful in case where,
    we want to do something like cleanup on termination of thread, as waitforsingleobject won't consume any cpu cycles, it is...
  19. Replies
    7
    Views
    9,182

    Re: Is Thread Alive or Not

    Hi,

    In windows you can use waitforsingleobject() on thread handle to determine thread handle state is signeled or nonsigneled, i.e terminated or alive.


    -Anant
  20. Re: How do I read/write to a parallel port using windows DDK?

    Hi,

    Go through, Art Bakers "The Windows 2000 Device Drivers" book in chapter 8 , he has explained very well how to write loopback driver for parallel port.

    -Anant
  21. Re: Access Violation error in VC++ program

    Hi,

    its really difficult to say anything about the exception without the code , it may have several reason...go through this article..

    http://www.updatexp.com/0xC0000005.html

    if its possible...
  22. Replies
    1
    Views
    683

    Re: data over internet

    Hi,

    use Sockets

    http://www.codeproject.com/KB/IP/winsockintro01.aspx


    -Anant
  23. Replies
    4
    Views
    983

    Re: Opening Port

    Hi,

    what errors are you getting in code you have posted ?? are you able to open port ?? send command receive responce ??

    try to initialise array before using it may have garbage data which...
  24. Replies
    20
    Views
    2,961

    Re: Congratulations to Arjay for 4k posts...

    Hi Arjay,

    Congratulations !

    -Anant
  25. Replies
    4
    Views
    983

    Re: Opening Port

    Hi,

    what problem you are facing... ??? please be specific ?

    use code tags while posting code !

    -Anant
Results 1 to 25 of 713
Page 1 of 29 1 2 3 4





Click Here to Expand Forum to Full Width

Featured