Ads 468x60px

Smaller time frame always follow the bigger time frame. It's better wait be patience to enter in position than risk with BIG SL. Having strong trading discipline and taking losses when necessary is a sign of serious trading approach
Subscribe:

Labels

Monday, April 30, 2012

Can not right click to copy an article on a webpage

On those sites that have the so-called right-click protection, disable JavaScript in your browser and thoroughly refresh the page or clear the browser's cache and refresh to be sure.

Reset JS when done.

comments

Sunday, April 29, 2012

Installing Windows 7 from USB Flashdisk


This guide works 100% for Windows 7 and Windows 8 unlike most of the guides out there. I have seen many sites/blogs that have “Install Vista from USB guide” but either with incomplete steps or not working guide. I have also seen some guides that don’t’ use proper commands in this guide. After spending many hours I have come up with this 100% working guide to install Windows 7 and Windows 8 from USB flash drive.
Bootable USB drive

comments

Evie Tamala



Mang-Iwan Multi Media Player



Evie Tamala (born in Tasikmalaya, West Java, June 23, 1969 ) is an Indonesian dangdut singer. The singer whose real name is famous Cucu Suryaningsih with her song "Selamat Malam", "Cinta Ketok Magic" and "Dokter Cinta".
The youngest of six brothers started out in the 1980's as a stage singer and orchestra joined in a group of melayu Sinar Remaja. At that time, Evie uses the stage name Uce Arifina. Her Orchest Group not just show in Tasikmalaya, but also to Bandung. Until one day Muchtar B dangdut a songwriter and producer heard a melodious voice Evie.

comments

Saturday, April 28, 2012

uninstall deep freeze when you forget password

How to Uninstall Deep Freeze for Windows 2000/XP/Vista without the password.
Note: Without a complete uninstallation you may not be able to reinstall Deep Freeze on your system.
What we are going to do is edit the registry and delete the startup references to Deep Freeze. This will prevent the Deep Freeze driver from starting up the next time you boot. (c:\windows\system32\drivers\deepfrz.sys)
1. First we need a way to edit the registry. The way to do this depends on your situation. If your computer is thawed you can simply use Regedit. If your computer is frozen or if it doesn't boot you'll need to find another way.
comments

Friday, April 27, 2012

Execute a DOS command and capture the output

Here's a tip from Joe Donth that shows how to run and capture the output of a "DOS" command using cmd.exe (NT systems only?).
It works by running cmd.exe with the command to be run passed in CommandLine with the current directory optionally passed in the Work. The command is run and the output is returned as a string.
 
function GetDosOutput(CommandLine: string; Work: string = 'C:\'): string;
var
  SA: TSecurityAttributes;
  SI: TStartupInfo;
  PI: TProcessInformation;
  StdOutPipeRead, StdOutPipeWrite: THandle;
  WasOK: Boolean;
  Buffer: array[0..255] of AnsiChar;
  BytesRead: Cardinal;
  WorkDir: string;
  Handle: Boolean;
comments

DELPHI EXAMPLES


Many Delphi code examples available at link below.

http://docwiki.embarcadero.com/CodeExamples/XE2/en/Category:Delphi



comments

Run command line from delphi

how can i run this command from my delphi
C:\myapppath\appfolder>appname.exe /stext save.txt
i tried like this
ShellExecute(0, nil, 'cmd.exe', 'cd C:\myapppath\appfolder', nil, SW_Hide);
ShellExecute(0, nil, 'cmd.exe', 'appname.exe /stext save.txt', nil, SW_Hide);
but not working
any help please
thanks in advance
regards


comments