How to serializate TextBox Control

  • Thread starter Thread starter ekey
  • Start date Start date
E

ekey

Hi;

I want to serializate TextBox Control, i try it ,but don't work.
How to serializate TextBox Control?

Ths

Ekey
 
ekey said:
Hi;

I want to serializate TextBox Control, i try it ,but don't work.
How to serializate TextBox Control?

I'm a newbie myself, but the documentation does not list the serializable
attribute for the textbox control. So I don't think you can do it that way.

Look up Serialization in the help index, then under that, basic
serialization. It describes how to make another class where you can create
fields to hold the properties you need, then you can set those properties
back through code after deserialzation. I've done this myself, works great.

HTH
Eric
 
Back
Top