The next beta version is available, replacing the previous one (same location).
This version fixes several bugs including the inaccurate screen size which existed ever since v1.0. Thank you agraham for your help on this one.
There are some small new features:
- new keyword: FileFlush - flushes the file stream and writes the cached data to the file.
- Form.Visible - Read only property which can be used to tell if a form is visible.
- Labels text color changes to gray for disabled labels (this is actually a bug fix).
- Shorter syntax for declaration of multiple variables:
The following code:
Will declare all three variable with the Number type.
The rule is that there must be only one type in the declaration line and it must be after the last variable.
The final version should be very similar to this one (and not so far away...).
This version fixes several bugs including the inaccurate screen size which existed ever since v1.0. Thank you agraham for your help on this one.
There are some small new features:
- new keyword: FileFlush - flushes the file stream and writes the cached data to the file.
- Form.Visible - Read only property which can be used to tell if a form is visible.
- Labels text color changes to gray for disabled labels (this is actually a bug fix).
- Shorter syntax for declaration of multiple variables:
The following code:
B4X:
Dim x, y, z As Number
The rule is that there must be only one type in the declaration line and it must be after the last variable.
The final version should be very similar to this one (and not so far away...).