CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7

Threaded View

  1. #6
    Join Date
    Mar 2011
    Posts
    27

    Re: please hep textBox1->Text = s;

    Quote Originally Posted by mkamilturan View Post
    string s;
    s = "kamil";
    textBox1->Text = s;
    The simplest way:

    Code:
    String^ txt = "Kamil";				
    textBox1->Text = txt;
    Cheers
    Last edited by smallbit; April 29th, 2011 at 02:54 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured