codeface

Software.Design

Archive for August, 2008

 

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 »

Google is the Skynet

August 25th, 2008

A long, long time ago… It’s was a simple white page with just the companies’ name and the objective of offer a better search on the Internet. So, comparing today all the stuff have created by the google’s team with one of my favorite fiction movie We need to admit Google’s technology is everywhere and [...]

Read full article | No Comments »

How Kentico CMS Simplify You Website Content

August 19th, 2008

I’ve decided to put together all my digital experience on the internet and develop, on my own, all my Website content in C# (Sharp), but doing that It’s not a easy task. So, I found searching on Google (of course) a company called Kentico provides a Content Manager in ASP.NET free of charge (commercial and [...]

Read full article | No Comments »

Using Team Viewer to Work Together

August 10th, 2008

What’s Team Viewer? It’s an application share the screen like Microsoft Remote Desktop, so, You can see and control the desktop computer of your client accros a network. The first difference betwen Remote Desktop and Team Viewer is You don’t need to have a public domain name or even know the client’s IP to make [...]

Read full article | No Comments »

Windows Home Server Simple Installation

August 8th, 2008

Windows Home Server Installation Before Install, please make backup of your files, because the installation will erase and format all Hard Drives. There are several messages alerting about this before install. So read those carefuly. Windows Home Server is for home consumers and it’s very simple to install, but the computer needs to restart about [...]

Read full article | No Comments »

How Windows Home Server Organize Your Digital Stuff

August 7th, 2008

If You really love technology like me, You need to know about the Windows Home Server. What is Windows Home Server? Microsoft wants to change the public target for their Servers and Create with a Innovative Team a Operational System organize all your digital stuff on a central place. Some Features of Windows Home Server [...]

Read full article | No Comments »

How Excel Could Organize Your Financial Life

August 3rd, 2008

Its important to you organize your Living expanses If you want to save money for buy something or just because you want to save money and garantee a better life for future. There are many softwares You could use to help you on this task, but when I started to think about it I wanted [...]

Read full article | No Comments »

Delphi Code to Download File from Internet

August 2nd, 2008

A procedure to download a file from the internet: function DownloadFile(Source, Dest: string; OnProgress: TDownloadProgressEvent): Boolean; begin with TDownloadURL.Create( Application ) do try URL:= Source; FileName := Dest; OnDownloadProgress := OnProgress; try ExecuteTarget(nil) ; except Result := false; end; finally Free; end; Result := true; end;

Read full article | No Comments »