>"))
36 | EndFor
37 | EndProc
38 |
39 | Procedure SimulateWork
40 | Local i
41 | For i = 1 to 10000000
42 | * Peg CPU
43 | EndFor
44 | EndProc
--------------------------------------------------------------------------------
/examples/validate_orders.PRG:
--------------------------------------------------------------------------------
1 | * Validate USA orders
2 | Set Path To "..;EXAMPLES" Additive
3 | Local loOrder
4 | Local Parallel as Parallel
5 | Parallel = NewObject("Parallel", "ParallelFox.vcx")
6 |
7 | * Get USA order data
8 | Select * from Home() + "Samples\Northwind\orders.dbf" ;
9 | where shipcountry = "USA" ;
10 | into cursor USAOrders
11 |
12 | Wait "Starting workers..." Window Nowait
13 | Parallel.StartWorkers(FullPath("validate_orders.prg"))
14 |
15 | Wait "Validating orders..." window nowait
16 | Select USAOrders
17 | Scan
18 | Scatter Name loOrder Memo
19 | Parallel.Call("ValidateOrder",,loOrder)
20 | EndScan
21 | Use in Select("USAOrders")
22 | Use in Select("Orders")
23 |
24 | Parallel.Wait()
25 | Parallel.StopWorkers()
26 | Wait clear
27 | MessageBox("Code Complete.")
28 |
29 | Procedure ValidateOrder
30 | Lparameters loOrder
31 | * Simulate validation
32 | SimulateWork()
33 | EndProc
34 |
35 | Procedure SimulateWork
36 | Local i
37 | For i = 1 to 10000000
38 | * Peg CPU
39 | EndFor
40 | EndProc
--------------------------------------------------------------------------------
/examples/validate_throttle.prg:
--------------------------------------------------------------------------------
1 | * Validate USA orders - throttle queue
2 | Set Path To "..;EXAMPLES" Additive
3 | Local loOrder
4 | Local Parallel as Parallel
5 | Parallel = NewObject("Parallel", "ParallelFox.vcx")
6 |
7 | * Get USA order data
8 | Select * from Home() + "Samples\Northwind\orders.dbf" ;
9 | where shipcountry = "USA" ;
10 | into cursor USAOrders
11 |
12 | Wait "Starting workers..." Window Nowait
13 | Parallel.StartWorkers(FullPath("validate_throttle.prg"))
14 |
15 | Wait "Validating orders..." window nowait
16 | Select USAOrders
17 | Scan
18 | Scatter Name loOrder Memo
19 | Parallel.Call("ValidateOrder",,loOrder)
20 | * Limit queue to 1000 commands
21 | If Mod(Recno(), 1000) = 0
22 | Parallel.Wait()
23 | EndIf
24 | EndScan
25 | Use in Select("USAOrders")
26 | Use in Select("Orders")
27 |
28 | Parallel.Wait()
29 | Parallel.StopWorkers()
30 | Wait clear
31 | MessageBox("Code Complete.")
32 |
33 | Procedure ValidateOrder
34 | Lparameters loOrder
35 | * Simulate validation
36 | SimulateWork()
37 | EndProc
38 |
39 | Procedure SimulateWork
40 | Local i
41 | For i = 1 to 10000000
42 | * Peg CPU
43 | EndFor
44 | EndProc
--------------------------------------------------------------------------------
/ffi/ffi.DBF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/ffi.DBF
--------------------------------------------------------------------------------
/ffi/ffi.cdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/ffi.cdx
--------------------------------------------------------------------------------
/ffi/ffi.db2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/ffi.db2
--------------------------------------------------------------------------------
/ffi/ffi.fpt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/ffi.fpt
--------------------------------------------------------------------------------
/ffi/ffi.vct:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/ffi.vct
--------------------------------------------------------------------------------
/ffi/ffi.vcx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/ffi.vcx
--------------------------------------------------------------------------------
/ffi/ffibuilder.SCX:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/ffibuilder.SCX
--------------------------------------------------------------------------------
/ffi/ffibuilder.vct:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/ffibuilder.vct
--------------------------------------------------------------------------------
/ffi/ffibuilder.vcx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/ffibuilder.vcx
--------------------------------------------------------------------------------
/ffi/foxcode.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/foxcode.exe
--------------------------------------------------------------------------------
/ffi/parfoxcode.DBF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/parfoxcode.DBF
--------------------------------------------------------------------------------
/ffi/parfoxcode.FPT:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/parfoxcode.FPT
--------------------------------------------------------------------------------
/ffi/parfoxcode.db2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/ffi/parfoxcode.db2
--------------------------------------------------------------------------------
/help/ParallelFox.CDX:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/ParallelFox.CDX
--------------------------------------------------------------------------------
/help/ParallelFox.FPT:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/ParallelFox.FPT
--------------------------------------------------------------------------------
/help/ParallelFox.hbp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/ParallelFox.hbp
--------------------------------------------------------------------------------
/help/_36c0wc03a.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | worker::CPUCount
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
17 |
ParallelFox
18 |
19 |
20 |
worker::CPUCount
21 |
22 |
23 |
24 |
25 |
26 |
Number of logical processors/cores on machine.
27 |
28 |
29 |
See also: Class worker
30 |
31 |
32 |
33 | Last Updated: 03/26/11 |
34 | © Joel Leach, 2012
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/help/_36c0wtaww.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Odds and Ends
6 |
7 |
8 |
9 |
10 |
11 | ParallelFox
12 |
13 |
14 |
Odds and Ends
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | Last Updated: 03/20/11 |
26 | © , 2011
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/help/_36p0yqx4z.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/_36p0yqx4z.htm
--------------------------------------------------------------------------------
/help/__preview_ext.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/__preview_ext.htm
--------------------------------------------------------------------------------
/help/bmp/classconstructor.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classconstructor.gif
--------------------------------------------------------------------------------
/help/bmp/classconstructor_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classconstructor_open.gif
--------------------------------------------------------------------------------
/help/bmp/classevent.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classevent.gif
--------------------------------------------------------------------------------
/help/bmp/classevent_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classevent_open.gif
--------------------------------------------------------------------------------
/help/bmp/classfield.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classfield.gif
--------------------------------------------------------------------------------
/help/bmp/classfield_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classfield_open.gif
--------------------------------------------------------------------------------
/help/bmp/classheader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classheader.gif
--------------------------------------------------------------------------------
/help/bmp/classheader_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classheader_open.gif
--------------------------------------------------------------------------------
/help/bmp/classmethod.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classmethod.gif
--------------------------------------------------------------------------------
/help/bmp/classmethod_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classmethod_open.gif
--------------------------------------------------------------------------------
/help/bmp/classmethodprotected.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classmethodprotected.gif
--------------------------------------------------------------------------------
/help/bmp/classproperty.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classproperty.gif
--------------------------------------------------------------------------------
/help/bmp/classproperty_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classproperty_open.gif
--------------------------------------------------------------------------------
/help/bmp/classpropertyprotected.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/classpropertyprotected.gif
--------------------------------------------------------------------------------
/help/bmp/database.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/database.gif
--------------------------------------------------------------------------------
/help/bmp/database_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/database_open.gif
--------------------------------------------------------------------------------
/help/bmp/datacolumn.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/datacolumn.gif
--------------------------------------------------------------------------------
/help/bmp/datacolumn_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/datacolumn_open.gif
--------------------------------------------------------------------------------
/help/bmp/datafunction.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/datafunction.gif
--------------------------------------------------------------------------------
/help/bmp/datafunction_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/datafunction_open.gif
--------------------------------------------------------------------------------
/help/bmp/datastoredproc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/datastoredproc.gif
--------------------------------------------------------------------------------
/help/bmp/datastoredproc_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/datastoredproc_open.gif
--------------------------------------------------------------------------------
/help/bmp/datatable.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/datatable.gif
--------------------------------------------------------------------------------
/help/bmp/datatable_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/datatable_open.gif
--------------------------------------------------------------------------------
/help/bmp/dataview.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/dataview.gif
--------------------------------------------------------------------------------
/help/bmp/dataview_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/dataview_open.gif
--------------------------------------------------------------------------------
/help/bmp/delegate.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/delegate.gif
--------------------------------------------------------------------------------
/help/bmp/delegate_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/delegate_open.gif
--------------------------------------------------------------------------------
/help/bmp/enum.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/enum.gif
--------------------------------------------------------------------------------
/help/bmp/enum_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/enum_open.gif
--------------------------------------------------------------------------------
/help/bmp/header.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/header.gif
--------------------------------------------------------------------------------
/help/bmp/header_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/header_open.gif
--------------------------------------------------------------------------------
/help/bmp/helpicons.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/helpicons.bmp
--------------------------------------------------------------------------------
/help/bmp/images/alerticon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/images/alerticon.gif
--------------------------------------------------------------------------------
/help/bmp/images/clock.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/images/clock.gif
--------------------------------------------------------------------------------
/help/bmp/images/dotnet.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/images/dotnet.gif
--------------------------------------------------------------------------------
/help/bmp/images/fox.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/images/fox.gif
--------------------------------------------------------------------------------
/help/bmp/images/help.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/images/help.gif
--------------------------------------------------------------------------------
/help/bmp/images/newproject.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/images/newproject.gif
--------------------------------------------------------------------------------
/help/bmp/images/newwave.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/images/newwave.jpg
--------------------------------------------------------------------------------
/help/bmp/images/toolimage.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/images/toolimage.gif
--------------------------------------------------------------------------------
/help/bmp/images/wwhelplogo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/images/wwhelplogo.gif
--------------------------------------------------------------------------------
/help/bmp/images/wwtoollogo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/images/wwtoollogo.jpg
--------------------------------------------------------------------------------
/help/bmp/index.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/index.gif
--------------------------------------------------------------------------------
/help/bmp/index_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/index_open.gif
--------------------------------------------------------------------------------
/help/bmp/interface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/interface.gif
--------------------------------------------------------------------------------
/help/bmp/interface_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/interface_open.gif
--------------------------------------------------------------------------------
/help/bmp/main.tb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/main.tb
--------------------------------------------------------------------------------
/help/bmp/minus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/minus.gif
--------------------------------------------------------------------------------
/help/bmp/namespace.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/namespace.gif
--------------------------------------------------------------------------------
/help/bmp/namespace_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/namespace_open.gif
--------------------------------------------------------------------------------
/help/bmp/plus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/plus.gif
--------------------------------------------------------------------------------
/help/bmp/project.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/project.gif
--------------------------------------------------------------------------------
/help/bmp/search.avi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/search.avi
--------------------------------------------------------------------------------
/help/bmp/seealso.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/seealso.gif
--------------------------------------------------------------------------------
/help/bmp/static.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/static.gif
--------------------------------------------------------------------------------
/help/bmp/stockhelpicons.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/stockhelpicons.bmp
--------------------------------------------------------------------------------
/help/bmp/style.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/style.gif
--------------------------------------------------------------------------------
/help/bmp/topic.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/topic.gif
--------------------------------------------------------------------------------
/help/bmp/topic_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/topic_open.gif
--------------------------------------------------------------------------------
/help/bmp/unknown.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/unknown.gif
--------------------------------------------------------------------------------
/help/bmp/unknown_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/unknown_open.gif
--------------------------------------------------------------------------------
/help/bmp/weblink.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/weblink.gif
--------------------------------------------------------------------------------
/help/bmp/weblink_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/weblink_open.gif
--------------------------------------------------------------------------------
/help/bmp/webservice.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/webservice.gif
--------------------------------------------------------------------------------
/help/bmp/webservice_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/webservice_open.gif
--------------------------------------------------------------------------------
/help/bmp/whatsnew.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/whatsnew.gif
--------------------------------------------------------------------------------
/help/bmp/whatsnew_open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/whatsnew_open.gif
--------------------------------------------------------------------------------
/help/bmp/wwhelp.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/wwhelp.gif
--------------------------------------------------------------------------------
/help/bmp/wwhelpicons.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/bmp/wwhelpicons.bmp
--------------------------------------------------------------------------------
/help/index.htm:
--------------------------------------------------------------------------------
1 | ParallelFox
2 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | This page uses frames, but your browser doesn't support them. View the non-frames version .
25 |
26 |
27 |
--------------------------------------------------------------------------------
/help/lookups.DBF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/lookups.DBF
--------------------------------------------------------------------------------
/help/parallelfox.chm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/parallelfox.chm
--------------------------------------------------------------------------------
/help/parallelfox_recover.FPT:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/parallelfox_recover.FPT
--------------------------------------------------------------------------------
/help/parallelfox_recover.hbp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/parallelfox_recover.hbp
--------------------------------------------------------------------------------
/help/templates/EARTH/classevent.wcs:
--------------------------------------------------------------------------------
1 | <% lcSeeAlsoTopics = oHelp.InsertSeeAlsoTopics() %>
2 | <%= ExecuteTemplate("Header_template.wcs") %>
3 |
4 |
5 |
6 | <%= oHelp.FormatHTML(oHelp.oTopic.Body) %>
7 |
8 |
9 | <% if !EMPTY(oHelp.oTopic.Syntax) %>
10 |
11 |
12 |
13 | <%= oHelp.FormatHtml(oHelp.oTopic.Syntax) %>
14 |
15 |
16 | <% endif %>
17 |
18 | <% IF !EMPTY(oHelp.oTopic.Exceptions) %>
19 |
Exceptions
20 | <%= strtran( InsertExceptions(oHelp),"b>","i>") %>
21 | <% ENDIF %>
22 |
23 | <% IF !EMPTY(oHelp.oTopic.Remarks) %>
24 |
Remarks
25 | <%= oHelp.FormatHTML(oHelp.oTopic.Remarks) %>
26 | <% ENDIF %>
27 |
28 | <% IF !EMPTY(oHelp.oTopic.Example) %>
29 |
Example
30 |
<%= oHelp.FormatHTML(oHelp.oTopic.Example)%>
31 | <% ENDIF %>
32 |
33 |
34 | <% if !EMPTY(oHelp.oTopic.SeeAlso) %>
35 |
See also:
36 | <%= lcSeeAlsoTopics %>
37 | <% endif %>
38 |
39 |
40 | <%= ExecuteTemplate("Footer_Template.wcs") %>
--------------------------------------------------------------------------------
/help/templates/EARTH/classfield.wcs:
--------------------------------------------------------------------------------
1 | <% lcSeeAlsoTopics = oHelp.InsertSeeAlsoTopics() %>
2 | <%= ExecuteTemplate("Header_template.wcs") %>
3 |
4 |
5 |
6 | <%= oHelp.FormatHTML(oHelp.oTopic.Body) %>
7 |
8 |
9 | <% if !EMPTY(oHelp.oTopic.Syntax) %>
10 |
11 |
12 | <%= oHelp.FormatHtml(oHelp.oTopic.Syntax) %>
13 |
14 | <% endif %>
15 |
16 | <% IF !EMPTY(oHelp.oTopic.Parameters) %>
17 |
Default Value
18 | <%= oHelp.FormatHTML(strtran(oHelp.oTopic.Parameters,"b>","i>"))%>
19 | <% ENDIF %>
20 |
21 | <% IF !EMPTY(oHelp.oTopic.Exceptions) %>
22 |
Exceptions
23 | <%= strtran( InsertExceptions(oHelp),"b>","i>") %>
24 | <% ENDIF %>
25 |
26 | <% IF !EMPTY(oHelp.oTopic.Remarks) %>
27 |
Remarks
28 | <%= oHelp.FormatHTML(oHelp.oTopic.Remarks) %>
29 | <% ENDIF %>
30 |
31 | <% IF !EMPTY(oHelp.oTopic.Example) %>
32 |
Example
33 |
<%= oHelp.FormatHTML(oHelp.oTopic.Example)%>
34 | <% ENDIF %>
35 |
36 | <% IF !EMPTY(oHelp.oTopic.SeeAlso) %>
37 |
See also:
38 | <%= lcSeeAlsoTopics %>
39 | <% ENDIF %>
40 |
41 |
42 |
43 | <%= ExecuteTemplate("Footer_Template.wcs") %>
--------------------------------------------------------------------------------
/help/templates/EARTH/classproperty.wcs:
--------------------------------------------------------------------------------
1 | <% lcSeeAlsoTopics = oHelp.InsertSeeAlsoTopics() %>
2 | <%= ExecuteTemplate("Header_template.wcs") %>
3 |
4 |
5 |
6 | <%= oHelp.FormatHTML(oHelp.oTopic.Body) %>
7 |
8 |
9 | <% if !EMPTY(oHelp.oTopic.Syntax) %>
10 |
11 |
12 | <%= oHelp.FormatHtml(oHelp.oTopic.Syntax) %>
13 |
14 | <% endif %>
15 |
16 | <% IF !EMPTY(oHelp.oTopic.Parameters) %>
17 |
Default Value
18 | <%= oHelp.FormatHTML(strtran(oHelp.oTopic.Parameters,"b>","i>"))%>
19 | <% ENDIF %>
20 |
21 | <% IF !EMPTY(oHelp.oTopic.Exceptions) %>
22 |
Exceptions
23 | <%= strtran( InsertExceptions(oHelp),"b>","i>") %>
24 | <% ENDIF %>
25 |
26 | <% IF !EMPTY(oHelp.oTopic.Remarks) %>
27 |
Remarks
28 | <%= oHelp.FormatHTML(oHelp.oTopic.Remarks) %>
29 | <% ENDIF %>
30 |
31 | <% IF !EMPTY(oHelp.oTopic.Example) %>
32 |
Example
33 |
<%= oHelp.FormatHTML(oHelp.oTopic.Example)%>
34 | <% ENDIF %>
35 |
36 | <% IF !EMPTY(oHelp.oTopic.SeeAlso) %>
37 |
See also:
38 | <%= lcSeeAlsoTopics %>
39 | <% ENDIF %>
40 |
41 |
42 |
43 | <%= ExecuteTemplate("Footer_Template.wcs") %>
--------------------------------------------------------------------------------
/help/templates/EARTH/database.wcs:
--------------------------------------------------------------------------------
1 | <% lcSeeAlsoTopics = oHelp.InsertSeeAlsoTopics() %>
2 | <%= ExecuteTemplate("Header_Template.wcs") %>
3 |
4 |
5 |
6 | <%= oHelp.FormatHTML(oHelp.oTopic.Body) %>
7 |
8 |
9 | <% IF !EMPTY(oHelp.oTopic.Remarks) %>
10 |
11 |
Remarks
12 | <%= oHelp.FormatHTML(oHelp.oTopic.Remarks) %>
13 | <% ENDIF %>
14 |
15 | <% IF !EMPTY(oHelp.oTopic.Example) %>
16 |
17 |
Example
18 |
<%= oHelp.FormatHTML(oHelp.oTopic.Example)%>
19 | <% ENDIF %>
20 |
21 |
22 | <%= ChildTopicsTableHtml(oHelp,"DATATABLE","Tables","oHelp.FormatHtml(oHelp.oTopic.Body)",,.f.,"Width='95%'") %>
23 |
24 | <%= ChildTopicsTableHtml(oHelp,"DATASTOREDPROC","Stored Procedures","oHelp.FormatHtml(oHelp.oTopic.Body)",,.f.,"Width='95%'") %>
25 |
26 | <% if !EMPTY(oHelp.oTopic.SeeAlso) %>
27 |
See also
28 | <%= lcSeeAlsoTopics %>
29 | <% endif %>
30 |
31 |
32 | <%= ExecuteTemplate("Footer_Template.wcs") %>
--------------------------------------------------------------------------------
/help/templates/EARTH/datacolumn.wcs:
--------------------------------------------------------------------------------
1 | <% lcSeeAlsoTopics = oHelp.InsertSeeAlsoTopics() %>
2 | <%= ExecuteTemplate("Header_Template.wcs") %>
3 |
4 |
5 |
6 | <%= oHelp.FormatHTML(oHelp.oTopic.Body) %>
7 |
8 |
9 |
10 | <% *** Parameters are overloaded to hold Data Type Info
11 | IF !EMPTY(oHelp.oTopic.Parameters) %>
12 |
13 |
Data Type
14 | <%= oHelp.FormatHTML(oHelp.oTopic.Parameters)%>
15 | <% ENDIF %>
16 |
17 | <% IF !EMPTY(oHelp.oTopic.Returns) %>
18 |
19 |
Attributes
20 | <%= oHelp.FormatHTML(oHelp.oTopic.Returns)%>
21 | <% ENDIF %>
22 |
23 | <% IF !EMPTY(oHelp.oTopic.Remarks) %>
24 |
25 |
Remarks
26 | <%= oHelp.FormatHTML(oHelp.oTopic.Remarks) %>
27 | <% ENDIF %>
28 |
29 | <% IF !EMPTY(oHelp.oTopic.Example) %>
30 |
31 |
Example
32 |
<%= oHelp.FormatHTML(oHelp.oTopic.Example)%>
33 | <% ENDIF %>
34 |
35 | <% if !EMPTY(oHelp.oTopic.SeeAlso) %>
36 |
37 |
See also
38 | <%= lcSeeAlsoTopics %>
39 | <% endif %>
40 |
41 |
42 | <%= ExecuteTemplate("Footer_Template.wcs") %>
--------------------------------------------------------------------------------
/help/templates/EARTH/datastoredproc.wcs:
--------------------------------------------------------------------------------
1 | <% lcSeeAlsoTopics = oHelp.InsertSeeAlsoTopics() %>
2 | <%= ExecuteTemplate("Header_Template.wcs") %>
3 |
4 |
5 |
6 | <%= oHelp.FormatHTML(oHelp.oTopic.Body) %>
7 |
8 |
9 | <% IF !EMPTY(oHelp.oTopic.Remarks) %>
10 |
11 |
Remarks
12 | <%= oHelp.FormatHTML(oHelp.oTopic.Remarks) %>
13 | <% ENDIF %>
14 |
15 | <% IF !EMPTY(oHelp.oTopic.Example) %>
16 |
17 |
Example
18 |
<%= oHelp.FormatHTML(oHelp.oTopic.Example)%>
19 | <% ENDIF %>
20 |
21 | <% if !EMPTY(oHelp.oTopic.SeeAlso) %>
22 |
23 |
See also
24 | <%= lcSeeAlsoTopics %>
25 | <% endif %>
26 |
27 |
28 | <%= ExecuteTemplate("Footer_Template.wcs") %>
--------------------------------------------------------------------------------
/help/templates/EARTH/earth.tid:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VFPX/ParallelFox/96c442174341ab83ca8df645e79b93a12d5b9dde/help/templates/EARTH/earth.tid
--------------------------------------------------------------------------------
/help/templates/EARTH/footer_template.wcs:
--------------------------------------------------------------------------------
1 |
2 | Last Updated: <%= TTOD(oHelp.oTopic.Updated) %> |
3 | © <%= oHelp.cProjCompany %>, <%= Year(Date()) %>
4 |
5 |