Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » VC++ / MFC » Millisekunden

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
22.11.2005, 12:05 Uhr
killcommander



Hab ein kleines problem


C++:

int millisekunde;
CTime curTime = CTime::GetCurrentTime;

millisekunde = curTime.MILLISECEOND(); // GIBTS NICHT





was kann ich tun
--
Achtung NOOBIE ALARM
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
22.11.2005, 16:08 Uhr
~Flapsi01
Gast


Hallo !

CTime unterstützt keine Millisekunden. Such mal in der Hilfe unter "_ftime, _ftime64". Diese Funktion liefert Millisekunden.

Gruß

Flapsi
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
22.11.2005, 19:35 Uhr
killcommander



könnt ich dazu vielleicht ein kleines beispiel bekomme ... mab noch nie mit irgendwelchen _funktionen gearbeitet

danke
--
Achtung NOOBIE ALARM
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
30.11.2005, 15:24 Uhr
~tom2211
Gast


/* FTIME.C: This program uses _ftime to obtain the current
* time and then stores this time in timebuffer.
*/

#include <stdio.h>
#include <sys/timeb.h>
#include <time.h>

void main( void )
{
struct _timeb timebuffer;
char *timeline;

_ftime( &timebuffer );
timeline = ctime( & ( timebuffer.time ) );

printf( "The time is %.19s.%hu %s", timeline, timebuffer.millitm, &timeline[20] );
}


Output

The time is Tue Mar 21 15:26:41.341 1995
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ VC++ / MFC ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: