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

Search:

Type: Posts; User: Pahanuch

Search: Search took 0.01 seconds.

  1. Re: Transformation Error. I can not output a variable in TextBox

    Eri523 Thank U very mush. For my program I used this class.

    I was trying Parse(), TryParse() and ToString(). The compiler gave out a mistake(
  2. Re: Transformation Error. I can not output a variable in TextBox Read more: http://f

    cilu , I want to do calculator for very large numbers. textBox1 - for first number. textBox2 - for second number. And richTextBox1 for output answer.
  3. Re: Transformation Error. I can not output a variable in TextBox Read more: http://f

    Eri523, it was just an example. I don't need to equate
    textBox2->Text = textBox1->Text;

    First. I need to convert a variable, type string. And output it in a richTextBox1.
    Second. And I need to...
  4. A class for operations with Large Integer Numbers

    Hi. Help me, please! Why this class doesn't work for Subtraction, Division and Square Root. When I try to get results for Subtraction, it output right answer, but with any trash. And When I try to...
  5. Re: Transformation Error. I can not output a variable in TextBox

    Thank U. I decided this problem


    std::string str;

    const char* temp = (const...
  6. Transformation Error. I can not output a variable in TextBox Read more: http://forum

    Hi, all. Please, Help me. Its very important for me. I try to output a variable, type string, in TextBox. I tried everything that I could. But always the mistake. And i show you a file Form1.h in...
  7. Replies
    1
    Views
    1,052

    Eligibility Rules

    Hi,all. Looking at this task, please!

    The program committee must be able to correctly estimate the level of teams that will participate in the forthcoming contest and choose the problems according...
  8. Thread: Pipe Game

    by Pahanuch
    Replies
    0
    Views
    605

    Pipe Game

    Hi, all. I have written a game called pipes. You can see this game here http://home.earthlin...rn/pipegame.htm.I did a check for a connection between the pipes. The line of pipes coming from the...
  9. Re: Pipe game. How to do checking of pipes on a connectedness

    30271
  10. Re: Pipe game. How to do checking of pipes on a connectedness

    I did that...

    field [i, j].down = 1;
    field [i, j].top = 1;
    field [i, j].right = 0;
    field [i, j].left = 0;

    if ((field [i, j - 1].down == 1 && field [i, j].top == 1) && ((field [i, j - 1].flag...
  11. Re: Pipe game. How to do checking of pipes on a connectedness

    Can you show me, what I need, in your code ?
  12. Re: Pipe game. How to do checking of pipes on a connectedness

    I'm sorry, but it seems to me, that you not correctly understand me. I will try to explain again. So, For Example, if some square has not line-up to centre square, but has line-up to others square,...
  13. Re: Pipe game. How to do checking of pipes on a connectedness

    30253
  14. Re: Pipe game. How to do checking of pipes on a connectedness

    Thanks! You really helped me. But can you help me last time, if it not hard for you ?! I don't know how to do line-up of the pipes from centre (like in example). I show, what I mean, on the picture.
  15. Re: Pipe game. How to do checking of pipes on a connectedness

    30231
  16. Re: Pipe game. How to do checking of pipes on a connectedness

    mrgr8avil, Thank U very mush. I want to build this in Console Application ... on C#.NET. But I don't understand, how we can to compare pipes. For example, if we to compare two objects [| and |]...
  17. Re: Pipe game. How to do checking of pipes on a connectedness

    Thats right link http://home.earthlink.net/~tdglenn/unicorn/pipegame.htm
  18. Re: Pipe game. How to do checking of pipes on a connectedness

    I'm sorry... http://home.earthlink.net/~tdglenn/unicorn/pipegame.htm
  19. Pipe game. How to do checking of pipes on a connectedness

    Hi, all. I try to write a game "Pipes". It will be a console game. I have got two questions.

    First question: The program must check - Is this placing of pipes possible on the field ? i.e. Will a...
Results 1 to 19 of 22





Click Here to Expand Forum to Full Width

Featured