Sending mail without an eMail Client
This does not use an eMail Client to send mail, but sends mail directly You will need to use indy projects components, get it here You can't view the links! Click here to register This is the code that...
View ArticleHow start unigui v.0.99 without error?
running smoothly and perfect 1- before install set date/time of your computer to 31/10/2014 2- install 3- copy dcu contents to "C:\Program Files\FMSoft\Framework\uniGUI\Dcu" 4- goto delphi then open...
View ArticleCalculates the distance between two points on Earth
//With the code below you can calculate the distance between two points on the map Const pi = 3.14159265358979323846; half_pi = 1.57079632679489661923; rad =...
View ArticleAdjust size of the columns of a DBGRID
procedure DBGridAjustaColunas( const Grid: TDBGrid ); var a : array of integer; i, n : integer; DataSet: TDataSet; begin SetLength( a, Grid.Columns.Count); for i:= 0 to...
View ArticleEXPORT DBGRID TO EXCEL WITH TOTAL
procedure pExportarDadosDBGridExcel(pDBGrid :TDBGrid; PastHeader :Boolean); var Excel : Variant; Linha, i, Col : Integer; SavedBookMark : TBookMark; vTotal : Array[0..1000] of...
View ArticleComplete date in TEdit
Procedure CompletaDataEdit( Const pData : String ; pEdit : TEdit ; const pErro : boolean = True ); var DataStr : String; Year, Month, Day : Word; i, TotSepara : Integer; begin...
View ArticleComplete date in TField
Procedure CompletaDataField( Const pData : String ; pField : TFIELD ; const pErro : boolean = True ); var DataStr : String; Year, Month, Day : Word; i, TotSepara : Integer; begin...
View ArticleTVirtualStringTree
I finally succedded to put 9000 records from database table (ID,PARRENT_ID,DESCRIPTION) into TVirtualStringTree in just half of second by loading it all and repartnting it at once. Seems easy but i't...
View Articlebyte to integer converter
An integer holds 4 bytes. So you can code: function Convert(const b0, b1, b2: Byte): Integer; begin Result :=b0 or (b1 shl 8) or (b2 shl 16); end; shl is shift-left, this keyword performs a bitwise...
View ArticleBluetooth
Does anyone has any example source code with Bluetooth 2.1 serial port programming in Firemonkey, not native windows but Android. Also looking for BLE serial port interfacing.
View ArticleProxy Setting Source
This is Proxy Setting source... Usage... unit uniProxySetting; interface uses Windows, Wininet, Registry; const INTERNET_PER_CONN_FLAGS = 1; INTERNET_PER_CONN_PROXY_SERVER =...
View ArticlePrint multiple files with Fastreport
Hello, I want to print multiple files with FastReport but when I use frxReport.ShowReport (False); it only shows me the last file in the preview. Help me please
View ArticleMinimize APP in Android
Hi there: I want so start an aap and inmediately I want to send it to the background, like the home button does. I have tried: form1.SendToBack; form1.Active := false; form1.Hide; form1.DoHide;...
View ArticleHow to use FormatDateTime
Hi I'm not too experienced in Delphi, so I have a little problem using FormatDateTime. I read the help file but maybe I can't see the exaplanation how to solve my problem: I need to convert string into...
View ArticlefrxReport1 DesignReport
I install fast report 5.1.5 but the problem frxReport1.DesignReport not work Please how i sloved it
View ArticleCodeRage 7 November 2012 OverView
CodeRage 7: Tuesday, November 6, 2012 – 5am PST Bob Swart – What’s New in the Delphi Language Download – You can't view the links! Click here to register Watch – You can't view the links! Click here to...
View ArticleDelphi ile programlama (MYO Öğrencileri için kısa ders notları)
Türkçe eğitim veren üniversitelerimizde öğrenimine devam eden öğrencilerimize yönelik kısa notlar paylaşmayı düşünüyorum. Bugün ilk paylaşımımı Delphi Programlama Dili'nin kısa bir tanıtımı ile...
View ArticleDelphi ile programlama (ClientSocket ve ServerSocket Bileşenlerinin Yüklenmesi)
ClientSocket and ServerSocket Bileşenleri Delphi IDE’sinde bir çok bileşen sizin için hazır halde gelir. Kurulum bittiğinde bazıları “Tool Palette”deki yerlerini almış olurlar, ancak bazıları ise...
View ArticleHue_sample
Does anyone happen to the source code for this example: You can't view the links! Click here to register ???
View ArticleDBGrid Populate Procedure
I wrote this quiet a while back and works up to Delphi 2007 for me without a problem Uses Db,dbGrids,DbTables; procedure PopulateDBGrid(DataSource: TDataSource; var RDBGrid: TDBGrid; DataFields,...
View Article