Joined
Last Seen
-3 Reputation Points
- 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
0 Endorsements
Ranked #107.71K
1 Posted Topic
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 …
The End.
gpushee