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



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

您可以使用以下条件语句:

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

相关内容

  • 没有找到相关文章

最新更新