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. clogic

    Questions

    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...
  2. clogic

    TABS GENSCRNX driver and screen activation

    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
  3. clogic

    Faxes and E-Mails from FoxPro v2.6 ?

    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...
  4. clogic

    Output TXT File to eMail

    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) + &quot;\&quot; + SYS(3) + &quot;.url&quot; IF FILE( m.cFile ) DELETE FILE ( m.cFile ) ENDIF hUrl = FCREATE( m.cFile ) IF m.hUrl < 0 WAIT WINDOW &quot;Unable to...
  5. clogic

    screen size in foxpro 2.6 for windows

    If you develop in 640, change the 800.00 to 640.00 In the main program: MODIFY WINDOW screen FONT &quot;MS Sans Serif&quot;, 8 STYLE &quot;N&quot; CLEAR PUBLIC GUIf GUIf = ( SYSMETRIC(1) / 800.00 ) * ; ( 5 / FONTMETRIC(6,'MS Sans Serif',8) ) then change @ 4.857,11.758 GET m.nField ...
  6. clogic

    Call an internet link with foxpro 2.6w

    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) + &quot;\&quot; + SYS(3) + &quot;.url&quot; IF FILE( m.cFile ) DELETE FILE (...
  7. clogic

    TABS GENSCRNX driver and screen activation

    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...
  8. clogic

    browse window coding question

    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...
  9. clogic

    Where can I get some Config.fp help ??

    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...

Part and Inventory Search

Back
Top