B billybean Member Licensed User Aug 13, 2009 #1 how do i save controls that i add in run time so they are therewhen i run the program again:sign0085:
how do i save controls that i add in run time so they are therewhen i run the program again:sign0085:
E ExcludeReality Active Member Licensed User Aug 13, 2009 #2 Write the controls to a text file and read it when the program starts For example (a textbox): FileWrite (WriteData,Textbox3 & Textbox3.text)
Write the controls to a text file and read it when the program starts For example (a textbox): FileWrite (WriteData,Textbox3 & Textbox3.text)
Erel B4X founder Staff member Licensed User Longtime User Aug 13, 2009 #3 As ExcludeReality wrote you need to save the controls type, position and other attributes to a file. When you start your program you should read these setting from the file and add the controls.
As ExcludeReality wrote you need to save the controls type, position and other attributes to a file. When you start your program you should read these setting from the file and add the controls.