This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Wednesday, February 6, 2013

Special Offers on RAD Studio Delphi & C++Builder XE3

Special Offers on RAD Studio Delphi & C++Builder XE3  Now is a great time to get the new XE3 versions of RAD Studio, Delphi and C++Builder. In addition to all the great new features of XE3 for Windows 8 and Mac OS X development, 64-bit Windows compilers and FireMonkey FM2, you also get to take advantage of these special offers. And as a RAD Studio XE3 or Delphi XE3 registered user, you will be eligible for priority access to the...

Thursday, January 24, 2013

Embarcadero to Host Webinar on Obtaining Better Performance from Your Oracle Database

SAN FRANCISCO – Jan. 24, 2013 – Embarcadero Technologies announced today it is hosting a free webinar titled "Understanding Oracle Optimizer Statistics" featuring DBA specialist Karen Morton. Two separate sessions will be held on Jan. 29, 2013. What: Whether you're a developer or a DBA, you want your application SQL to perform well and remain stable over time. You can stack the odds in your favor by understanding Oracle optimizer statistics and how the optimizer formulates execution plans. The calculations the optimizer...

Sunday, April 26, 2009

convert dari Stringgrid ke Excel

ada beberapa cara untuk menconvert data dari stringgrid ke Microsoft Excel, diantaranya adalah : 1. Dengan OLE yg sudah include di Delphi uses ComObj; function RefToCell(ARow, ACol: Integer): string; begin Result := Chr(Ord('A') + ACol - 1) + IntToStr(ARow); end; function SaveAsExcelFile(AGrid: TStringGrid; ASheetName, AFileName: string): Boolean; const xlWBATWorksheet = -4167; var Row, Col: Integer; GridPrevFile: string; XLApp, Sheet, Data: OLEVariant; i, j: Integer; begin Data := VarArrayCreate([1, AGrid.RowCount, 1, AGrid.ColCount], varVariant); for...

Saturday, March 14, 2009

menyembunyikan desktop windows

icon-icon aplikasi yang ada di desktop windows kadang-kadang membuat kita merasa tidak nyaman, tapi bila kita hapus semua icon terkadang pula kita males kalau harus menjalankan program lewat start menu. nah, di delphi kita bisa menyembunyikan icon untuk sementara waktu dan dapat menampilkan icon pada waktu yang kita inginkan. berikut adalah caranya : 1. buat procedure untuk menyembunyikan icon desktop. masukkan perintah berikut ini pada button. ShowWindow(FindWindow(nil,'Program Manager'),SW_HIDE); perintah di atas adalah perintah untuk...