Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Visualizacion de informes
Message
 
 
To
07/06/2005 17:55:29
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Environment versions
Visual FoxPro:
VFP 8
OS:
Windows XP SP1
Network:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01020708
Message ID:
01021305
Views:
15
>all right i try read for that themic but i don't understand please help. yu've msn???

The following sample code should get you started
CREATE CURSOR Test (dia C(20), hini N(4), hfin N(4), materia C(20))
INSERT INTO Test VALUES("lunes", 1000, 1100, "logica")
INSERT INTO Test VALUES("martes", 1000, 1100, "matematicas")
INSERT INTO Test VALUES("miercoles", 100, 200, "programacion 1")

SELECT ;
		PADR( TRANSFORM(hini, "99:99") + "-" + ;
			  TRANSFORM(hfin, "99:99"),11) AS hours, ;
		dia, ;
		materia;
	FROM Test ;
	INTO CURSOR crsResult NOFILTER	
	
DO (_Genxtab)

BROWSE LAST NOWAIT 	
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform