Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
LONG variable
#1
I dont really understand how i could use this in anything could someone help me?
#2
you know i've been creating databases and reports for over 6 years now and i've never used it nor felt the need to abandon the int or double.
An old blog on QM coding and automation.

The Macro Hook
#3
long is integer, very similar to int, but can hold much larger values (int is 32 bit, long is 64 bit). In most cases can be used instead of int, but it is really rarely needed. In C++ it would be __int64.
#4
it is handy when you use performance timeing or real-time code delays...
eg: when you use:
Code:
Copy      Help
long lTime
lTime = GetTickCount
Well thats all for now, 3M
#5
GetTickCount returns int value.
perf returns long value.


Forum Jump:


Users browsing this thread: 1 Guest(s)