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

Search:

Type: Posts; User: bagavathikumar

Page 1 of 7 1 2 3 4

Search: Search took 0.08 seconds.

  1. Re: how can i convert write() procedure to cout?

    I think, You are looking for variable number of arguments. Go through the below post

    http://stackoverflow.com/questions/1657883/variable-number-of-arguments-in-c
  2. Re: C++ error C2015 "Too many characters in constant"

    You declared the variable 'answer' as int. But you are trying to use as an string. For comparing two strings you can use strcmp function.
  3. Re: how to port an application along with WinCE 6.0 image.

    Dear JhonCZ
    thanks for your reply. I did that one.
    Now i have one more doubt, how to make partition in WinCE based devices to
    store the user information on to the device.

    ...
  4. how to port an application along with WinCE 6.0 image.

    Dear all,
    i am developing an application in WinCE console application using Visuual Studio 2005. Now i want to load this application along with OS image. For this first i have to add...
  5. Replies
    1
    Views
    501

    Problem with splitter

    Hai,
    I am developing a MDI based application. In that i have two set of splitter. For ex splitter1 has TestView1, TestView2 and splitter2 has TestView3, TestView4. In this situation i am...
  6. Replies
    4
    Views
    1,191

    Re: ActiveX Control.....?????

    Thank you Mr Deepak,

    I know that. but My problem is different. I am developing a software with different user privileges. I have the ActiveX control with different version. Depending upon the...
  7. Replies
    4
    Views
    1,191

    ActiveX Control.....?????

    Hai,

    Is it possible to load the ActiveX Control using LoadLibray, or any other way to load the ActiveX Control at the run-time. Please give some reference or links to know the details.

    Thanks...
  8. Problem in receive packets from multiple clients using TCP/IP

    Hai
    i am developing an application in MFC using TCP/IP protocol. My application is designed with one server and more than one client. I am creating new socket for each incoming clients....
  9. Re: Problem in receive data from multiple clients in TCP/IP

    hai hoxsiew
    what you replied is correct. I am creating new socket object for each client which are all connect with server.
  10. Re: Problem in receive data from multiple clients in TCP/IP

    thanks for your reply. but what u suggest and what i did is ok for single client. If i have more than one client then my listen/receive is always receive the data from the last connected socket...
  11. Problem in receive data from multiple clients in TCP/IP

    Hai
    i am developing an application in MFC to send data from a server to multiple clients. But in some time the clients may give some reply to the server. In this case i can only able to...
  12. Replies
    5
    Views
    1,561

    Re: Disable Mouse

    Thank you Mr Skizmo. But i am confusing, redirction is the correct way or any other way is there to completely stop the mouse event.
  13. Replies
    5
    Views
    1,561

    Disable Mouse

    Now i am developing a app using MFC, it is look like a simple game. In that i am using a Joystick. so i have not required mouse. so I want to block all the mouse operations. how can i do.

    Thanks...
  14. problem to Place the Controls in formview?

    I have opened a MDI application with form view as base class. In that form view i have plcaed approximately 150 controls. Now if i tried to place any checkbox, button or any control, it is not...
  15. Replies
    3
    Views
    859

    Re: visual c++ 6

    Use the below function to open the new form.



    void CMyAppDoc::OpenNewView(CView *pNewView, CString strTitle, CRect pRect)
    {
    // Get the Main Frame Object
    CMDIFrameWnd *mFrm =...
  16. Replies
    3
    Views
    859

    Re: visual c++ 6

    you want show form using CFormView or Wizard Type using PropertyPage
  17. Replies
    2
    Views
    885

    Re: Application Crash

    I tried, but the control stops HeapFree function calling in free.c.
  18. Replies
    2
    Views
    885

    Application Crash

    I have an application written in VC++ as a windows service. The main purpose of this application is to send the data to its client through ethernet. It is working fine. but after some time, the...
  19. Replies
    15
    Views
    2,458

    Re: bool vs BOOL

    problem can be arise, when you mix the BOOL type and bool type data. As well as information can also be lost or take a performance slowdown in the conversion from one to other.
  20. Replies
    3
    Views
    866

    Re: Inheritance code - inputting data

    try this one,



    char name[25] ;
    cout << "Name:\n"; cin.getline(name) ;
    PERSON1.setName(name) ;
  21. Replies
    3
    Views
    1,054

    Re: Notepad HELP!!!!

    It is not possible in notepad. try some other editor or Microsoft Word.

    Press the Alt key and select the content with mouse.
  22. Replies
    7
    Views
    4,613

    Re: recv() hang

    At the time of closing the server send the closing status to all connected client.

    In the client side, simple close the socket.
  23. Replies
    1
    Views
    2,565

    Google map in vc++

    I am making an app with htmlview. In this i called a Javascript file, which will load the google map. when i click on to the map the javascript will return the latitude and longitude of the...
  24. Replies
    17
    Views
    2,523

    Re: c++ primer exercise 9.28

    When the control will out from the while loop.


    try this



    #include <iostream>
    #include <vector>
    #include <list>
  25. Replies
    9
    Views
    1,512

    Re: Problem with manifest file....???

    try this

    http://www.codeproject.com/KB/macros/vc-xp.aspx


    and this also

    http://www.codeguru.com/forum/showthread.php?t=331378
Results 1 to 25 of 168
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured