Something like
Code:
string szTemp; szTemp = First Node Content; szTemp += Second Node Content; TextBox.SetWindowText(szTemp);
|
Go4Expert Founder
|
![]() |
| 20May2007,18:42 | #11 |
|
In C++ also you can append the strings. Just append the complete string you wish to show to the user when print button is clicked and then display that string in the text box.
Something like Code:
string szTemp; szTemp = First Node Content; szTemp += Second Node Content; TextBox.SetWindowText(szTemp); |
|
Go4Expert Member
|
|
| 20May2007,18:48 | #12 |
|
I wrote something like your code :
PHP Code:
Quote:
or Quote:
|
|
Go4Expert Member
|
|
| 20May2007,18:51 | #13 |
|
ًWoOoOoOoW !!
I want to dance now !!! the program now is 100% complete, I knew the problem with the previous code: PHP Code:
|
|
Go4Expert Founder
|
![]() |
| 20May2007,22:04 | #14 |
|
Finally I could explain you.
|
|
Go4Expert Member
|
|
| 20May2007,22:54 | #15 |
|
Thank you Mr.Shabbir for the help
|
|
Go4Expert Founder
|
![]() |
| 21May2007,08:39 | #16 |
|
My pleasure.
|