Delphi 2010错误 "displayNotification: 内存不够"

打开 Delphi 2010 的时候, 它报一个错误 "displayNotification: 内存不够",从而无法使用 Delphi , 解决办法

摘自http://www.cnblogs.com/del/archive/2008/08/12/1266368.html

从 Delphi 2010 启动菜单上点右键 -> 查看属性:
"C:\Program Files\CodeGear\RAD Studio\7.0\bin\bds.exe" -pDelphi

这里已经有了一个启动参数: -pDelphi; 当然也可以是: -pDelphiDotNet 或 -pCBuilder

再给一个 -np 参数即可去掉那个讨厌的 Start Page, 像这样:
"C:\Program Files\CodeGear\RAD Studio\7.0\bin\bds.exe" -pDelphi -np

如果再给一个 -ns 连启动画面也可以省略.

时间: 2024-10-29 05:16:27

Delphi 2010错误 "displayNotification: 内存不够"的相关文章

delphi vlc 安装bug 处理编译错误"0" is an invalid value for the "DebugInformation" parameter of the "DCC"

处理编译错误"0" is an invalid value for the "DebugInformation" parameter of the "DCC" [摘要:http://blog.csdn.net/jiaxing1208/article/details/38071301 处置惩罚编译毛病"0" is an invalid value for the "DebugInformation" parameter of the "DCC" t

处理编译错误"0" is an invalid value for the "DebugInformation" parameter of the "DCC"

在编译“MustangpeakCommonLib-master.zip”时,遇到了这个问题.网上搜了一下: 处理编译错误"0" is an invalid value for the "DebugInformation" parameter of the "DCC" [摘要:正在装置一个从XE6复造到XE4的控件时涌现编译毛病: [MSBuild Error] 0 is an invalid value for the DebugInformation parameter of the DCC

13.5 "1-((1-2)+1)-1"固定宽度布局

下面再来实现一个"1-((1-2)+1)-1"的布局.如果读者还不清楚这种布局方式的表示方法,请阅读本章的13 .1节.本案例的最终效果如图1所示. 图1 “1-((1-2)+1)-1”布局效果 案例文件位于网页学习网CSS教程资源中“第13章\1-((1-2)+1)-1.html”. 这个案例的HTML结构比较复杂,在写代码的时候,应尽可能缩进排列代码,并加上易于理解的注释.特别是每个</div>是和哪个<div>相互对应的,应该通过注释的方式写清楚.请注意下

Delphi 2010 Can&#39;t load package C:\Programme\Afalinasoft\Add-in Express 2\d5units\adxwizardd5.bpl.

"Can't load package C:\Programme\Afalinasoft\Add-in Express 2\d5units\adxwizardd5.bpl. Component TWordDocument can't be registered by package dcloffice2k50.bpl because it has already been registered by package dclaxserver50. " I think you have i

delphi 2010 资源文件使用

Project  Recources...   //1提取出资源 procedure TForm1.Button1Click(Sender: TObject);begin  with  TResourceStream.Create(HInstance, 'SnapShot_EXE', RT_RCDATA) do  begin     SavetoFile('SnapShot.exe');     Free;  end;end; //播放wav文件 //使用icon 文件 TResourceStr

Delphi 2010下载+完美破解

点击链接进入http://altd.embarcadero.com/download/RADStudio2010/delphicbuilder_2010_3615_win.isoRAD Studio/Delphi 2010 3615下载+破解 - 资源共享 - 网风社... RAD Studio/Delphi 2010 3615下载+破解官方下载地址:http://altd.embarcadero.com/download/RADStudio2010/delphicbuilder_2010_36

Delphi 2010 里公开的 Midas.dll 的源代码!!Delphi 2010 V14.0.3449.21988 的Midas.dll 修正了上一版本的大BUG!

源代码是用C++ Builder写的. 下载: http://files.cnblogs.com/AnyDelphi/Midas_Source.rar http://www.cnblogs.com/AnyDelphi/archive/2009/08/13/1545175.html#2264357 上一版本的Midas.dll Delphi 2007编译的程序如果是用Delphi 2010的Midas.dll是会出错的. 这一版就不会了. http://www.cnblogs.com/AnyDel

JavaScript中易犯的小错误-------常见错误三:内存泄露

国庆放假,今天开始继续!!!!!!!!!!! JavaScript中易犯的小错误-------常见错误三:内存泄露 内存泄露在js变成中几乎是一个无法避免的问题.如果不是特别细心的话,在最后的检查过程中,肯定会出现各种内存泄露问题.下面我们就来举例说明一下:var theThing = null;var replaceThing = function () {     var priorThing = theThing;     var unused = function () {       

delphi 2010是动画GIF的支持方法

下面delphi 2010是动画GIF的支持方法:  1.在窗体上放一个Image1控件.注意:这时设置其Picture属性,加载一幅动画GIF是不会动画显示的.  2.在窗体的FormCreate事件或其他事件(如按钮的点击事件)中写如下代码:  Image1.AutoSize := True; Form1.Autosize := True; Image1.Picture.LoadFromFile('C:\Gif89a.gif'); TGIFImage(Image1.Picture.Graph