Nick Hodges, R&D Manager Allen Bauer, Chief Scientist Embarcadero Technologies DelphiLive! 2009 May 2009 in San Jose RTTI Project “X” – Delphi application running on Mac OSX very funny video from delphi live, at the end of the video there is a JBuilder team developer that show a command line compiler of Delphi (incredible on…
Leggi tutto
[lang_it] produrre un applicazione non visibile con Delphi è un gioco da ragazzi. per nascondere il form principale dell’applicazione dovete semplicemente aggiungere la seguente riga al codice del vs. progetto : Application.ShowMainForm:=False; esempio concreto, modifico il “dpr” della mia applicazione:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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. |
non finisce qui, voglio anche esser sicuro che non si veda sulla taskbar il…
Leggi tutto
[Lang_it] Prima prova sul campo del fatidico prism… Domani da un cliente ho un workshop per migrare l’architettura attuale basata su COM e socket verso i Web Service… e dato che loro sono in molti ad usare Delphi, quale migliore occasione? Per farsi un giro su questo nuovo promettente ambiente di sviluppo… noi programmatori siamo…
Leggi tutto
From CodeGear blogs i found this great document that is only a review of new features of Delphi, but there are some great samples inside about “Generics” and “Anonymous Methods” resource: A Review of the Language Features in Delphi 2009 you can buy find Delphi 2009 at : CheckOutSoftware Hours:7:00am – 4:00pm P.S.T. Monday to…
Leggi tutto
The famous Skype application …. i don’t need to explain more about. This video explain how to use skype from your Delphi applications, and is an official CodeGear video specialized for skype integration. We know that the Skype Windows Client is made with Delphi and Indy components….. So the skype api cen be used from…
Leggi tutto
This week there is a lot news about IT world, in first the new MS Windows 7 , another good news is the Embarcaer Delphi “PRISM”. Delphi “PRISM”, is the DotNet environment of Embarcadero Delphi , this new version of Delphi is not a descendant of Delphi for DotNet, in fact it is the real…
Leggi tutto