How to convert Text of textbox(.net control) to char in Visual Studio 2005
Visual Studio
3
Posts
3
Posters
0
Views
1
Watching
-
i am a new user of .net 2005 so help in this regard
-
i am a new user of .net 2005 so help in this regard
What are you trying to do? Converting text to char makes no sense. Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
i am a new user of .net 2005 so help in this regard
What language are you using? C# example gives char array:
char[] charArray = textBox1.Text.ToCharArray();
Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Expect everything to be hard and then enjoy the things that come easy. (code-frog)