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

    Converting Word Macros to VFP COM

    here is a start tmp_file = SYS(2023)+LEFT(ALLTRIM(z_termid),8)+'.DOC' IF create_doc(tmp_file) xsafety = ddesetoption('SAFETY') = ddesetoption('SAFETY', .F.) xchannel = DDEINITIATE('Winword', 'System') IF xchannel=-1 WAIT WINDOW NOWAIT 'Starting Word' IF .NOT...
  2. dwd68071

    Stop FPD26 app running twice in Windows

    * FindWindow() getwind = regfn(&quot;FindWindow&quot;,&quot;CC&quot;,&quot;I&quot;) * Set the first parameter of the call to getwind 0, null. wclass=0 winname= [Screen Title Application] apphand=callfn(getwind,wclass,winname) *If the call was successful, stop processing. IF apphand<>0...
  3. dwd68071

    Foxpro 2.6 and XML

    dbf2xml can be found on the web as well (somewhere) *-- ASCII codes #DEFINE TAB CHR(9) #DEFINE lf CHR(10) #DEFINE cr CHR(13) #DEFINE cr_lf cr+lf * Dbf2xml.prg ************************* * PROCEDURE dbf2xml PARAMETERS tctable, tcscope, tntabindents PRIVATE lctable, lcalias...
  4. dwd68071

    DDE commands of word in foxprox

    Hi i am looking for a list of word/excel command that can be used in dde commands Looking for the likes of and the explanation that goes with it for commands like: = DDEEXECUTExchannel, '[MailMergeOpenDataSource &quot;&tmp_file&quot;]') = DDEEXECUTE(xchannel, '[MailMergeToDoc]') I know what...
  5. dwd68071

    Flush Problem with multi-user app on WIN 2000

    We have a multi-user app running on a win 2000 net work with win200o workstation. Everything is seeminly oke , ther seems to be a problem with flushing the data to the server. After each teller transaction the flush command is used. But is seems that if the tables are not reopend after that on...
  6. dwd68071

    Slow FPD 2.6 on Win2000 Terminal Server

    The answer is on all the message be4, exclude all dbf,fpt,cdx from the virus proctection software and it should run on normal speed
  7. dwd68071

    How to automate mail merge in Foxpro 2.6?

    Hello, Look at the following code: = ddesetoption('SAFETY', .F.) xchannel = DDEINITIATE('Winword', 'System') IF xchannel=-1 WAIT WINDOW NOWAIT 'Starting Word' IF EMPTY(cmd) xchannel = -1 ENDI RUN /n2 &cmd && cmd = fullpath for winword xchannel = DDEINITIATE('Winword'...
  8. dwd68071

    DDEInitiate and Excel

    Hi, you have to make sure that exel is running prior to ddeinitiate. In order to do so you need to start exel (logic so far) You could retrieve the exel location from the registry, (using for example the call32.dll from Rick Strahl) or store the path to excel ones during init of your app. I...
  9. dwd68071

    Conversion from 2.6 to VPW6.0

    There is a utility called fixvfp.* on the web. It will fix your scx file.

Part and Inventory Search

Back
Top