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

Search:

Type: Posts; User: kuphryn

Page 1 of 80 1 2 3 4

Search: Search took 0.98 seconds.

  1. Replies
    3
    Views
    949

    Re: Improving speed and performance

    set socket i/o buffer size to, say, 1024. now see if recv() returns almost immediately after the 1024 byte buffer is filled.

    Kuphryn
  2. Replies
    2
    Views
    1,337

    Re: Create std::set with keys of a std::map

    one solution is pointer. you will better manage memory.

    Kuphryn
  3. Replies
    16
    Views
    1,907

    Re: Use of auto_ptr

    smart pointers are suitable for people that use c++ because of necessity or to look good when they should be using managed c++ or c#. definitely single thread and limited run-time decisions.
    ...
  4. Replies
    8
    Views
    1,175

    Re: I am corrupting memory ?

    dynamical allocating is unnecessary

    Kuphryn
  5. Re: Can use execute a binary from memory opposed to from a disk?

    you will need reference for this topic

    dll injection

    Kuphryn
  6. Replies
    1
    Views
    1,404

    Re: External password encryption program

    good example

    console redirector

    http://www.codeproject.com/threads/consolepipe.asp

    Kuphryn
  7. Replies
    3
    Views
    721

    Re: Question about Double pointers

    conceptually pointer to pointer is important same as pointer to variable.

    Kuphryn
  8. Replies
    4
    Views
    4,365

    Re: Semaphore timeout while using pipes?

    logic is correct. multiple threads? possible that you open more pipes than close pipe?

    Kuphryn
  9. Replies
    11
    Views
    1,263

    Re: Double **pointer question!

    arg2 = new type *[]

    pointer is an invaluable asset to efficient, robust software architecture without sacrificing resources

    Kuphryn
  10. Replies
    4
    Views
    4,365

    Re: Semaphore timeout while using pipes?

    one process creates the named pipe via CreateNamedPipe() and waits for clients via ConnectNamedPipe(). are there multiple connections to the pipe created in the first process on the second process?...
  11. Replies
    5
    Views
    1,485

    Re: cleint/server programming

    highly recommend Network Programming for Microsoft Windows Second Edition by Anthony Jone and Jim Ohlund

    Kuphryn
  12. Replies
    5
    Views
    1,251

    Re: message lengths Winsock2 TCp/Ip

    Interesting.

    check out getsockopt() and SO_SNDBUF. i read something about 8192 default buffer size

    Kuphryn
  13. Replies
    14
    Views
    1,577

    Re: Structure's vector

    dynamic allocation

    Kuphryn
  14. Replies
    2
    Views
    1,399

    Re: c++ source to compression folder

    check out ziparchive

    http://www.artpol-software.com/zipdoc/Zip.aspx

    Kuphryn
  15. Replies
    5
    Views
    1,225

    Re: Label postions on item.

    array is one solution. inefficiency would be something like bunch of if/else

    Kuphryn
  16. Replies
    5
    Views
    1,225

    Re: Label postions on item.

    This depends on design specifically drawing. one case you draw all objects. now select a different object based on its position attribute. another case each object draws itself. key is no...
  17. Replies
    4
    Views
    1,174

    Re: Object Destruction Question

    not familiar with smart pointers. assign variable to value returned from function

    auto_ptr<a> b()
    {
    return auto_ptr<a>(new a)
    }

    auto_ptr<a> c = b()

    Kuphryn
  18. Replies
    5
    Views
    1,225

    Re: Label postions on item.

    drawing process relies on a relative object as start point. in normal example, first and last symbols, and lines are drawn first. now you have three options to select as a relative point. in...
  19. Re: how to get a variable parameter from another working thread in a working thread?

    PostThreadMessage()

    Kuphryn
  20. Thread: Inet control

    by kuphryn
    Replies
    1
    Views
    1,143

    Re: Inet control

    highly recommend winsock on windows platform

    Kuphryn
  21. Replies
    21
    Views
    2,937

    Re: const return values

    a *b = new a
    return &a

    Kuphryn
  22. Replies
    21
    Views
    2,937

    Re: const return values

    consistency

    new char const *[1]

    Kuphryn
  23. Re: Notifications for wireless adapter disable..?

    no notifications or no api to get hardware device status?

    Kuphryn
  24. Re: Communication between processes on the same computer

    definitely possible

    check out msdn

    socket is not the best solution for ipc because of network security and hardware dependency

    Kuphryn
  25. Thread: delete file

    by kuphryn
    Replies
    19
    Views
    3,445

    Re: delete file

    also _wremove()

    Kuphryn
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured