by hgrimm on Mon Jan 16, 2006 10:29 am
Hallo Joe,
I made some first experiments and found some problems in receiving the strings out of the GetDate()
I made the struct accordingly to the 3i2s9i:
struct Appt {
int dat; //0
int stim; //1
int etim; //2
string desc; //3
string not; //4
int al_en; //5
int al_adv_t; //6
int al_adv_u; //7
int rep; //8
int rep_end; //9
int rep_inter; //10
int rep_on_X; //11
int st_of_wk; //12
int except; //13
};
Appt apptmem[STOLIM];
Appt* dax;
...
...
while(GetDate(i,day,&dax[n])) {
text(10,120,i+" dard: "+dax[n].dat+":"+dax[n].desc+"::"+dard[5]); //debug
text(10,130,i+" appt: "+dax[n].not+" :: "+dax[n].rep); //debug
Here now the integer numbers are coming out correct
BUT the 2 strings are EMPTY.
Many thanks,
Herbert.