Wednesday, December 19, 2007

Yahoo version 9

You can download Yahoo version 9 at: Click here !

Tuesday, December 18, 2007

convert wma to mp3

You can download freeware convert wma to mp3 Click here !

Friday, November 16, 2007

Web Site test Invisible Scanner

You can access to web site: http://yahoo.4tvn.com to Invisible Scanner.

Saturday, October 6, 2007

Winrar 3.7

You can download software Winrar 3.7(1,15 MB) at: Click here!

Converter .zvr to .wmv

You can download software help to converter .zvr to .wmv at: Click here!

Tuesday, August 14, 2007

WinMount v2.0.1

You can download software freeware full WinMount v2.0.1(2,15 MB):
Click here!
With WinMount, you don't need use software unzip file or create virtual CD/DVD in the system to open file image.

Monday, July 30, 2007

Mark IT Now v2.1

You can download Mark IT Now version 2.1 at address: Click here

Fun4Word v1.9

You can download Fun4Word version 1.9(1,28 MB): Click here

Saturday, July 21, 2007

Portable Notepad

You can download Portable Notepad at address:
Click here!

Flash Get

You are download Flash Get at address:
Click here!

Portable Borland C

You can download Portable Borland C at address:
Click here !

Wednesday, July 18, 2007

Portable Firefox_2.0.0.4

You can download Portable Firefox at address:
Click here
After you downloaded, you can run directly that you don't need install.

Update Symantec_17/07/2007

You can download at address:
Click here

Monday, June 25, 2007

Panda Antivirus

You can download Panda Antivirus and anti Spyware (30,45 MB) at address:
http://updates.pandasoftware.com/beta/PAV/L08Beta.exe

Firefox version 2.0.0.4

You can download Mozilla Firefox version 2.0.0.4 (5,73 MB) at address:
http://chuangtzu.acc.umu.se/pub/mozilla.org/firefox/releases/2.0.0.4/win32/en-US/Firefox%20Setup%202.0.0.4.exe

Saturday, June 16, 2007

ReloadEditor

You can download software ReloadEditor (21,50 MB) at address:
http://www.reload.ac.uk/download/Setup_ReloadEditor202_win.exe
This software can help pack files: html, ... to file zip.

Sunday, June 10, 2007

Update Symantec Corporation _9/6/2007

You can download update symantec antivirus corporation (18,41 MB) at address:
http://definitions.symantec.com/defs/20070609-007-x86.exe

Saturday, June 2, 2007

Amic Screen Capture 1.2

Amic Screen Capture is a powerful and easy-to-use screen capture utility to capture full screen (include DirectX mode), windows, objects, rectangle areas of the screen by hotkeys or menu commands. You can save the captured images in BMP, JPEG, GIF formats, ...
You can download Amic Screen Capture 1.2 (1,31 MB) at address:
http://www.amicutilities.com/download/ScreenCaptureSetup.exe

Screenshot Magic 3.0

Screenshot Magic allows image capture from the following sources: Full Desktop, Active Window (full or contents only) and DirectX Fullscreen (games). Screenshot Magic can save images in the following formats (24-bit): Windows or OS/2 Bitmap (BMP), Independent
You can download Screenshot Magic 3.0 (1,30 MB) at address:
http://www.devcode.co.uk/dload/ScrMagicSetup.exe

DirectX SDK 9

The August 2006 DirectX SDK download contains the tools needed to build cutting-edge, media-rich, interactive applications...
You can download DirectX SDK 9:
http://download.microsoft.com/download/2/1/e/21e186a5-30b8-4cc0-888a-db4abb111405/directx_aug2006_redist.exe

Desktop Logo

With Desktop Logo, logo or your avatar will in the all windows that is opened.
You can download Desktop Logo at address:
http://www.mt-soft.org/download/desktoplogo_install.exe

Windows Media Player 11

You can download Windows Media Player 11 at address:
http://download.microsoft.com/download/0/9/5/0953E553-3BB6-44B1-8973-106F1B7E5049/wmp11-windowsxp-x86-enu.exe

9 software revovery and convert data of RinjaniSoft

You can download RPT (20,47 MB) at address website:
http://tinyurl.com/2krgay
or
http://tinyurl.com/34m852
When you download complete, you can extract file ptp.rar into one folder and active file ptp.exe to open interface of RTP

Get Link Download music, film from 62 website

You can access at website to get link download music, film from 62 website favorite:
http://vngrabber.info

Update Symantec Antivirus 01/06/2007

You can download at :
http://definitions.symantec.com/defs/20070601-032-x86.exe

Tuesday, May 29, 2007

Get link download music, flash, film from 40 website

You can access to website to get link download musuc of 40 website: google video, youtube,ifilm, metacafe, blip.tv, livevideo.com, motionbox.com, soundclick.com, loitraitim.com, putfile.com, sonic.vn, nhacso.net, clip.vn, ....
http://tulieu.net

Converter .swf to .exe

You can download software Flash Keeper or Aero SWF.max at address:
http://kimthienlong.googlepages.com/SWF.max.1.5.785.exe

Adobe Photoshop CS3 Lite

You can download at address:
http://urltea.com/huc?photoshoplite

Hiren's BootCD 9

You can download at address:
http://rapidshare.com/files/28384064/HirenBootlX.rar

Porttable Windows XP boot from flash USB

Windows XP Portable is made of Bart PE, it is free and have volumn 48 MB.
You can download at address:
http://tinyurl.com/2vry6p

Saturday, May 26, 2007

The Process of Drawing


Getting a Device Context


In order to draw using a device context, you must first declare an HDC variable. This can be done as follows:


HDC hDC;


After declaring this variable, you must prepare the application to paint by initializing it with a call to the BeginPaint() function. The syntax of the BeginPaint() function is:


HDC BeginPaint(HWND hWnd, LPPAINTSTRUCT lpPaint);


The hwnd argument is a handle to the window on which you will be painting


The lpPaint argument is a pointer to the PAINTSTRUCT structure. This means that, the BeginPaint() function returns two values. It returns a device context as HDC and it returns information about the painting job that was performed. That painting job is stored in a PAINTSTRUCT value. The PAINTSTRUCT structure is defined as follows:


typedef struct tagPAINTSTRUCT {
HDC hdc;
BOOL fErase;
RECT rcPaint;
BOOL fRestore;
BOOL fIncUpdate;
BYTE rgbReserved[32];
} PAINTSTRUCT, *PPAINTSTRUCT;


After initializing the device context, you can call a drawing function or perform a series of calls to draw. After painting, you must let the operating system know by calling the EndPaint() function. Its syntax is:


BOOL EndPaint(HWND hWnd, CONST PAINTSTRUCT *lpPaint);


Painting with the BeginPaint() and EndPaint() functions must be performed in the WM_PAINT message.


Starting a Device Context's Shape

To keep track of the various drawings, the device context uses a coordinate system that has its origin (0, 0) on the top-left corner of the desktop:



Anything that is positioned on the screen is based on this origin. This coordinate system can get the location of an object using a horizontal and a vertical measurements. The horizontal measures are based on an x axis that moves from the origin to the right right direction. The vertical measures use a y axis that moves from the origin to the bottom direction:


This means that, if you start drawing something such as a line, it would start on the origin and continue where you want it to stop.

Introduction to the GDI

The Device Context
Imagine you want to draw an orange. You can pick up a piece of stone and start drawing somewhere. If you draw on the floor, the next rain is likely to wipe your master piece away. If you draw on somebody's wall, you could face a law suit. Nevertheless, you realize that, to draw, you need at least two things besides your hands and your imagination: a platform to draw on and a tool to draw with.
As it happens, drawing in a studio and drawing on the computer have differences. To draw in real life, the most common platform is probably a piece of paper. Then, you need a pen that would show the evolution of your work. Since a pen can have or use only one color, depending on your goal, one pen may not be sufficient, in which case you would end up with quite a few of them. Since the human hand sometimes is not very stable, if you want to draw straight line, you may need a ruler. Some other tools can also help you draw geometric figures faster.
A device context is everything under one name. It is an orchestra, an ensemble of what need in order to draw. It includes the platform you draw on, the dimensioning of the platform, the orientation and other variations of your drawing, the tools you need to draw on the platform, the colors, and various other accessories that can complete your imagination.
When using a computer, you certainly cannot position tools on the table or desktop for use as needed. To help with drawing on the Windows operating system, Microsoft created the Graphical Device Interface, abbreviated as GDI. It is a set of classes, functions, variables, and constants that group all or most of everything you need to draw on an application. The GDI is provided as a library called Gdi.dll and is already installed on your computer.

Grabbing the Device Context
As mentioned already, in order to draw, you need at least two things: a platform and a tool. The platform allows you to know what type of object you are drawing on and how you can draw on it. On a Windows application, you get this platform by creating a device context.
A device context is actually a whole class that provides the necessary drawing tools to perform the job. For example, it provides functions for selecting the tool to use when drawing. It also provides functions to draw text, lines, shapes etc.
HDC: This is the most fundamental class to draw in your applications. It provides all of the primary functions used to perform the basic drawing steps. In order to use this class, first declare a variable from it. Then call the BeginPaint() function to initialize the variable using the PAINSTRUCT class. Once the variable has been initialized, you can use it to draw. After using the device context call the EndPaint() function to terminate the drawing.

Thursday, May 24, 2007

Monday, May 21, 2007

IDE 5.09

You can download Internet download manager 5.09 at address:
http://www.internetdownloadmanager.com/idman509.exe

Kaspersky Anti-Virus 6.0.2.621

You can download Trial version of Kaspersky Anti-Virus 6.0.2.621 ( English ) 19.9 MB at:
ftp://dnl-us4.kaspersky-labs.com/trial/registered/IALH5CIN3C6BRF8JWO9X/kav6.0.2.621en.exe
or
http://dnl-us4.kaspersky-labs.com/trial/registered/IALH5CIN3C6BRF8JWO9X/kav6.0.2.621en.exe
or
http://dnl-eu8.kaspersky-labs.com/trial/registered/IALH5CIN3C6BRF8JWO9X/kav6.0.2.621en.exe
or
http://dnl-pr1.kaspersky-labs.com/trial/registered/IALH5CIN3C6BRF8JWO9X/kav6.0.2.621en.exe

Kaspersky Anti-Virus 6.0.1.411

You can download Kaspersky Anti-Virus 6.0.1.411 (18.22 MB) at address:
ftp://dnl-us4.kaspersky-labs.com/products/release/croatian/homeuser/kav6.0/kav6.0.1.411hr.exe
or
http://dnl-us4.kaspersky-labs.com/products/release/croatian/homeuser/kav6.0/kav6.0.1.411hr.exe
or
http://dnl-eu8.kaspersky-labs.com/products/release/croatian/homeuser/kav6.0/kav6.0.1.411hr.exe
or
http://dnl-pr1.kaspersky-labs.com/products/release/croatian/homeuser/kav6.0/kav6.0.1.411hr.exe

Easy *.CHM

You can download freeware editor file *.chm EasyCHM(2,9 MB) at address:
http://dl8.filekicker.net/private/$adv-rgn4$1179803507$f25e0a3b3a1610464dc992161aca40df$/id/$QW2282$7297$/cache/94c36fb068088682296e143951156f26e2693b0e82aa367c5d1781c391b3d288eb0f0bf18879041aa8f73881097f/echmsetup.exe

Updata Symantec _21/05/2007

You can download at address:
http://definitions.symantec.com/defs/20070521-019-x86.exe

Saturday, May 19, 2007

ScreenSaver

You can download Screen Saver at address:
http://www.screensavers.com/landing/top4_flash_sb.html?aff_id=icon&banner=alert_ani_728x90

Update Bkav_19/05/2007

You can download update Bkav:
+ Bkav Pro trial:
http://www.bkav.com.vn/home/Download/BPro.exe
+ Bkav Home free:
http://www.bkav.com.vn/home/Download/BHome.exe

Acrobat Reader 8.0

You can download Acrobat Reader 8.0 at address:
+ Langue English (full install):
http://download.softpedia.com/dl/88a3774693547dd25f51efc67a37b294/464f1e01/100002572/software/office/AdbeRdr80_en_US.exe
+ Langue French (full install):
http://ardownload.adobe.com/pub/adobe/reader/win/8.x/8.0/fra/AdbeRdr80_fr_FR.exe

Update Symantec Corporation Edition_18/05/2007

You can download update Symantec Corporation Edition for x86 (18,11 MB) at address:
http://definitions.symantec.com/defs/20070518-019-x86.exe

Friday, May 18, 2007

Information about biology

You can visit website:
http://www.agbiotech.com.vn

See the Map of the Earth directly in the web

You can access at address:
http://www.flashearth.com

Update for Windows XP server Pack 2

You can download updata for Windows Xp Server Pack 2 at address:
http://download.microsoft.com/download/7/4/9/749eef31-7d91-4558-88e3-7bfe92c212fc/WindowsXP-KB884020-x86-enu.exe

Update System Configuration Utility for Windows XP

You can add tab Tools in msconfig by downloading version update KB906569 of Microsoft at address:
http://support.microsoft.com/?kbid=906569 or
http://tinyurl.com/qvhlk
Tab Tools will help launch much tools of system XP: About Windows (Winver.exe), Command Promt (cmd.exe), Event Viewer (Eventvwr.msc), Internet Options (Inetcpl.cpl), Internet Protocol Configuration (ipconfig.exe), Network Diagnostics (Netsh.exe), Programs (Appwiz.cpl), Registry Editor (regedit.exe), Security Center (wscui.cpl), System Information (msinfo32.exe), System Properties (sysdm.cpl), System Restore (rstrui.exe), Task Manager (Taskmgr.exe).

Register a domain name free

You can register a domain name. It's free
http://www.dot.tk

Search web that return picture of web

You can access address website:
http://www.pagebull.com

Search Web







Google















Thursday, May 17, 2007







Google

















Tuesday, May 15, 2007

Lyric songs

This website have much lyric song intertional English and will be changed to many others langues
You can visit website:

http://www.elyrics.net

Library Ebook

You can visit and download many free ebook at address:
http://www.thuvien-ebook.com

Monday, May 14, 2007

Library book voice

You can download at address:
http://librivox.org
Writings are downloaded have format .mp3 or .ogg
At this website English book have very much.

Design Online

You can design online image avatar at address:
http://www.imagechef.com/ic/product.jsp

Learn Photoshop

You can learn Photoshop at address:
http://www.pslover.com

Defrag for folder and file

Defrag disk drive help you access data and work faster than, but this work lose very much time.
If you often work with one folder and want just defrag in this scope, now software WinContig will help you specify this work.
You can download WinContig (120 KB), run direct, don't install:
http://www.mdtzone.it/Files/WContig.zip

Automatically do all works before shutdown

You can download HSLAB Shutdown Folder at address:
http://dl.hs-lab.com.ua/hslab-shutdown-folder-free.exe
After download, you open program, click Next > Next > Next > Next. Then, you choose Commercial version in part version use.

Physical and Chemistry

At address http://www.vatlyvietnam.org , you will know many application and will be provided news about science of Physical.
At address http://www.hoahocphothong.com , you will study many knowledge of Chemistry.

Library Icon of Windows

In the all operating system Windows have storage some quantity icons. These icons haven't extension .ico that is storaged in some file special of Window that have extension .exe, .cpl, .dll.
So, in frame Look for icons in this file of dialog Change Icon, you can declaire location:
+ C:\WINDOWS\explorer.exe or explorer.exe: icons have relate to Windows Explorer and desktop.
+ C:\WINDOWS\system32\main.cpl or main.cpl: icons have relate to Control Panel and mouse applet.
+ C:\WINDOWS\system32\shell32.dll or shell32.dll: other icons ...

Saturday, May 12, 2007

Protect for Your Pictures

You can download Secret Photoagent Andy 007 (1,66 MB) at address:
http://www.download.com/Secret-PhotoAgent-Andy-007/3000-12511_4-10623635.html

Wavosaur_edit sound

Wavosaur is one tool edit sound. It is software don't need install, you click file Wavosaur.exe
You can download software Wavosaur (408 KB) version 1.0.0.8000 at address:
http://www.wavosaur.com/download.php

15 utility free for PC

You can download at address:
+ Security: http://www.tenebril.com/consumer/spyware/spycatcher-express.php
http://www.hijackfree.com/
http://www.download.com/VistaFirewallControl/3000-10435_4-10623889.html
http://tor.eff.org/
+ System Tools:
http://www.whatsrunning.net/whatsrunning/main.aspx
http://www.eusing.com/free_registry_cleaner/registry_cleaner.htm
http://www.undelete-plus.com/
http://www.iobit.com/AdvancedWindowsCarePersonal/index.html
http://www.gtopala.com/
+ Graphics and Multimedia:
http://www.photozig.com/
http://www.mediamonkey.com/
http://sketchup.google.com/
+ Other Softwares:
http://www.rssbandit.org/
http://www.imgburn.com/
http://azureus.sourceforge.net/

ObjectDock 1.9 Build 543

ObjectDock 1.9 Build 543 (OD 1.9) is one Taskbar dynamic.
You can download free software ObjectDock 1.9 Build (12 MB ) at address:
http://storage.stardock.com/files/objectdock_freeware.exe

Upload File

EasyUploader 1.4 (EU) is one service allow upload file free such as Zshare, Mediafire..., It allow upload file have volume max 100MB.
You can choose 2 style upload:
+ Style 1: access to website: http://www.easy-share.com , fill file need upload into dialog Upload File at top page (can click browse button to find).Then, you click Upload button to upload file.
+ Style 2: download free software EasyUploader ( 227 KB )at address:
http://www.easy-share.com/revenue/easyuplo.exe

CaptureScreen

CaptureScreen (CS 1.0.2) allow move to print Screen in region or full screen.
You can download CaptureScreen (40KB):
http://www.download.com/CaptureScreen/3000-2192_4-10660661.html
After download, you extract software and click drag file CaptureScreen.exe to active. Windows of CaptureScreen is tranperency, you want print Screen one region, you move it to that region.

Tool Publishe PDF

Primo PDF is one application that you is interested. It allow publish pdf and support all program are use command print...
You can download freeware Primo PDF (13,1 MB) of activePDF provide at address:
http://www.primopdf.com/

Converter all format multimedia to mp3

Program Free Video to Mp3 Converter support much format: avi, mpg, mpeg, wmv, asf, mov, qt, 3gp, 3pg2, 3gpp, 3g2, flv, swf…
You can download Free Video to Mp3 Converter (3,12 MB):
http://www.dvdvideosoft.com/download/FreeVideoToMp3Converter.exe

Using Registry To Hide Icons On Desktop

you click: start\run...\regedit\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
Then, you look at right window and double click on value: HideIcons
Then, you type value 1 and click OK button.
Then, you exit regedit and log off or restart your computer.

Friday, May 11, 2007

Five Tool Process File *.FLV

You can download GetFLV Pro 2.28 (11 MB):
http://www.getflv.net/product/gfgold.exe
You see guide registry:
http://tinyurl.com/2mtt6k

Five Tool Process File *.FLV

You can download GetFLV Pro 2.28 (11 MB):
http://www.getflv.net/product/gfgold.exe
You see guide registry:
http://tinyurl.com/2mtt6k

Manage BookMark Online

First, you connect to website:
http://bookmarks.yahoo.com
Then, you fill in username and password your yahoo

Download Clip in website Clip.vn

First, you connect to website:
http://www.clip.vn
Then, you click clip that you like. Continue, you copy link in Address bar
Then, you connect to website:
http://clip.xem247.com
and paste link that you copied above into textbox in this website.
Then, you click download button and save as button

See Album 3D

Bix's Photo Book support much format image (jpg, png, bmp, tga).
You can download Bix's Photo Book:
www.blufftitler.com/BixPhotoBookSetup.exe
See guide Registry :
http://tinyurl.com/yvl6d4 or http://tinyurl.com/ysz2ah
Requirement:
Your computer have to install DirectX9. You can download DirectX9 :
http://www.microsoft.com/directx

Lyrics Base

You like collection lyric music international or you learn English by songs...you can easy search lyric by websites in the internet. However, quickly, easy and convenient, if you use program Lyrics Base of 100Share, it will search and store for you 120000 lyrics of song
You can download 200.000 international lyrics base:
www.100share.com/download/lyricsch.zip (4,81 MB).
Tree appearance data: AstraWeb, you can download :
www.100share.com/astraweb.exe (1,74 MB), and AceLyric:
www.100share.com/AceLyrics.exe (0,81 MB) and LyricsShut:
www.100share.com/Lyricsshut.exe (0,51 MB).
All are free.
Note: when search lyric song is your computer need connect Internet.

Lyrics Base

You like collection lyric music international or you learn English by songs...you can easy search lyric by websites in the internet. However, quickly, easy and convenient, if you use program Lyrics Base of 100Share, it will search and store for you 120000 lyrics of song
You can download 200.000 international lyrics base:
www.100share.com/download/lyricsch.zip (4,81 MB).
Tree appearance data: AstraWeb, you can download :
www.100share.com/astraweb.exe (1,74 MB), and AceLyric:
www.100share.com/AceLyrics.exe (0,81 MB) and LyricsShut:
www.100share.com/Lyricsshut.exe (0,51 MB).
All are free.
Note: when search lyric song is your computer need connect Internet.

See formats of file

You don't need open original program that you can see also media(avi, mpg, wmv), internet(html, xml), office(doc, xls), image(bmp, jpg, ico, gif, png, wmf, tga, tiff, pcx, psd...) and files format text, binary, hex, unicode (volume un-limited), etc...
You can download program Universal Viewer 1.5 (750 KB) free, open source :
http://www.totalcmd.net/download/php?id=ATViewer.Exe

JetAudio 7.0 Plus VX

you can download jetAudio 7.0 Plus VX(21.8 MB):
http://www.vitinhvn.com
or
http://www.9down.com/Cowon-JetAudio-v7-0-0-3001-Plus-VX-Retail-8762

Hide Icons on Desktop

you right click on the Desktop, pick Arrange Icons by>show Icons on Desktop.

Thursday, May 10, 2007

Hide disk drive in My Computer

First, we click start\run\gpedit.msc
Continue, pick Administrative Templates\Windows Components\Windows Explorer
Continue, right click Hide these specified drives in My Computer, then pick properties, then pick enabled