Eccola ! Ubuntu 9.04 jaunty

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/

Another web site hosted by Synaptica…. “http://www.blu-blu.info”

.

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….

Another web site hosted by Synaptica….

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….

Create an invisible application with Delphi

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 [...]