is my program a web page ?

Just starting out? Need help? Post your questions and find answers here.
es_91
Posts: 36
Joined: Sat Aug 29, 2015 10:25 pm

is my program a web page ?

Post by es_91 »

Hi.

How can i resolve if my app is compiled as app or web page inside the code?
:mrgreen:
User avatar
Peter
Posts: 1086
Joined: Mon Feb 24, 2014 10:17 pm
Location: 127.0.0.1:9080
Contact:

Re: is my program a web page ?

Post by Peter »

Code: Select all

CompilerSelect #PB_Compiler_OS 
  CompilerCase  #PB_OS_Web
    Debug "Web"
  CompilerCase  #PB_OS_Windows
    Debug "Windows"
  CompilerCase  #PB_OS_Linux
    Debug "Linux"
  CompilerCase  #PB_OS_MacOS
    Debug "MacOS"
CompilerEndSelect
Post Reply