Update 04/03/2008
The solution (thank you Rick Schummer) is to put foxhhelp9.exe and foxhhelpps9.dll in the the common file area. (C:\progam files\common files\microsoft shared\vfp). The foxhhelp9.exe must be registered. foxhhelp9 /regserver
does the trick quite nicely.
Now the chm help...
We have a client running a VFP 9 application (Alere Manufacturing) on a Win 2003 R2 Terminal services server. I can launch the chm help from the desktop without any problem. I can't get the chm help to work in the application. When I try the F1 key or the menu selection nothing happens. No...
Thank you for the help. See attached for the solution. The last select could be deleted and just use l1docid field as a flag field.
PROCEDURE coretest
SET DELETED OFF
SELECT ;
Sllines.descrip, ;
Sllines.originli, ;
Sllines.doctype, ;
Sllines.docid, ;
Sllines.item, ...
About the design rules: The accounting product is Alere 4.2 from TIW.
1. In/not in/exists/not exists for the WHERE clause are not supported in Client Server where a table and cursor are joined.
2. Memory variables must be proceded by a quesion mark and must be private, they can't be local...
The query fails by not excluding the records in the current items cursor.
SELECT ;
* ;
FROM ;
sllines a1 ;
WHERE ;
INLIST(a1.doctype, "SO", "SR" ;
INTO
TABLE coretest
SELECT ;
a1.doctype, ;
a1.doctype, ;
a1.linenum, ;
a1.item ;
FROM ;
coretest...
I have a detail table that contains line items for sales orders. I also have a current line items cursor (same structure) that contains 1 or more line items for the current order being processed. The current line items could also exist in the line items table. My problem is this. I need to...
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.