如何判断我的RealBasic代码是在控制台还是桌面应用程序中运行?
您可以使用以下条件语句:
#if TargetHasGUI then
' It's running in a desktop app
#else
' It's running in a console app
#endif