Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. #include <DateUtils.hpp>
  2.  
  3. TDateTime pressTime;
  4.  
  5. void __fastcall TForm1::ButtonMouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift, float X, float Y)
  6. {
  7. pressTime = Now();
  8. }
  9.  
  10. void __fastcall TForm1::ButtonMouseUp(TObject *Sender, TMouseButton Button, TShiftState Shift, float X, float Y)
  11. {
  12. __int64 duration = MillisecondsBetween(Now(), pressTime);
  13. ShowMessage("Кнопка была нажата " + IntToStr(duration) + " миллисекунд");
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement