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

Search:

Type: Posts; User: Chen.Fisher

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,682

    Re: [RESOLVED] Uri.GetHashCode Unique?

    Thanks, Zaccheus.

    That was a good article.
  2. Replies
    2
    Views
    2,682

    [RESOLVED] Uri.GetHashCode Unique?

    Hi,

    Is the hashcode produced by the function Uri.GetHashCode unique? Can two different URIs produce the same hashcode?

    A quote from Object.GetHashCode:


    I would like to use the value of...
  3. Replies
    2
    Views
    6,017

    FileUpload and Ajax

    Hi,

    I'm using .Net 2.0, Ajax extension.

    I'm trying to use the FileUpload and Ajax so the file upload will post itself and not the whole page. It doesn't work.

    I read somewhere that there is...
  4. Re: List myList = new List();

    // 'result' will hold all items in your 'yourList' that matches the criteria.
    List<string> result = yourList.FindAll(func);

    // func should look like that:
    bool func(string p)
    {
    // your...
  5. Replies
    2
    Views
    1,034

    Re: Threading in a loop?...possible?

    There are few things wrong in your code.
    First, you cannot restart a thread. Once it is terminated, aborted or still running you cannot reuse it.

    Second and more important, I think you...
  6. Replies
    1
    Views
    615

    Re: Dynamic Controls ???

    This is a sample for creating a dynamic button.
    A button is represented with a Button class.

    // create an instance of the button
    Button btn = new Button();

    // set the properties of the new...
  7. Replies
    3
    Views
    672

    Re: Assemblies!?!?

    Thanks, guys.

    I use the private assemblies and it works fine.

    Thanks.
  8. Replies
    3
    Views
    672

    Assemblies!?!?

    Hello Gurus,

    I'm writing a small game platform which offers API (Interfaces) to be implemented by others. Once one implements the interfaces he can load his game to the platform.

    What i would...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured