What will BinMaster Xtra do?
The BinMaster Xtra allows Director developers to read from the binary file and save data in the binary file, so that anybody cannot read the data. The BinMaster Xtra works with versions 6,7 i 8 in Windows 95/98/2000/NT environment.
back to toc
To purchase BinMaster Xtra electronically please visit http://www.intermedia.pl/xtraen.php3 or order it by http://www.kagi.com All Intermedia Sp. z o.o. products can be purchased using all payment methods accepted by Kagi.com. All Intermedia Sp. z o.o. products are available in demo form to allow you to evaluate them before purchase, for this reason these products are not returnable or refundable.
For sales questions please contact zm@intermedia.pl
back to toc
Intermedia Sp. z o.o. provides support only through email. Questions
will be answered as soon as possible and in a timely manner. Support is
available from 8:00 A.M. CET to 6:00 P.M. CET CENTRAL EUROPEAN TIME (US Eastern time/EST - 6) and Monday through Friday excluding any holidays or vacation. Please provide the product serial number with any questions.
If you have any suggestions for a future product feature or an idea for simplifying the use of the product, please e-mail to Intermedia Sp. z o.o. at zm@intermedia.pl
back to toc
This software is provided "as is", without warranty of any kind, either expressed or implied, including, but not limited to, the implied
warranties of merchantability or fitness for a particular purpose. The software or its documentation or samples may include errors or technical inaccuracies.
Changes are periodically made to this software, its documentation and samples, and may be incorporated in new versions. Intermedia sp. z o.o.may improve or change products at any time without notice. Intermedia sp. z o.o. does not assume responsibility for, and disclaims all liability for, errors in this software or its documentation and samples. Intermedia sp. z o.o. will not be responsible for any damages of any sort under any conditions and is not liable for lost profits,or any special, indirect, consequential, or incidental damages. While the software contains no known bugs, you will use it at your own risk.
Some jurisdictions do not allow the exclusion of implied warranties, so the above exclusion may not apply to you.
back to toc
Purchasing the software entitles the registered user to an unlimited
royalty free runtime license for distributing the Xtra in a compiled Director application the registered user develops. For development the registered user is licensed to possess and operate a single installed copy of the software. The registered user may not redistribute any documents, human-readable product serial numbers, or any files accompanying the Xtra.
The Xtra is serialized for identification. The demo version of the Xtra is only to be used for evaluation purposes.
The demo may be redistributed, provided no charge is made and can not be
altered in any manner and must distributed intact as is, including all files.
Violation of this licensing agreement automatically terminates your right to use this software. Intermedia Sp. z o.o. will take any legal action necessary for loss profits or infringement of intellectual property.
back to toc
v. 1.0 - First Version April 25, 2000
v.1.0.1 - May 15, 2000 - removing minor bugs
back to toc
BinMaster Xtra Function Reference
| ReadBin object me, string filename,long type,long seek,long sizelem, string serialNumber |
read sizelem elements of type type from file filename with shift seek, variable serialNumber is the Serialnumber you get after registration Variable type can have only following values:
|
||||||
| SaveBin object me, string filename,long type, long seek,long elem |
write element elem of type integer into file filename with shift seek
|
|
set handl = new(xtra "BinMaster") repeat with i =0 to 20 SaveBin(handl , "c:\test.bin ",2, i*4 ,i) end repeat set lList = ReadBin(handl, "c:\test.bin ",2,0,4*i,"demo") put lList |
SaveBin create file test.bin and write values from 0 to 20 ReadBin read from file test.bin and store in the variable lList And write the results in the Directors massges window: the results is the list - [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20] |