ActiveX Date Type as YYYYMMDDHHMMSS
Posted: Sat Nov 21, 2020 1:28 am
hi,
i try to "read" Outlook Calendar Data and have a Problem while get "only Date" ... not "DateAsString" in YYYYMMDDHHMMSS Format
now i got Start Date but not Time when Appointment start
need some help please
p.s.
have this "old" HB_FUNC() ... don“t remember what i have used it for
i try to "read" Outlook Calendar Data and have a Problem while get "only Date" ... not "DateAsString" in YYYYMMDDHHMMSS Format
Code: Select all
cStringStart := oItem:Start
p.s.
have this "old" HB_FUNC() ... don“t remember what i have used it for
Code: Select all
HB_FUNC( DATEASLONG )
{
PHB_ITEM pDate = hb_param( 1, HB_IT_DATE );
if( pDate )
hb_retnl( hb_itemGetDL( pDate ) );
else
hb_retnl( 0 );
}
Code: Select all
HB_FUNC( DATEASDOUBLE )
{
PHB_ITEM pDate = hb_param( 1, HB_IT_DATE );
if( pDate )
hb_retnd( hb_itemGetDD( pDate ) );
else
hb_retnd( 0 );
}