open type varaible
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
visual C++ 6 is there an open type variable that can access the string type of data or double .. ( To be used in an edit box, read from and write in ):zzz:
:confused:I am not sure what you mean by open type! If you mean a variable type the can hold either a double or a string then you are talking about a VARIANT which is communaly used in visual basic (probably where it came from) and when creating OLE controls. If you need and edit box control that is either designed for a perticular data type or can be generalized using masks then goto the the edit controls section of codeproject (where there are many aticles on this subject). INTP