Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Calendar data (how to access & print)
Message
 
 
À
15/02/2009 14:24:02
Mark Phillips
Erw Custom Programming Inc.
Waterford, Michigan, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Versions des environnements
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP
Network:
Windows XP
Database:
Visual FoxPro
Divers
Thread ID:
01381929
Message ID:
01381951
Vues:
42
>Hello,
>
>I would like to know if there is a way to access the foxpro calender data and print the text per day info?
>
>Thank for any help you can give me...

Hi Mark,

The VFP Calendar/Diary data is stored in the Resource file (foxuser.dbf)
USE (SET("Resource",1)) AGAIN ALIAS fr
SELECT CTOD(TRANSFORM(LEFT(Name,8), "@R ^9999/99/99")) As CalDate, Data AS Notes ;
	FROM fr ;
	WHERE type = "DATA" AND Id = "DIARYDATA" ;
	ORDER BY CalDate ;
	INTO CURSOR crsDiary
USE IN fr
--sb--
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform