
walter

walter.paludet@synaptica.info

24 April 2009
Rilasciata ufficialmente Ubuntu 9.04, codename Jaunty Jackalope.
Tra le maggiori novità Kernel 2.6.28 (supporto ext4)Â X.org 1.6.
Tempi ridotti per il boot, Gnome 2.26 ed un nuovo sistema di notifiche.
per maggiori dettagli : http://www.ubuntu.com/products/whatisubuntu/904features/

ivan

ivan.revelli@synaptica.info

20 April 2009
.
Another project maded by Synaptica, with the fabolous Java/Zk and hosted on ours servers.
We choose Zk as base technology because next version of the site need to manage the Booking of sailng boat and the correlated CRM.
view the site at http://www.blu-blu.info
stay tuned
ivan….

ivan

ivan.revelli@synaptica.info

20 April 2009
blu & blu - charter service in Loano (Italy)
Another project maded by Synaptica, with the fabolous Java/Zk and hosted on ours servers.
We choose Zk as base technology because next version of the site need to manage the Booking of sailng boat and the correlated CRM.
view the site at http://www.blu-blu.info
stay tuned
ivan….

ivan

ivan.revelli@synaptica.info

8 April 2009
to produce an invisible application with Delphi is soo simple….
to hide the main form at application start you need to add in your project source a this code :
Application.ShowMainForm:=False;
full piece of code:
program Project1;
uses
Forms,
Unit1 in ‘Unit1.pas’ {Form1},
Unit2 in ‘Unit2.pas’ {DataModule2: TDataModule},
Unit3 in ‘Unit3.pas’ {Form3};
{$R *.res}
begin
Application.Initialize;
Application.ShowMainForm:=False;
Application.CreateForm(TDataModule2, DataModule2);
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
for [...]