codeface

Software.Design

Archive for the ‘Desktop’ Category

 

CodeXpress Report Builder Chart Insertion and Pdf Preview

February 14th, 2010

CodeXpress Report Builder is an application genarate PDF report with queried multiple pages and various types of data controls, include data chart. Further Information: Codexpress Report Builder Main Site This video shows how to insert a data chart and preview the pdf auto exported.

Read full article | No Comments »

Download Borland Delphi 7 Personal

February 14th, 2009

If You really like to develop softwares and don’t want to pay a expansive license of Borland Delphi Tool. You can use a free version called Delphi Personal with less components, but still useful. Some Features: Standard Components Additional Components Win32 Components (No Shell Treeview, etc) System Components Dialogs Components Win 3.1 Components Samples and [...]

Read full article | No Comments »

How Microsoft Live Mesh Helps File Synchronization

February 12th, 2009

Ok. I really like to stay connected with the existing technology, and I’ve tried to show some tools I’ve used to keep available my important documents everytime, everywhere. So, Live Mesh is one of them. What it is: A Webpage You can download folders and files on-line and access everywhere A Desktop Application You Can install and [...]

Read full article | No Comments »

Delphi Code to Restart Your Own Application

January 20th, 2009

The user of your application needs do close and open it again everytime he/she set a particular configuration to make this change available. So, with the code below You can give the possibility to your users a quick restart and improve the experience of your software. Simple task: Create a batch file with the filename [...]

Read full article | No Comments »

MDOP Exam 70-656 Portuguese Study Guides

September 17th, 2008

I found my friend a great blog website owned by Cleber Marques with some articles (in portuguese) about the MDOP Exam 70-656. So I decided to post here those articles and if You want further information You can access his site: www.clebermarques.com MDOP General Information MDOP SoftGrid Article MDOP DaRT Article MDOP AIS Article MDOP [...]

Read full article | 1 Comment »

Delphi Code to Convert Bitmap to Grayscale

September 11th, 2008

Every picture that You insert into your delphi application project makes the executable bigger. So, If you want minimize that problem with your disabled images of your buttons, You could use the code below: function ConvertBitmapToGrayscale(const Bitmap: TBitmap): TBitmap; var i, j: Integer; Grayshade, Red, Green, Blue: Byte; PixelColor: Longint; begin with Bitmap do for [...]

Read full article | No Comments »

Microsoft Desktop Optimization Exam 70-656

September 5th, 2008

Below is the knowledge You need do understand to pass in the brand new “Microsoft Desktop Optimization Configuring” Exam 70-656. I’ve got this Information on Microsoft Site and I’ll try to put related sites to help You in that difficult task. Here We Go: Configuring Group Policy Objects (GPOs) by Using Advanced Group Policy Management [...]

Read full article | No Comments »

Delphi Code to Simple Bitmap Encryption

August 30th, 2008

The Code below shuflle the bits of the image using the key to define differents ways to encrypt the same bitmap. procedure EncryptBitmap(const Bmp: TBitmap; Key: Integer); var   BytesPorScan: Integer;   w, h: integer;   p: pByteArray; begin   try BytesPorScan := Abs(Integer(BMP.ScanLine[1]) – Integer(BMP.ScanLine[0]));   except raise Exception.Create(‘Error’);   end;   RandSeed := Key; [...]

Read full article | No Comments »

Delphi Code to Simple Encrypt and Decrypt String

August 28th, 2008

A simple way to encrypt your strings into Delphi Development. The acode below shuffle the characters based on those C1 and C2 constants and You can set to any number to them, but remenber to use the same in both code encryption. function EncryptStr(const S: String; Key: Word): String; var I: Integer; const C1 = 53761;       C2 = [...]

Read full article | No Comments »

Microsoft Windows 1.01 Screenshot

August 25th, 2008

One of the first screenshots of Microsoft Windows itself Year 1985: More than Words

Read full article | No Comments »