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

Search:

Type: Posts; User: sathyboopathiraja

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Hyperterminal not receiving CSocket data

    Dear All,

    I use CSocket to establish ethernet communication. I have implemented sample client & server code using CSocket. In this Client will one PC and Server will another PC. I will...
  2. Replies
    6
    Views
    922

    Re: Problem in function pointer

    Dear Alex,

    I changed all the things as per your suggestion. now it is working fine... thanx u mr.Alex for ur help..

    With Thanks & Regards,
    Boopathiraja.N.
  3. Replies
    6
    Views
    922

    Re: Problem in function pointer

    whether "void_function()" should be declared as static?

    I have got the following error while i'm trying to compile it..

    error C2276: '&' : illegal operation on bound member function expression...
  4. Replies
    6
    Views
    922

    Re: Problem in function pointer

    Dear All,

    In the above posted code i had one mistake.

    //this has used in oridinary CWinThread class

    CHotStandbyStruct ObjCHotStandbyStruct; //instance of CHotStandbyStruct
    ...
  5. Replies
    6
    Views
    922

    Problem in function pointer

    Dear All,

    I have declared function pointers like following,




    //function pointer declarion
    typedef BOOL (CHotStandbyStruct::*TransCdtnFuncPtr)();
    typedef...
  6. Give your suggestion for client server communication

    Dear All,

    currently client to server communication has implemented using vc++. but i like to do this

    implementation in c#.. i don't know which will be the more reliable. I want to know...
  7. will vc++ 2008 support ListBox DrawItem?

    Dear All,

    VC++ 2008 will support the DrawItem Virtual function in ListBox. Because i use DrawItem

    virtual function. if i tr noty to add the string on the listbox, Drawitem should be...
  8. Replies
    6
    Views
    1,544

    Re: How Change ForeColor of ListBox

    i referred the abovely given article and also implemented in mine code as per the article.

    But in this DrawItem Override function is there. i added this function from the Windows Message
    ...
  9. Replies
    6
    Views
    1,544

    Re: How Change ForeColor of ListBox

    Actually i want to set the fore text color not background color of listbox.
  10. Replies
    6
    Views
    1,544

    Re: How Change ForeColor of ListBox

    In this i shouldn't understand clearly, how set fore color of ListBox text. can u explain with some other clear example. because i can't get any idea clearly from the last reply.

    i hope u will...
  11. Replies
    6
    Views
    1,544

    How Change ForeColor of ListBox

    Dear All,

    I am having list box, in that i want to change the text color or fore color. how can i acheive this.. i tried with some of sites coudn't get anything. simply i want to change...
  12. Re: How set the particular bit on LPBYTE

    Dear All,

    I got the exact thing which i want.. Thaks to all for your valuable sharing with me..

    [code]

    BYTE SetBit( BYTE& ByteValue, BYTE BitPosition, BOOL BitValue )
    {
    ByteValue = (...
  13. Re: How set the particular bit on LPBYTE

    Dear Mr.Cilu,

    If i try with this it complement the specified bit(if 0 it set as 1 (or) if 1 it set as 0).. but i want to set the particular bit position with specified bit value.

    for...
  14. [RESOLVED] How set the particular bit on LPBYTE

    Dear All,

    i am having LPBYTE. this LPBYTE having Hexa value like LPBYTE byteval = new BYTE[1];

    byteval[0]=0x05;

    binary val for 0x05=00000101. In this i want...
  15. Replies
    5
    Views
    1,674

    Re: How Process LPBYTE as bit by bit

    Dear hoxsiew,

    With this solution it is working fine .. there is no problem but we are working with LPBYTE.. so we need to perform bit processing using LPBYTE.. if you have any idea for...
  16. Replies
    5
    Views
    1,674

    Re: How Process LPBYTE as bit by bit

    Dear hoxsiew,

    Can i pass the union object in the WriteFile function.. because i want to transmit in the COM port..
    I use the following function to write data in the com port..

    BOOL...
  17. Replies
    5
    Views
    1,674

    How Process LPBYTE as bit by bit

    Dear All,

    I am transmitting data through COM Port using LPBYTE . actually one byte having 8 bits.

    For example:
    LPBYTE TransBuf = new BYTE[1];
    I assign value in TransBuf...
  18. Reg: How change the Direction of text

    Daer All,

    Actually i use TextOut for printing text.. in that how i can print the text in horizontal direction.. how print top to bottom direction i couldn't get anything... myself...
  19. Using CSocket how reduce Connection timeout?

    Dear All,

    I am establishing network communication using CSocket, in that i met the one problem. if client try to connect with offline server ( Offline server means Not in listen mode),...
  20. CAsyncSocket will support CSocketFile?

    Dear All,

    i am trying to use CSocketFile using CAsyncSocket. But it gives error information.
    CClientSocket uses CAsyncSocket.

    [Code]
    CArchive* m_pArchiveIn;
    CArchive* m_pArchiveOut;...
  21. Replies
    2
    Views
    922

    Re: Problem With CSocket::Connect

    Dear Victor,

    It Wotks fine... thax u for ur guidance..

    With regards,
    Boopathiraja.N
  22. Replies
    2
    Views
    922

    Problem With CSocket::Connect

    Dear All,

    I use Connect(IP,Port) function to connect with server from client. if server port is in Listen mode, Client Connects with server within 1 sec.

    Suppose if server not in...
  23. Re: Need help in IsDestinationReachableA(IP,lpQOCInfo) function

    Dear mr.Ajay Vijay,

    Actually mine project requirement is based on CSocket, so i can't se Win-Sock mr.vijay.

    Thax u mr.Ajay vijay.
  24. Re: Need help in IsDestinationReachableA(IP,lpQOCInfo) function

    Dear Ajay Vijay,

    thank u for your effort. but i already tried with this example.. it will support only WinSocket. but i am using CSocket. So I can't use this.. even though thanx u for...
  25. Re: Need help in IsDestinationReachableA(IP,lpQOCInfo) function

    Is there any value we need to mention for lpQOCInfo? can explain with sample example becz i have no idea ... how pass the parameter for lpQOCInfo?... can u guide with example...


    Thax u!
Results 1 to 25 of 73
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured