Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #107.71K
~606 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for V5dave

You need the button to do activate the code. The line set_address(temp_str); runs everything that's inside of set_address(char *add). Maybe instead of a button, try using the Form Load function. [CODE]public: void Form1::set_address(char *add) { char temp_str[80]; sprintf(temp_str,add); textBox1->AppendText(temp_str); } private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e) { set_address(temp_str); }[/CODE] Hope …

Member Avatar for gpushee
0
606

The End.