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

Search:

Type: Posts; User: bobbob

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    6
    Views
    863

    A simple C++ quesiton...

    I'm worried about a memory leak issue...
    Is this a leak or potentially a leek?


    for (int i=0; i < n; ++i)
    {
    m = x.getNPoints(i);
    CPoint y[m];
    ...
    }So I'm worried that CPoint y[m]...
  2. Replies
    7
    Views
    1,702

    Re: recv with a timeout....

    Thanks... This is pretty much what I was trying to do...
    Tell me the parameter for the timeout is it in micro, mille or nano seconds?
    usec sounds like micro seconds...
    Yet the same structure is...
  3. Replies
    7
    Views
    1,702

    Re: recv with a timeout....

    Sorry the protocol is fixed... I can not change the messaging spec.
  4. Replies
    1
    Views
    2,988

    Re: InstallShield Tutorial

    Hey.. I think if you search for Windows Installer you find what you are looking for.

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/windows_installer_start_page.asp
  5. Replies
    7
    Views
    1,702

    recv with a timeout....

    Hi!
    I'm trying to build a TCP client that uses recv.
    At the moment there are times when my client hangs if the server:
    a) doesn't send data the client is expecting.
    b) breaks the sending data...
  6. Replies
    9
    Views
    1,134

    Re: MFC DLL's - Can we distribute it.

    Project, Properties, Configuration Properties, General, Use of MFC, pulldown...
    "Use Standard Windows Libraries"

    By the way.. when I try linking staticly with MFC and then doing a dependancy...
  7. Replies
    9
    Views
    1,134

    Re: MFC DLL's - Can we distribute it.

    What does the option, "Use Standard Windows Libraries", do/mean/imply?
  8. Replies
    15
    Views
    2,894

    Re: Need a full list of dependancies...

    MFC71.DLL
    MSVCR71.DLL
    KERNEL32.DLL
    USER32.DLL
    GDI32.DLL
    SHELL32.DLL
    MSVCP71.DLL
    WS2_32.DLL

    And of course each of these dlls has its own dependancies....
  9. Replies
    15
    Views
    2,894

    Re: Need a full list of dependancies...

    Guess this is the end of this thread....
    I can't belive there is no one who knows or uses this...
    Is every one using something else to build setup programs?
    If so what?
  10. Replies
    15
    Views
    2,894

    Re: Any setup program gurus here?

    My problems are resolving dependancies and ensuring that all necessary dlls are part of the installation package produced.

    Right now I am using Depends.exe to get a full list of dlls that the...
  11. Replies
    15
    Views
    2,894

    Any setup program gurus here?

    I am using a setup project from visual studio .net 2003.
    I need to talk to a guru about this setup project and dependancies...
    anybody here know this stuff?
  12. Replies
    15
    Views
    2,894

    Re: Need a full list of dependancies...

    Nutting to be sorry about you obviously went to a great deal of effort to help.
  13. Replies
    15
    Views
    2,894

    Re: Need a full list of dependancies...

    Wow thank you for that post... That was definitely the longest post in history! :)
    However what I’m looking for is help with Visual Studio .NET 2003s setup project for a C++ application that uses...
  14. Replies
    15
    Views
    2,894

    Re: Need a full list of dependancies...

    Ok I've done that and got a whole tree of dependancies...
    In the setup wizard am I supposed to add each of these dll's myself?
    Isn't there a way to do this in the setup project?
  15. Replies
    15
    Views
    2,894

    Need a full list of dependancies...

    I have developed an applicaiton on Win2k.
    It seems that when people install the application on XP that there are a number of Missing DLLs.
    I am developing in VisualStudio .NET 2003, how can I...
  16. Replies
    8
    Views
    1,111

    Re: About animation!!!!!

    Just some thoughts:

    You all seem to be assuming that the animation is a sequence of bit map images.
    It may not be... It may be a render procedure of a 3D graphics system. In which case you need...
  17. Replies
    10
    Views
    2,179

    Re: Ethernet Broadcast?

    So these are things that 'must' be done through the link layer and can not be done through the socket interface?
  18. Replies
    10
    Views
    2,179

    Re: Ethernet Broadcast?

    Ok.. but what do you mean by custom packets?
  19. A Question about pointers to a templated class.

    I have within a class definition a member that is a pointer to a templated class...
    eg:
    class myClass
    {
    private:
    Tensor<unsigned short> *t;
    };

    myClass::myClass(void)
    {
  20. Replies
    10
    Views
    2,179

    Re: Ethernet Broadcast?

    This method of a class sends an ethernet broadcast message (UDP)
    I've passed 255.255.255.255 as hostname and 65535 as portno.

    I'm also not sure if the gethostbyname and gethostbyaddr functions...
  21. Replies
    10
    Views
    2,179

    Re: Ethernet Broadcast?

    Thats nice.. but where to?
  22. Replies
    1
    Views
    558

    Comments on this method please..

    This method of a class sends an ethernet broadcast message (UDP)
    I'm not sure if all broadcasts are done on 255.255.255.255 port 65535....
    I'm also not sure if the gethostbyname and gethostbyaddr...
  23. Replies
    10
    Views
    2,179

    Ethernet Broadcast?

    Any one know anything about sending an ethernet broadcast?

    is there a dedicated ip address / port for sending broadcasts over?
    (UDP)
  24. Replies
    2
    Views
    579

    A Question about reverse iteratores...

    How do you iterate through a list in reverse order?

    std::list<int> lst;
    std::list<int>::reverse_iterator it;

    for (it=lst.rbegin(); it != lst.rend(); --it)
    {
    ... do something?
    }
  25. Replies
    2
    Views
    696

    Re: Dialog box tab order.

    Cam on lam! or thanks! :)
Results 1 to 25 of 135
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured