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

Search:

Type: Posts; User: Skoons

Page 1 of 25 1 2 3 4

Search: Search took 0.36 seconds.

  1. Re: How to save a "scenario" to a file to load later

    I mean that its not necessesary to send a class yes you will send raw data. but class for writing scenario will be a storage for raw data, and will give you options to save and load scenario files.
  2. Re: How to save a "scenario" to a file to load later

    both ways are nice. But if you need easy develop yur software the better idea will be a class that will record messages and save/load them from file. Maybe good idea will be to put it in personal dll...
  3. Poll: Re: Restraining yourself from answerwing some questions?

    Yes that`s right answer :thumb: :D
  4. Poll: Re: Restraining yourself from answerwing some questions?

    This information isn`t secrete you may get on open foruns too :D
  5. Re: How to save a "scenario" to a file to load later

    Your scenario will be divided into records.
    when user hit send record will be added to scenario.
    Also you may add to file data after each user click
  6. Poll: Re: Restraining yourself from answerwing some questions?

    Wrong answers is bad style. No doubts will you answer or not new spam bombers and viruses will be created. So relax
  7. Replies
    1,159
    Views
    100,705

    Re: Happy Birthday Marc G

    Happy birthday :wave:
  8. Replies
    1,159
    Views
    100,705

    Re: Happy Birthday Marc G

    Happy birthday :wave:
  9. Thread: Using a control

    by Skoons
    Replies
    8
    Views
    1,002

    Re: Using a control

    Well but anonymus control can be find by name=="" so you may do so


    Form1.Controls.Add(new textbox());
    foreach(textbox box in Form1.Controls)
    {

    if(box.Name=="")//you may check...
  10. Re: How to open a txt file when we click on DataGridView in Visual Studio 2005

    Try to implement dataGridView1_CellClick event
  11. Replies
    180
    Views
    21,900

    Re: Learning C sharp

    Yes it is :D
  12. Replies
    180
    Views
    21,900

    Re: Learning C sharp

    Well called methods is another name of functions in OOP their main difference is that calling methods are members of a class. But you already know it if you are working with C++.
    in C# you might...
  13. Replies
    178
    Views
    23,598

    Re: Why [did you choose] C# ?

    Why c#, well I always slowly advance myself to new technolgies in software developing. My first programming language was C then C++ (about a year I wrote my C++ code in C style :rolleyes: ) and now...
  14. Replies
    5,488
    Views
    946,196

    Re: The "last one to post on this thread wins" Thread

    Well guys you were talking about posting bot for this thread here it is I`ve crete it for you


    while(Me!=winner)
    {
    Post();
    }

    This is ANSI C so it will work fine everywhere you...
  15. Replies
    16
    Views
    3,352

    Re: Random() - Shuffling

    yes it is but i have negin mypost before yourse and so I have not thing about such nice move like thread.Sleep(); So this is one of the variants, but user may use here not only ticks but seconds and...
  16. Replies
    16
    Views
    3,352

    Re: Random() - Shuffling

    try this

    DateTime dt=DateTime.Now;
    Random r1=new Random(dt.Ticks);
    it will randomize using current ticks from time;
  17. Thread: DesignSurface

    by Skoons
    Replies
    2
    Views
    2,147

    Re: DesignSurface

    It`s quite easy if I get your idea right. You just need to put next code in your Initialization function:


    surface.Top=0;
    surface.Left=0;

    Thats all your component will be in point 0,0
  18. Replies
    26
    Views
    3,574

    Re: Happy Birthday Ejaz :)

    Happy birthda, my best wishes
  19. Thread: Free Mick now!

    by Skoons
    Replies
    42
    Views
    5,631

    Re: Free Mick now!

    Yikes, this is the third similair discussion I met during couple of days, but others were on other forums. Well what`s happen with you guys, you begin to act like politics, you are not in senate, so...
  20. Replies
    7
    Views
    1,085

    Re: transition to computer field....career advise

    Yeah, and now you may feel free about .NET dvelpmnet this idea is creating for Linux :wave: Mono Project
  21. Replies
    7
    Views
    1,085

    Re: transition to computer field....career advise

    Well, everything you need it`s a will to work, get interested in what you are doing, not be afraid to explore dark side of IT and inner world of new technologies, remember that Windows is good...
  22. Replies
    6
    Views
    1,156

    Re: Return array from method

    Why not, we always need to learn smth new :rolleyes:
    And as for me the basics are heap, stack reference and other things that are principal to programming language. What was nice in C all of this...
  23. Replies
    6
    Views
    1,156

    Re: Return array from method

    Well there is the other way, but it`s used in a little diferrent situation that you describes. You can use it to send an array to function to change it and have it back


    void SomeFunc(out type...
  24. Replies
    3
    Views
    1,066

    Re: Passing Data between Controls

    Well, event is correct idea, for example you created event on ColorChange, so to exchange data you need to create properties like


    public Color MyColor
    {
    get{return this.color;}
    ...
  25. Replies
    2,690
    Views
    1,013,111

    Re: What Song Are You Listening To Now¿

    The Doors - Riders on the storm
Results 1 to 25 of 609
Page 1 of 25 1 2 3 4





Click Here to Expand Forum to Full Width

Featured