Samples
Samples
LocalXMLDataStore
Language: Oxygene, Platform: Echoes, Category: Windows Forms
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Echoes/Windows Forms/LocalXMLDataStore
-
LocalXMLDataStore
-
References
- mscorlib
- System
- System.Data
- System.Drawing
- System.Windows.Forms
- System.Xml
- Source Files
- Other Files
-
References
Program.pas
namespace LocalXMLDataStore;
interface
type
Program = public static class
public
class method Main;
end;
implementation
uses
System.Windows.Forms;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
class method Program.Main;
begin
try
Application.EnableVisualStyles();
Application.Run(new MainForm());
except
on E: Exception do begin
MessageBox.Show(E.Message);
end;
end;
end;
end.
