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

Search:

Type: Posts; User: TheGreatCthulhu

Search: Search took 0.27 seconds.

  1. Re: how to pass value from one form to another?

    You can use the String::Split() method (function) - it returns an array<String^>^, so you can just do str1->Split(':'), and then take the last member, trim any whitespace using String::Trim(), and...
  2. Re: how to pass value from one form to another?

    I have to insist, because, in the long run, if a beginner develops a habit of exposing private members, it's a rather bad thing (experienced developers can break or bend the rules, but only because...
  3. Re: how to pass value from one form to another?

    Well, I did say "relatively often", but apparently not so often that I can find the damned things at the moment (tried forum search and google...). But, then I remembered that one time someone gave...
  4. Re: how to pass value from one form to another?

    Rather then making internal variables public, it's better to provide getters and setters. Furthermore, if it's only the text property you need to get, you don't need to expose the control at all -...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured