which option is better,
RUN CLOUD VFOXPRO whitout without RDP
Get more with the least changes?....
RUN CLOUD VFOXPRO whitout without RDP
Get more with the least changes?....
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
olaf said:FoxInCloud analyses SCXes and VCXes to create the corresponding HTML forms the user finally sees, quite similar to what VFP2IIS does
olaf said:you don't provide the data center servers infrastructure or licenses and CALs, that's surely part of FoxInCloud Hosting
olaf said:I doubt FoxInCloud can convert them.
olaf said:I think it works best for VFP9 projects
Nigel said:VFP forms as opposed to @say
You do build a HTML replica of forms with JS binding back to the EXE running on servers, don't you? And do you do that at runtime of the VFP exe or do you process the projects forms and form classes (and all the dependencies on control classes, etc) to get there? The answer to that doesn't even matter on the aspect of type of solution this is, this absolutely still goes in the same direction as TS, just with the frontend in HTML. This has to be generated based on the form and control objects part of Visual FoxPro.myself said:And then Javascript events call back to a webserver which runs the real VFP desktop app in the background and binds this. You get something similar to TS,
olaf said:And do you do that at runtime of the VFP exe or do you process the projects forms and form classes (and all the dependencies on control classes, etc) to get there?
define class xxxProcess as awProcess && FoxInCloud sub-class generated by FAA
…
procedure someForm
this.wFormStandardPage('someForm.scx') && generates the HTML/CSS/JS if needed
external form someForm
endproc
…
procedure someForm.someControl.someEventOrMethod
…
&& ADAPTATION: FAA automatically replaces DO FORM by this instruction
thisForm.wForm('someForm.scx') && generates the HTML/CSS/JS if needed
external form someForm
…
endproc
…
olaf said:You don't turn @GET logic to HTML form input type text boxes, right?
olaf said:this absolutely still goes in the same direction as TS