New Post: Learning : Foxpro into Web
Thanks Claudefox. I have been looking for foxpro online for quite sometime. I never thought this works for me, although it is a rewrite kind of code, but it does provide demo for download, what a great...
View ArticleNew Post: Entering parent and one or more child records on same page
Hello, I'm working on an AVFP site in which a user needs to enter (or edit) a single parent/header record along with one or more child/detail records on the same page. I'm struggling a bit with how to...
View ArticleNew Post: Entering parent and one or more child records on same page
Sounds like it should be similar to the new Master-Detail example. Have you looked at that? Just change the display fields to Text boxes and you should be able to take those values and use FoxPro as...
View ArticleNew Post: Entering parent and one or more child records on same page
If you're talking about grabbing the entered variables out of a grid that have been submitted as a Form, then yes you may have to get a little tricky. What I've done in the past and is also in the...
View ArticleNew Post: Entering parent and one or more child records on same page
And here's an example SaveOrder I did a few years back on a complicated order form in a grid like structure:FUNCTION SaveOrder lctable=oSession.VALUE("account") IF ISNULL(lctable) &&9/3 CF...
View ArticleNew Post: Entering parent and one or more child records on same page
Thanks Claude, from your examples, it looks like I'm on the right track. I've basically created a table with a row for each child record, and made those form fields that can be edited. How about adding...
View ArticleNew Post: Entering parent and one or more child records on same page
Maybe a button or link for 'Add New' and either re-display in the grid with empty text boxes or show a new page like the Detail page in the example for data entry. Then Append the values with regular...
View ArticleNew Post: Entering parent and one or more child records on same page
Ok, I found an example of how to dynamically add rows to a table with a Javascript: http://www.codeproject.com/Articles/14995/Dynamically-add-and-remove-rows-in-a-HTML-table My problem now is that I...
View ArticleNew Post: Entering parent and one or more child records on same page
Think I've found a solution. I just call oHTML.htmldropdown(), and store the resulting strings to a couple of hidden input boxes. Then, from within my Javascript, I can use...
View ArticleNew Post: location of activevfp.dll
I want the activevfp.dll (and the Foxpro-runtime vfp9t.dll and all others) not in the same directory as default.aspx. What do I have to do ? I think I have to change something in webapp.manifest. I...
View ArticleNew Post: location of activevfp.dll
I think I tried what you're doing but couldn't get it either. However, I didn't spend much time on it. Let us know if you get it to work this way.
View ArticleNew Post: a tutorial
it would of great help if somebody uploaded a step by step tutorial of creating a new simple program conncting fvp with web via iis with some screenshots. Video will be greatly appreciated.. Thank you...
View ArticleNew Post: location of activevfp.dll
Hello Claude, I found a semi-solution. You have to let "activevfp.dll.manifest" in the main directory ( where web.config and default.aspx resides ). On the line beginning with "<file name" you add...
View ArticleNew Post: location of activevfp.dll
Thanks! That's good progress... so close.... There must be a solution for msvcr71.dll which is just used by the VFP runtime. I thought VFP would first look for it in the same directory where it resides...
View ArticleNew Post: OpenID Support
I've only given the broader issue some thought: we should be able to drop-in this functionality (OpenID, FaceBook login,etc) like the Nuget stuff (http://nuget.org/) or as they do in WordPress plugins....
View ArticleNew Post: location of activevfp.dll
So, now it works. Somtimes you don't see the most obvious. Like I supposed, the "activevfp.dll.manifest" is not needed for running the application. In fact it caused that trouble with the...
View ArticleNew Post: location of activevfp.dll
Thanks! Could you zip up that directory and send me those files? - claude.fox@cox.net I'll include this in the next release. It'll make everything a lot tidier in the root directory.
View Article