I think I've been developing Delphi the wrong way.
There seems to be a lot of information on how, but limited source code. The documents I look at in Google and Stack Overflow seems to just explain without showing hardly much source code. I would like to see a actual project where a developer has split the two into two different source code files.
Is there anywhere I can find an actual project that splits these files and shows and they can work together?
Is this to be in designtime code?
property BreakString: String read FBreakString write SetBreakString stored gtBreakStringIsStored;
property StoppingCount: integer read FStoppingCount write FStoppingCount default -1;
property AutoSaveBeforeOnProcessEnd: Boolean read FAutoSaveBeforeOnProcessEnd write FAutoSaveBeforeOnProcessEnd;
property AutoSaveAsYouModifyData: Boolean read FAutoSaveAsYouModifyData write FAutoSaveAsYouModifyData;
If the above is design time code, then how do you use it in runtime code?