Keyboard Shortcuts
Likes
- MadFox
- Messages
Search
Re: RAD
Eric - you are likely correct. Like word processors, what ever you know you swear by and not, swear at - ala Word Star hell and Word Imperfect DOS.
toggle quoted message
Show quoted text
However, each language likely has strengths and VFP would be its focus on data and the ease that one can hybred between pure opps and pure procedural. I'll spill more stuff here as I build the case. I do appreicate the thought. Here's one other observation - and I'm not sure what's it's due to - but I find Java "boring" and VFP exciting. Peter d. I believe it's supported until 2010 if they froze development at VFP8, but new versions extend that time. |
|||||||||||||||
Re: RAD
Eric - you are likely correct. Like word processors, what ever you know you swear by and not, swear at - ala Word Star hell and Word Imperfect DOS.
toggle quoted message
Show quoted text
However, each language likely has strengths and VFP would be its focus on data and the ease that one can hybred between pure opps and pure procedural. I'll spill more stuff here as I build the case. I do appreicate the thought. Here's one other observation - and I'm not sure what's it's due to - but I find Java "boring" and VFP exciting. Peter d. I believe it's supported until 2010 if they froze development at VFP8, but new versions extend that time. |
|||||||||||||||
Re: RAD
Awesome Dave - thanks for the help.
toggle quoted message
Show quoted text
I'll give them a look. Peter d. Peter, |
|||||||||||||||
Re: News on Eclipse 3.0 IDE
Eric Selje
开云体育Good info, thanks.? I didn't realize that the Lotus Workbench was based on Eclipse but that's interesting.?Near the end they mention the possibility of merging Eclipse with Sun's NetBeans (which is also good), but I hope they remain separate and competitive.? Between them and Visual Studio, development environments can only get better.? I see there's a Visual SourceSafe plug-in for Eclipse now too.? Cool. Eric |
|||||||||||||||
Re: RAD
Eric Selje
开云体育I believe it's supported until 2010 if they froze development at VFP8, but new versions extend that time.The question that needs to be asked is, what's the best tool for the job?? And as much as I love VFP, I'd bet if you knew Java as well you'd be nearly as productive. E |
|||||||||||||||
Re: E-mail from VFP
Eric Selje
开云体育I use the SMTP control from WestWind (which might even be free).? eMailing is as simple as ....oMail = NewObject("wwipstuff.smtp") oMail.cSubject = "This is the subject" (repeat for other fields) oMail.Server = (smtp server name) oMail.Send() (This may not be precise, as I don't have the helpfile available and I've actually subclassed this so it reads the servername from a table, but you get the idea.? Also, it works with any email system.) Hope this helps, Eric Chad J. Lemmer wrote:
|
|||||||||||||||
Re: E-mail from VFP
Lorentzen David F.
开云体育Me
too.
-= Dave David F. Lorentzen
|
|||||||||||||||
Re: E-mail from VFP
PJ Fernandez
toggle quoted message
Show quoted text
|
|||||||||||||||
Re: RAD
Lorentzen David F.
开云体育Peter,
?
I
Googled "VFP Success Stories" and got some of these:
?
?
?
And
this is on the MS site:
and
here is their support policy:
?
Hope
some of these links help.
-= Dave David F. Lorentzen
|
|||||||||||||||
Re: RAD
开云体育PJ -
?
I too have evolved my own framework that directly applies to 80% of the needs by simply setting class properties on the form and the custom controls.
?
However - I need:
?
-More quantified information on VFP dev times
-Fortune 1000 company list that is using VFP
?
also - MSFT guaranteed support until 2008 or 2010 or 2012 for VFP - do you recall which year?
?
Peter d.
|
|||||||||||||||
Intllisense code for SEL with dropdown; per Eric
pj77fern
LPARAMETER oFoxCode
LOCAL X, cReturn, nUsed * Create array of open tables nUsed =AUSED(aTables) IF nUsed = 0 * Return a value oFoxCode.valueType = 'V' cReturn = 'USE ~' ELSE * Tell IntelliSense that you want a dropdown list to appear oFoxCode.valueType = 'L' * Build the list using oFoxCode's built in properties DIMENSION oFoxcode.Items[m.nUsed,2] FOR i = 1 TO m.nUsed oFoxcode.Items[m.i,1] = aTables[i, 1] oFoxcode.Items[m.i,2] = "" ENDFOR * Return the prefix for the results of the list cReturn = "SELECT" ENDIF * Return either USE or SELECT <list> RETURN cReturn |
|||||||||||||||
RAD
PJ Fernandez
开云体育"My company has J2EE as a standard. Although a
number of VFP apps exist for both Desktop and Intra-Web
in the Engineering division, it's not a "standard" so is slowly sinking. Does
anyone recall any published studies talking about the development time of VFP
over say a J2EE tool. Or, of RAD ability with VFP in general? I'm building a
case - sort of the last stand - my own Little BigHorn
here. "
Well Peter D., ?
I have the user
interface classed to the point of just dropping controls on the form.?
Coding is only done for assignment of source control and validation before
saving.
?
Anything else is
handled by the classes I wrote 3 years ago.? This affords me a turnaround
of a day to add a new table with a data entry form.??I will consider
that RAD!
?
P.J. Fernandez, MCSD
608-259-8004 Ext. 255
608-235-6950 (Cell)
? |
|||||||||||||||
Re: MadFox Monthly Meeting, 6/22/2004, 5:30 pm
Jim Tooley
toggle quoted message
Show quoted text
|
|||||||||||||||
Re: MadFox Monthly Meeting, 6/22/2004, 5:30 pm
Stein Goering
开云体育Clif and Stein plan to make the trek… ? From: PJ Fernandez
[mailto:pfernandez@...]
Sent: Tuesday, June 22, 2004 9:35 AM To: madfox_vfp@... Subject: RE: [madfox_vfp] MadFox Monthly Meeting, 6/22/2004, 5:30 pm ? Anybody else? ? P.J. Fernandez, MCSD 608-259-8004 Ext. 255 608-235-6950 (Cell)
|
|||||||||||||||
Re: MadFox Monthly Meeting, 6/22/2004, 5:30 pm
PJ Fernandez
toggle quoted message
Show quoted text
|
|||||||||||||||
Re: MadFox Monthly Meeting, 6/22/2004, 5:30 pm
Lorentzen David F.
开云体育I'll
be there.
-= Dave David F. Lorentzen
|
|||||||||||||||
Re: Eclipse
Eric Selje
开云体育I haven't, but that looks great!? A complete J2EE development workbench right on your desktop...very nice!? I was about to install a Tomcat plug-in for Eclipse for checking out JSPs and Servlets within Eclipse, but this looks even better.? Thanks for the heads up!Eric Foxprotalk@... wrote: Eric: Have you tried Myeclipse plugin? If so - what are your impressions. I've used Eclipse and like it - very well thought out and free. But, it's lacking in JSP viewing, etc - stuff that I've read that MyEclipse takes care of for $30. peter d. ------------------------ Yahoo! Groups Sponsor --------------------~--> Yahoo! Domains - Claim yours for only $14.70 --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: <*> To unsubscribe from this group, send an email to: madfox_vfp-unsubscribe@... <*> Your use of Yahoo! Groups is subject to: |