QB64.org Forum
Active Forums => QB64 Discussion => Topic started by: badger on October 06, 2020, 07:18:21 pm
-
Hello
can a form be call from code or do you have to work from the form created first, and can you call forms form a form
Badger
-
You might want to have a look at this: https://www.qb64.org/forum/index.php?board=11.0
I've thought about fiddling around with JavaScript and QB64, to get an html form to communicate with a QB64 program. Other than that, you would have to field by field, design your own QB64 form, along with a keyboard input system, much like a text editor. That's a big several thousand lines of code job.
Maybe other have other methods, too.
Pete
-
You might want to have a look at this: https://www.qb64.org/forum/index.php?board=11.0
I've thought about fiddling around with JavaScript and QB64, to get an html form to communicate with a QB64 program. Other than that, you would have to field by field, design your own QB64 form, along with a keyboard input system, much like a text editor. That's a big several thousand lines of code job.
Maybe other have other methods, too.
Pete
Yes screen mode -1 using SHELL to a text editor, 0 control over keypress and mouse, can't do dukey until user saves and exits text editor but maybe only 100's of lines of code for processing. ;) The idea is to take a copy of a form made in text editor and have user fill it out, save it and exit editor. QB64 opens edited file and reads answers user wrote in to fill blanks or right sides of = signs and processes the input.
can you call forms form a form
Yes, you did and I understood ;-))