pedrobibi Posted March 31, 2003 Report Posted March 31, 2003 Hi Is there any offset who independently manage the integer an the decimal part from the number of NAV frecuency ? (i.e. 118.15 is integer=18 and decimal=15) Thanks in advance PS. Sorry, but my english is so bad :oops:
StuartWhelan Posted March 31, 2003 Report Posted March 31, 2003 No, there isn't. Are you looking at EPL (and thereore EpicInfo) or using straight FSUIPC and using VB, C++ or delphi? In VB you could try: tempstr = CStr(IntegerNumber) tempWhole = mid(tempstr, 1, 2) tempFrac = mid(tempstr, 3, 2) In EPL its a little trickier, but not impossible.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now