... For 32 Float use the "Single" data type.
See http://gambasdoc.org/help/cat/datatypes
See http://gambasdoc.org/help/lang/type/single

The example conversion may be done by this way:


PUBLIC SUB DemoSingle()
DIM i AS Integer
DIM f AS Single
DIM hH AS File

i = &h3fd55555&
OPEN "/tmp/hexfloat.tmp" FOR WRITE CREATE AS #hH
WRITE #hH, i
CLOSE #hH
OPEN "/tmp/hexfloat.tmp" FOR READ AS #hH
READ #hH, f
CLOSE #hH
PRINT "i=", i, "HEX", Hex$(i), "  f=", f
END

------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to