หน้าเว็บ

Ad

วันพฤหัสบดีที่ 23 มิถุนายน พ.ศ. 2554

Website design, interesting.

45 Interesting Examples of Big Backgrounds in Web Design

Ideas for Web
To build excitement around the 2nd Generation Intel® Core™ i5 processor, Intel is launching an action-adventure video titled “The Chase.” The spot demonstrates the performance capabilities of the new processors by creating an action-movie style chase sequence that takes place through a wide variety of program windows on a computer desktop.
Intel: The Chase

Graeme Anthony C.V.I.V

Teaching web design.

Guest blogger Mariana Fang Lin is an avid blogger and writes throughout the blogosphere. She’s most interested in social media, web hosting services, mobile marketing, and Internet marketing strategy. You can follow Mariana on Twitter here.

Some things about Social Media Networking that offered real insight in this crazy little thing we call life:

7 Things Social Media Has Taught Me About Life

Website editor.

How to buy a notebook.?

How to buy a notebook.

• How to download the program,

• How to download the program, click here •.
Software that is necessary for you here.
http://www.moneyonline.tht.in/download.html.


Unlock your high speed Internet.
http://ff428d1a.linkbucks.com/.
Tip Windows XP and all 90 lots.
http://81fc49d5.linkbucks.com/.

The Top Tip WINDOWS.
7.
http://3e489763.linkbucks.com/.

How to Write a batch File

Saturday, 26 February, 2011
Batch (with CMD code), can do something on windows computer like rename files, delete files, shutdown computer automatically and more. batch for some people it's easy to make batch files, but more people don't know how to do. » so, in this tutorial we'll post how to write a batch file, following the steps to write batch file
Batch (with CMD code), can do something on windows computer like rename files, delete files, shutdown computer automatically and more. batch for some people it's easy to make batch files, but more people don't know how to do. so, in this tutorial we'll post how to write a batch file, following the steps to write batch file :
- Open Notepad
(Start -- Notepad) (Start – All program – accessories – Notepad)
- Write the command prompt commands, example:
@echo off
title Batch File
echo hello world, this is a batch files example
echo Press any key to exit
pause>nul
- Save it into .bat extension, example :
( myTool.bat ) ( file name : myTool.bat Save as type: All files)

and then double click on the myTool.bat file to test and run batch files.

sponsored links IT Computer Zone 2010

Batch File Copy Folder Tricks

This is the simple trick of batch file code to copy folder, after you knowing more batch commands you can combine all the batch code to make a expert tool for your computer that using windows.ex.Delete,
So, you may need learn the others batch file more then to copy folder, ex.Delete folder, rename folder hidden folder, and etc. the following is the basic CMD code before you make batch file to copy folder/directory :
XCOPY D:\Old-Folder E:\

it's working ?no, it is not. so,how the true code ? (this just my trick to get folder from the other drive), why you should use this trick ? I think with this trick you still get the folder that you need.

IF EXIST D:\Folder-name MD E:\

After knowing my batch code tricks you can develop the code with your best logic idea.if you want to make tool with batch, you may write CMD code into
notepad to make a batch file that saved with .bat extension. here the

example batch file code :

@echo off
IF EXIST D:\Folder-name MD E:\
echo press any key to exit
pause>nul

ex.CopyFolder.bat) CopyFolder.bat save it into .bat extension (ex.CopyFolder.bat) and then double click on CopyFolder.bat file to execute and see the batch program will running to copy folder. I hope it's useful trick. TY ty



sponsored links IT Computer Zone 2010