Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Help with this code
Message
De
05/11/2004 11:53:24
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Help with this code
Versions des environnements
Visual FoxPro:
VFP 6 SP5
OS:
Windows '98
Database:
Visual FoxPro
Divers
Thread ID:
00958554
Message ID:
00958554
Vues:
42
with this code i'm trying to do the next thing:
I need to determinate the work day(monday, tuestay, wednesday, thursday and wednesday) and the labour time from 8 am to 5 pm, if so, place in excel "5x8" but if not i have to place "7x24".
i have to determinate the weekend (Sunday and Saturdays) and place the "7x24" in excel.

But it doesn't work at all, can you help me to check it out?
Thanks
  if  upper(tablest.dia)="MONDAY" OR upper(tablest.dia)="TUESDAY" OR upper(tablest.dia)="WEDNESDA" OR upper(tablest.dia)="THURSDAY" OR UPPER(tablest.dia)="FRIDAY" then
         if hour(tablest.finicio)>=8 and hour(tablest.finicio)<17 then
          XLSheet.Cells(i+1,21).value =  "5x8"  &&tablest.jornada
         endif 
       ELSE
       *if UPPER(tablest.dia)="SATURDAY" or UPPER(tablest.dia)="SUNDAY" then
	         if hour(tablest.finicio)>=8 and hour(tablest.finicio)<17 then 
	            XLSheet.Cells(i+1,21).value =  "7x24"   
	         endif
        *  else
             if (hour(tablest.finicio)>=17 and hour(tablest.finicio)<0) or (hour(tablest.finicio)>=0 and hour(tablest.finicio)<8) then 
	            XLSheet.Cells(i+1,21).value =  "7x24"   
	         endif
       endif 
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform