Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. foxincloud

    How to get output in less time in foxpro?

    do one single query using the IN clause
  2. foxincloud

    VFP IN INTERNET

    Hi Nabarun, On top of what Tom and Chriss suggested, you can proceed in 2 steps: 1- adapt your VFP app. to the Web using FoxInCloud (and get your UI in HTML/CSS/JS), 2- rewrite the server code in whatever language (PHP, ASP.net, etc.) of your preference.
  3. foxincloud

    Request for Help

    Steve, The Web is multi-tiered so you can move your VFP app to the Web in 2 steps: [ol 1] Turn the client side (UI) in responsive HTML/CSS/JS using FoxInCloud; at this stage, the server code is still VFP but you've done half the way and your client has saved a lot of time and money writing...
  4. foxincloud

    Request for Help

    We can help; not sure whether I can drop a contact address or not; my signature should suffice however
  5. foxincloud

    HOW CAN I RUN MY APPLICATION OVER INTERNETBROWSER ?

    Hi all, Just a couple of observations and answers We provide a free tool, the FoxInCloud Adaptation Assistant that tells you exactly what you need to do on your app. and how long it will take you (you can even adapt your unit time from your personal experience). During adaptations your app...
  6. foxincloud

    VFOXPRO IN CLOUD

    FoxInCloud generates the HTML, CSS and JS at run time, for each form, upon first time needed eg. - for a 'Master' form https://mycompany.com/someForm.xxx define class xxxProcess as awProcess && FoxInCloud sub-class generated by FAA … procedure someForm this.wFormStandardPage('someForm.scx')...
  7. foxincloud

    VFOXPRO IN CLOUD

    As Far as I remember: .scx are OOP forms for VFP 3+, @say screens were .scr
  8. foxincloud

    VFOXPRO IN CLOUD

    AFAIK, West Wind Web Connect's wwDHTMLform was the first attempt to render a VFP form in HTML, so did VFP2IIS and FoxInCloud. FoxInCloud pushes this logic farther than its colleagues: clones forms as HTML/CSS/JS that not only replicates the VFP display, but understands the form structure to...
  9. foxincloud

    VFOXPRO IN CLOUD

    You can adapt your application by parts, with sub-projects containing the forms of a functional area. Once you've adapted your classes for the first project, then the other projects inherit from them. An important point: you adapt the same source code that you deploy for desktop / RDP / TSplus...
  10. foxincloud

    VFOXPRO IN CLOUD

    Hi Avsalf, If you're still interested, let me draw a comparison between TSplus, Lianja, West-wind and FoxInCloud. TSplus works as a video replication between the VFP app running on the server and the animated image the user can see in the browser, using the <canvas> HTML5 element. It requires...
  11. foxincloud

    HOW TO INSTALL SUCCESSFULLY ON FREE TRIAL OF FOXINCLOUD (F.A.S)

    Hi Keisha, Looks like the download failed on your side. Could you pass this step on a later attempt?
  12. foxincloud

    Synergy of VFP-desktop into the web-base

    It's more complex to provide users the same interactive GUI: on each user action, refresh just the parts of the form that need to change, not the full page like you typically see on a web site when clicking an hyperlink. To provide an interactive experience, you need AJAX and a lot of...
  13. foxincloud

    Another development philosophy question - Managing two active tables in one form

    current design tends to leave much 'respiration/breathing' space around oversized controls: http://getbootstrap.com/docs/4.1/examples/checkout/
  14. foxincloud

    Another development philosophy question - Managing two active tables in one form

    maybe this design: http://foxincloud.com/tastrade/bs/
  15. foxincloud

    'No Parameter Statement is Found' thrown on built exe - but Running PRG works fine

    Make sure your project references the right prg file
  16. foxincloud

    foxpro project in web

    Sorry if I contradict you (it's the purpose of forums, right?), FoxInCloud has overcome all the 'fundamental differences' between a Desktop and a Web application. Here are these differences: user state management On the desktop, each user deals with a dedicated instance of the application in...
  17. foxincloud

    fox in web

    Hi Ahmed, Sorry for not watching this thread recently; however I replied to your post on the west-wind forum. Thanks to those who replied instead. Having questions spread on several forums is inconvenient; we'll probably set up our own forum later this year. As Mike pointed out, for free...
  18. foxincloud

    Choosing the proper path from VFP to the web

    John, A web app runs behind a Web Server (eg. IIS, Apache, etc.). When the Web Server receives a request (through the http protocol), if an executable module is mapped to this request (generally based on the URL's extension; eg. in http://domain.com/page.ext, '.ext' is mapped to an executable...
  19. foxincloud

    AutoIncrement in view table

    can't find any solution; however your autoInc would conflict with the base table's
  20. foxincloud

    Setting variable value in a Form

    Hi, Unless PUBLIC, variables created in a VFP method disappear at the end of this method. You need to create a property (eg. "user_name") in the form (menu > form > new property) and store the value there. Then add this code to label1.refresh(): this.caption = thisForm.user_name

Part and Inventory Search

Back
Top