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

Saturday, August 11, 2012

TWO WAYS TO CHANGE THE DEFAULT PROJECT OPTIONS


You can change the default project options (which is being used by every new project you create) from Delphi GUI:
  1. Create a new project (File | New Application)
  2. Go to "Project | Options" and change the options as you wish.
  3. Check "Default" checkbox in the tabs which you changed options in.
If you rather change the options "manually," you can do so using a simple text editor:

  1. Edit defproj.dof file located in your Delphi's BIN directory (C:\Program Files\Borland\Delphi 2.0\Bin for example) using Notepad or any other text editor. If you don't see the defproj.dof, create one using your favorite text editor in the Delphi's BIN directory using the following format:

    [Compiler]
    A=1
    B=0
    C=0
    D=1
    E=0
    F=0
    G=1
    H=1
    I=1
    J=1
    K=0
    L=1
    M=0
    N=1
    O=1
    P=1
    Q=0
    R=0
    S=0
    T=0
    U=0
    V=1
    W=0
    X=1
    Y=0
    Z=1
    ShowHints=0
    ShowWarnings=0
    UnitAliases=WinTypes=Windows;
    WinProcs=Windows;DbiTypes=BDE;
    DbiProcs=BDE;DbiErrs=BDE;

    [Linker]
    MapFile=0
    OutputObjs=0
    ConsoleApp=1
    DebugInfo=0
    MinStackSize=16384
    MaxStackSize=1048576
    ImageBase=4194304
    ExeDescription=

    [Directories]
    OutputDir=
    SearchPath=
    Conditionals=

    [Parameters]
    RunParams=

comments