DELPHI盒子
!实时搜索: 盒子论坛 | 注册用户 | 修改信息 | 退出
检举帖 | 全文检索 | 关闭广告 | 捐赠
技术论坛
 用户名
 密  码
自动登陆(30天有效)
忘了密码
≡技术区≡
DELPHI技术
lazarus/fpc/Free Pascal
移动应用开发
Web应用开发
数据库专区
报表专区
网络通讯
开源项目
论坛精华贴
≡发布区≡
发布代码
发布控件
文档资料
经典工具
≡事务区≡
网站意见
盒子之家
招聘应聘
信息交换
论坛信息
最新加入: webb123
今日帖子: 9
在线用户: 22
导航: 论坛 -> 经典工具 斑竹:liumazi,ruralboy  
作者:
男 xvjie2002 (xvjie2002) ★☆☆☆☆ -
盒子活跃会员
2004/5/1 22:47:34
标题:
Delphi中复活节彩蛋及实现 浏览:3658
加入我的收藏
楼主: 启动Delphi,打开Help菜单,单击“About”,在对话框中按住ALT键不放,输入TEAM,就可以看到测试人员名单;按住ALT键不放,输入DEVELOPERS,就可以看到开发人员名单;按住ALT键不放,输入QUALITY,就可以看到QUALITY人员名单。
----------------------------------------------
-
作者:
男 hrbcw (hrbcw) ★☆☆☆☆ -
盒子活跃会员
2004/5/2 10:41:32
1楼: 这是真的.
----------------------------------------------
你好
作者:
男 wonder80 (刺客) ★☆☆☆☆ -
普通会员
2004/5/3 18:48:10
2楼: 可以用!
----------------------------------------------
-
作者:
男 cchpro (cchpro) ★☆☆☆☆ -
盒子活跃会员
2004/5/17 19:40:19
3楼: 不错不错!
谢谢啊。
不知BCB6  和BCBX 可以降子嘛。

----------------------------------------------
秉烛夜游,大块文章。
文章是案头之山水,山水是地上之文章。
作者:
男 lycnzz ( ) ★☆☆☆☆ -
盒子活跃会员
2004/5/28 9:38:06
4楼: 补充:
按住ALT键不放,输入JEDI
----------------------------------------------
-
作者:
男 lycnzz ( ) ★☆☆☆☆ -
盒子活跃会员
2004/5/28 9:41:55
5楼: If you hold down Ctrl+Shift whilst Delphi 7 starts, it chooses the splash screen randomly from the normal one and an alternative group photo shot.
----------------------------------------------
-
作者:
男 lycnzz ( ) ★☆☆☆☆ -
盒子活跃会员
2004/5/28 9:47:25
6楼: The C++Builder 6 Easter Eggs are much the same as those found in Delphi 4, but without Alt+CHUCK. 

Additionally, it has these. 


Run the command-line compiler with the undocumented -Team command-line switch, and the compiler team is listed:


C:\Tools\CBuilder6\Bin>bcc32 -Team
Borland C++ 5.6 for Win32 Copyright (c) 1993, 2002 Borland

It's the compiler team!

    John Wiegley
    Eli Boling
    Yooichi Tagawa
    Dawn Perchik
    Mark Alexander
    Lee Cantey
    Maurice Barnum
    Alastair Fyfe

Requesting help for the non-existent command-line compiler options me or me! gives an unexpected response: 
C:\Tools\CBuilder6\Bin>bcc32 -help me
Borland C++ 5.6.1 for Win32 Copyright (c) 1993, 2002 Borland
But I'm having too much fun!

C:\Tools\CBuilder6\Bin>bcc32 -help me!
Borland C++ 5.6.1 for Win32 Copyright (c) 1993, 2002 Borland
But I'm having too much fun!

C:\Tools\CBuilder6\Bin>


Use of the undocumented #pragma curious_george directive in a source file gives you a special message.

#pragma curious_george
int main()
{
  return 0;
}
C:\Tools\CBuilder6\Bin>bcc32 egg.cpp
Borland C++ 5.6.1 for Win32 Copyright (c) 1993, 2002 Borland
egg.cpp:
No eating puzzle pieces!
Turbo Incremental Link 5.62 Copyright (c) 1997, 2002 Borland

C:\Tools\CBuilder6\Bin>
This message will only be displayed in the IDE if the Show general messages option on the Compiler page of the project options dialog is checked. 


Use of the undocumented #pragma gpfault prettyplease directive in a source file gives you what you ask for.

#pragma gpfault prettyplease
int main()
{
  return 0;
}
E:\Tools\CBuilder6\Bin>bcc32 egg.cpp
Borland C++ 5.6.1 for Win32 Copyright (c) 1993, 2002 Borland
c:egg.cpp:
Fatal F1004 c:egg.cpp 3: Internal compiler error at 0x4208b2 with base 0x400000
Fatal F1004 c:egg.cpp 3: Internal compiler error
This option appears to be used to test the resilience of the IDE against Access Violations. If you compile a source file like this in the IDE, the initial compilation and any use of Code Completion (which invokes a partial background compilation) will give similar errors. 


Use of the undocumented #pragma keeka directive in a source file gives you a special message when compiling with the command-line compiler.

#pragma keeka
int main()
{
  return 0;
}
C:\Tools\CBuilder6\Bin>bcc32 egg.cpp
Borland C++ 5.6.1 for Win32 Copyright (c) 1993, 2002 Borland
egg.cpp:
         /\__/\
        | -  - |
        * ^--^ *
         x=--=x
         |    |
        |      |
        | |  | |     .
        | |__| |\___//
         vv  vv *---*

Keeka: Simply the best darn cat in the Universe.
Turbo Incremental Link 5.62 Copyright (c) 1997-2002 Borland

C:\Tools\CBuilder6\Bin>


When attempting to use the using directive on an overloaded conversion operator, and compiling with the command-line compiler, you get an unexpected assertion: 
class C1
{
  public:
    operator int() const
    {
      return 1;
    }
};

class C2: public C1
{
  public:
    using C1::operator int;
};

C:\Tools\CBuilder6\Bin>bcc32 egg.cpp
Borland C++ 5.6.1 for Win32 Copyright (c) 1993, 2002 Borland
egg.cpp:
Assertion failed egg.cpp(14) : "sure, will implement using for conversions one day" at c:\helena\bcc\indep\cppdecl.c(5537)

Invoke the About box with Help | About..., then hold down Alt whilst typing GUNGLA. This shows Tequila Joe Monkey on a surfboard. It also has a short musical accompaniment that is a section of the sound track from The Hamster Dance web site, http://www.hamsterdance.com. 
Apparently, Gungla comes from the film CaddyShack where Bill Murray is talking about the Dali Lama. One of the C++Builder developers likes using this word...

Set the environment variable SHOW_RTLDLL_VERSION to 1 and the C++ RTL DLL (CC3260MT.dll) will give you information on its location and version and which application is loading it. It also asks if you wish to continue, or abort. 

If you hold down Ctrl+Shift whilst C++Builder 6 starts, it chooses the splash screen randomly from the normal one and an alternative group photo shot.
----------------------------------------------
-
作者:
男 love319 (碧海临风) ★☆☆☆☆ -
禁用账号
2004/6/3 14:33:46
7楼: ……
被禁用帐号,帖子内容自动屏蔽!
……

----------------------------------------------
我是菜鸟但我对编程很感兴趣!请大家帮助我!谢谢
信息
登陆以后才能回复
Copyright © 2CCC.Com 盒子论坛 v3.0.1 版权所有 页面执行89.84375毫秒 RSS