as all of us that work with DotNet to producing Web Application and fight with company styles, some times we need to change some attributes of style in a page…. now i need to change the cursor pointer from ‘default’ to ‘hand’ on a asp button, as we now with di MS DotNet framework 2.0…
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
today i worked to put some image galleries on my personal web site that i’m working on. i found some cool stuff at : – NextGenGalleries (a plugin for WordPress) that include a varius number of tecnoligies and extend the wordpress admin page to manage galleries – Cooliris (a flash framework) to view galleries from…
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