RichTextBox
-
Hy I have a form with a richTextBox and a button I have text in richTextBox. When I press the button I want to insert another text in the richTextBox, but I don't use the richTextBox.Text.Insert or richTextBox.RTF.Insert, I want to insert the text like I type in richTextBox. Is it possible? thx
-
Hy I have a form with a richTextBox and a button I have text in richTextBox. When I press the button I want to insert another text in the richTextBox, but I don't use the richTextBox.Text.Insert or richTextBox.RTF.Insert, I want to insert the text like I type in richTextBox. Is it possible? thx
You want the characters to appear as if you're typing ? You change the Text property, but do it with a timer.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
You want the characters to appear as if you're typing ? You change the Text property, but do it with a timer.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
real time is instant. If you want it to look as if it's being typed, it needs to be slowed down, and you need a timer.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
real time is instant. If you want it to look as if it's being typed, it needs to be slowed down, and you need a timer.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )