Hello :)
The following questions are currently involved in a future planning session at a company conference involving the purchase of Microsoft .NET with/without Microsoft Visual Foxpro ... please contribute:
What level of functionality does Microsoft Visual Basic provide for database...
ugh ... i've seen their code ... bloated redraw ... HUGE! ;)
last time i checked they use arrays to "simulate" browse window integration ...still the same? hehehe
oh well .. have fun :)
Steven S
Professional Foxpro developer for DOS/Windows/Unix platforms since 1989.
clogic@yahoo.com
Personally I think the last reliable, inventive programming Microsoft did was Word 2.0 ... everything since has either been bought from companies with real programmers (ie Fox) or butchered by their inbred hackers.
VFP is junk since 3.0
Bloatware, slow, too dependant on OS and really, not that...
is this for a user or the e-mail has to actually be sent immediately??
if by a user ...
PRIVATE cFile, hUrl
cFile = SYS(2023) + "\" + SYS(3) + ".url"
IF FILE( m.cFile )
DELETE FILE ( m.cFile )
ENDIF
hUrl = FCREATE( m.cFile )
IF m.hUrl < 0
WAIT WINDOW "Unable to...
If you develop in 640, change the 800.00 to 640.00
In the main program:
MODIFY WINDOW screen FONT "MS Sans Serif", 8 STYLE "N"
CLEAR
PUBLIC GUIf
GUIf = ( SYSMETRIC(1) / 800.00 ) * ;
( 5 / FONTMETRIC(6,'MS Sans Serif',8) )
then change
@ 4.857,11.758 GET m.nField ...
You don't need to know what the user's browser is.
You can take advantage of file associations which are already in place. Try this:
PRIVATE cUrl, cFile, hUrl
cUrl = 'http://www.BillboardPages.com'
cFile = SYS(2023) + "\" + SYS(3) + ".url"
IF FILE( m.cFile )
DELETE FILE (...
Well Well Well ... :)
I am a HUGE user of GenscrnX, 3D and Tabs (never liked InBrowse). In fact I have modified all three of these drivers to allow the following features:
- windows color schemes bleed thru to bg, 3d and tab effects :) (not the simple grey drab background) :)
- tabs are more...
From a program, include SAVE in the BROWSE command.
ie
BROWSE ;
FIELDS status :H='Status', ;
descript :H='Status Description' ;
NOMODIFY NOAPPEND NODELETE ;
SAVE ;
WINDOW 'stat';
FONT 'MS Sans Serif', 10
Steven S
Professional Foxpro developer for...
Just bring it into FPW 2.6 ;)
And ... SET PRINT ON/OFF is NOT the same as the SET PRINTER TO command ...
ON/OFF turns print on and off ... TO directs to a printer and then closes that 'connection'.
I suggest you follow all the very good advice above ...
SET PRINT ON
{your print stuff}
SET...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.