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

Search:

Type: Posts; User: padfoot

Search: Search took 0.01 seconds.

  1. web scripting languages - strengths and weakness

    Different websites seem to be using a different combination of languages for their needs. I was wondering what goes into deciding what language to write the application in.
    I've heard that Google...
  2. Replies
    4
    Views
    2,282

    Re: generate subsets

    Thanks...
    I did search on google but I guess I chose the wrong search terms.
  3. Replies
    4
    Views
    2,282

    Re: generate subsets

    I am aware of that technique. I heard that there was a recursive way of doing it and was wondering how to do it.
  4. Replies
    4
    Views
    2,282

    generate subsets

    I'd like to generate all subsets of a given set recursively.
    For example ,

    A = { 1, 2, 3 }

    The subsets will be {}, { 1 }, { 2 }, { 3 }, { 1, 2 }, { 1, 3 }, { 2, 3 }, { 1, 2, 3 }

    I'm having...
  5. Thread: mailing lists

    by padfoot
    Replies
    1
    Views
    967

    Re: mailing lists

    No ideas anybody ?
  6. Thread: mailing lists

    by padfoot
    Replies
    1
    Views
    967

    mailing lists

    Do you guys know some good mailing lists where people discuss algorithms, programming puzzles etc? Thanks in advance.
  7. Thread: P2P connection

    by padfoot
    Replies
    6
    Views
    1,357

    Re: P2P connection

    Not exactly but very very similiar to it.
  8. Thread: P2P connection

    by padfoot
    Replies
    6
    Views
    1,357

    Re: P2P connection

    I want to transfer data from one system to the other. I have only the IP address of that system.
  9. Thread: P2P connection

    by padfoot
    Replies
    6
    Views
    1,357

    Re: P2P connection

    How can you create such a connection ?
  10. Thread: P2P connection

    by padfoot
    Replies
    6
    Views
    1,357

    P2P connection

    Suppose I have the IP address of a computer on the internet, is it possible for me to make a direct connection to that system ?
  11. Replies
    2
    Views
    2,069

    Re: API for packet capture

    No one has any idea ??
  12. Replies
    2
    Views
    2,069

    API for packet capture

    Are there any API's for packet capturing other than libpcap and WinPcap ?
  13. Thread: SEHException

    by padfoot
    Replies
    3
    Views
    2,072

    Re: SEHException

    One more thing:

    When I pass a random string as argument, the method returns an error.
  14. Thread: SEHException

    by padfoot
    Replies
    3
    Views
    2,072

    Re: SEHException

    The reason I put ref before the parameters is because otherwise I get an AccessViolationException.
    I managed to get rid of the SEHException by changing the method declaration as



    public static...
  15. Thread: SEHException

    by padfoot
    Replies
    3
    Views
    2,072

    SEHException

    SEHException : External component has thrown an exception.

    I'm getting the above exception in the following part of the code when I run the program.



    IntPtr fcode = IntPtr.Zero;...
  16. Thread: struct ts

    by padfoot
    Replies
    3
    Views
    1,382

    Re: struct ts

    Thanks, I wrote the structure in C#. I have a new problem though. How do you convert time_t type to DateTime class?
  17. Thread: struct ts

    by padfoot
    Replies
    3
    Views
    1,382

    struct timeval

    What is the C# equivalent of the structure timeval present in sys/time.h ?
Results 1 to 17 of 17





Click Here to Expand Forum to Full Width

Featured