1

如何判断我的 RealBasic 代码是在控制台还是桌面应用程序中运行?

4

1 回答 1

2

你可以使用这个条件句:

#if TargetHasGUI then     
    ' It's running in a desktop app
#else
    ' It's running in a console app
#endif
于 2012-08-21T08:19:50.933 回答