1
Well, I’m doing a show with Vclua and I realized that after compiling, even with the graphical interface, it runs the command line mode, how do I avoid that? Running only the program. I compiled it with Srlua. The program is basically this:
require("vcl")
form = VCL.Form("Form")
form._ = {position="podesktopcenter", width=480, height=240, caption="Compiler", BorderStyle="bsDialog"}
form:ShowModal()
In my case I use nothing related to os, winapi continues to serve?
– Gabriel Sales