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

时间:2012-08-21 08:19:51

标签: realbasic xojo

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

1 个答案:

答案 0 :(得分:2)

您可以使用此条件句:

#if TargetHasGUI then     
    ' It's running in a desktop app
#else
    ' It's running in a console app
#endif