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

Search:

Type: Posts; User: ff2147087

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. is there a tool to convert a source to flow chart??

    Hi all,
    I'm looking at microsot sample apps... is there a tools that can convert the
    source codes to the flow chart??? I need it so it gives me better capability
    to analyze the code...
    I looked...
  2. filling a Long Pointer Integer (HELLLLLP)

    Hi-
    I need to hard code a value which is of type LPINT (Long pointer integer)... I've tryied the following but at the end my function returns error 10022 which means that "An invalid argument was...
  3. Replies
    1
    Views
    416

    could you help me with buffer copy

    I have to copy the content of one buffer to a second buffer... the size of second buffer must increase everytime I add to it... I've tried memcpy but it gives me a lot of garbage....
    do you have a...
  4. Replies
    7
    Views
    820

    Yes I have... but:blush: I don't know how to...

    Yes I have... but:blush: I don't know how to write a macro:blush: :confused:
    I'll look into it... thanks for your help though
  5. Replies
    7
    Views
    820

    Kheun; is there anyway to add the shortcut keys...

    Kheun; is there anyway to add the shortcut keys to VC++ or I always have to use the keys??? e.g. enable macro or something??!!!
    thanks for your help
  6. Replies
    7
    Views
    820

    Visual Tools/Assistant

    Hi All,
    Is there a free visual tools for Microsoft Visual Studio 6.0?? tools, such as displaying function members, completing function names, code editor, etc??
    I found one on the net called...
  7. Replies
    0
    Views
    1,466

    how to print Long pointers in dbgprint

    Hi folks
    could you tell me how to print the following in a dbgprint statment

    DWORD dwAddressLength,
    LPWSTR lpszAddressString,
    LPDWORD ...
  8. Replies
    3
    Views
    948

    Thank you very much for your help... you solved...

    Thank you very much for your help... you solved my problem.
  9. Replies
    3
    Views
    948

    convert hex to int

    Hi folks
    I have the following

    dbgprint("Lower provider socket = 0x%x LSP Socket = 0x%x\n", NextProviderSocket, NewSocket);

    which outputs the hex value of NextProviderSocket, NewSocket..
    How...
  10. Replies
    2
    Views
    413

    thanks for the advise you're right... socket is...

    thanks for the advise you're right...
    socket is the concatination of port.host address... so since port picked up randomly then there is no uniqueness as a socket identifier between a TCP and...
  11. Replies
    0
    Views
    629

    socket number in win2K OS

    Does TCP and UDP have different socket number reserved to each, in the OS Layer???
    e.g. the TCP sock numbers are from 1-100 and UDP are from 101-200??? something in this nature?? If yes what is...
  12. Replies
    2
    Views
    413

    socket number in win2K OS

    Does TCP and UDP have different socket number reserved to each, in the OS Layer???
    e.g. the TCP sock numbers are from 1-100 and UDP are from 101-200??? something in this nature?? If yes what is...
  13. Sending Datagram (UDP) to specific IP and port on the receiver.

    Hi folks,

    I'm doing a quick test on WSPSendTo function (from LSP that comes with Microsoft Platform SDK)

    now the problem is that in WSPSendTo I hardcode the value of receiver IP and Port... cuz...
  14. Replies
    4
    Views
    1,431

    huuuuummmmm.... what do you mean?? could you...

    huuuuummmmm.... what do you mean??
    could you give me an example??
  15. Replies
    4
    Views
    1,431

    get port from sa_data???

    Could somebody help me with how to find port out of
    sa_data[14] member of sockaddr structure? (please note not the socaddr_in structure)...

    would appreciate it.
  16. Check this site... there are so many utilities...

    Check this site... there are so many utilities with the source code
    http://www.sysinternals.com/ntw2k/utilities.shtml

    hope it helps
    Good Luck
  17. Mapping HTTP to transport data unit of Protocol (TCP)

    Hi All,
    I need to get information of how HTTP Request, response maps onto the transport data units of the protocol...
    I've already looked that the RFC of HTTP (couple of them) and one restrictly...
  18. Thread: HTTP Format

    by ff2147087
    Replies
    6
    Views
    788

    Thanx for the help.....

    Thanx for the help.....
  19. Thread: HTTP Format

    by ff2147087
    Replies
    6
    Views
    788

    I need the later.... need to know the details cuz...

    I need the later.... need to know the details cuz I'm working on LSP (Layered Service Provider) and need to look at the HTTP header info before decide what to do with it...
    I basically need to parse...
  20. Replies
    12
    Views
    1,111

    Hey Thanx a million... you solved my problem......

    Hey Thanx a million... you solved my problem... :D

    Once again thanx a lot for your help.
  21. Replies
    12
    Views
    1,111

    here is the my.h which is actually the provider.h...

    here is the my.h which is actually the provider.h
    thanx
    I can see you're in Romania... it must be the middle of night over there....
    Thanx for your help....
  22. Replies
    12
    Views
    1,111

    I can... but what portion of the code do you...

    I can... but what portion of the code do you want... these are multiple classes... in fact it is the sample LSP from Microsoft platform SDK with some modifications on spi.cpp and provider.h...
    so...
  23. Replies
    12
    Views
    1,111

    here is the list of #includes in my.h #include...

    here is the list of #includes in my.h

    #include <ws2spi.h>
    #include <sporder.h>
    #include "install.h"
    #include <string>
    #include <string.h>

    and belive me I tried all sort of combinations
  24. Replies
    12
    Views
    1,111

    I've already done it... and yet same error.....

    I've already done it... and yet same error.....
  25. Replies
    12
    Views
    1,111

    Thanx for your feed backs.... I changed my...

    Thanx for your feed backs....
    I changed my decration in my.h file to the

    const std::string& strUrl;

    and I'm getting the following error:
    'std' : is not a class or namespace name

    sorry...
Results 1 to 25 of 31
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured