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

Search:

Type: Posts; User: Grasshopper.Network

Search: Search took 0.04 seconds.

  1. Replies
    4
    Views
    1,246

    Re: Help Me Convert Some Code

    Method should return String not String[]
  2. Re: Need help with maths problem in C#

    I did
    but it was not working. Ok I will use only
  3. Replies
    4
    Views
    1,246

    Re: Help Me Convert Some Code

    string computeChecksum(string m)
    {
    char[] message=m.ToCharArray();
    static char ascii_checksum[ 5 ];
    int checksum = 0
    int i ...
  4. Re: Need a little help with some C# code.

    You have not written the code for Mouse exit( Leave). Just write the event for mouse Leave and restore the Panel Color to original Color. Same for the Second Panel. It should solve your problem
  5. Re: Need help with maths problem in C#

    int x; //Let x be the money
    int note_50_number=0,note_20_number=0;

    if(x%50==0)
    {
    note_50_number=x/50;
    }
    else
    {
    int r=x%50;
  6. Replies
    6
    Views
    2,682

    Re: CString causes crash???

    try out


    CString * str_test="Test CString";
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured