Delphi

TwitterFacebook
Get flash to fully experience Pearltrees
http://delphiparaleigos.blogspot.com/2009/06/o-windows-e-ide-do-delphi.html Iniciando a série de artigos sobre Delphi, vou falar primeiramente sobre o que significa desenvolver programas para o Sistema Operacional Windows. Por quê?

Delphi Para Leigos: O Windows e a IDE do Delphi

http://www.devmedia.com.br/styles-inovacao-e-design-delphi-xe2-firemonkey/23199

Styles: Inovação e Design – Delphi XE2 & Firemonkey

O novo Delphi trouxe com o Firemonkey diversos estilos diferentes que tornam nossos aplicativos mais atrativos.
http://www.delphigeist.com/2010/03/how-to-get-ip-address.html Here are two methods to get your IP address, add WinSock to uses clause. function GetIPAddress: Integer; var Buffer: array[0..255] of Char; RemoteHost: PHostEnt; begin Winsock.GetHostName(@Buffer, 255); RemoteHost := Winsock.GetHostByName(Buffer); if RemoteHost = nil then Result := winsock.htonl($07000001) { 127.0.0.1 } else Result := longint(pointer(RemoteHost^.h_addr_list^)^); Result := Winsock.ntohl(Result); end;// function GetIPAddress: Integer; function GetIPAddressAsString: String; var tempAddress: Integer; Buffer: array[0..3] of Byte absolute tempAddress; begin tempAddress := GetIPAddress; Result := Format('%d.

The Spirit of Delphi: How to get IP address

Before attempting to use OAUTH, you must obtain a developer key and secret from the service provider. In the sample code provided in this article, I have removed my developer key and secret.

Using OAuth for Delphi | Divergent Thinking

http://chuckbeasley.com/index.php/2009/04/29/using-oauth-for-delphi/