Hello.
> 1. I understood that with POKE SYSVARPTR + 40 ,1 can turn graphics
> 90 degree, How it works , I tried it with no effect.
You need to poke the sysvar first, then change to graphics mode. The
var is only checked when switching mode.
> 2. I read from the earlier message:
> >You can create dynamic libraries specific for Blassic. The testdl.*
> > files in the source package contains an example of how to do it.
> - where I can find this "source package"?
The "Source and sample programs" package in blassic web site. The
same package can be compiled for windows or linux. The dynamic
library must be compiled with the same C++ compiler that Blassic. The
easier web to ensure that is to compile blassic. I use mingw to build
the binary windows packcage.
> 3. Do This group have any code library, where user can upload /
> download their Blassic sample code.
No, but there is the "More programs" link in the web site. You can e-
mail me contributions, if you want.
> 4. I tried Get and put (graphic) command, they works fine,
> -- how in Blassic can an array been saved to a disc (holding screen
> area info by get) and how it can be loaded back to an array. ( I
> tried save name$,b,ar(1) and failed, maybe i have to open file
> and read the array info?)
GET and PUT does not use basic arrays, the syntax used is the same
that in some old basics for compatibility, but the graphics data is
stored separately. Currently there is no way to save it.
> 5. Is there any plans in next version to commands loading/saving
> graphics => jpg-image (or bmp or..)
Yes, but only plans. I want to use a portable format, but does not
like the idea of use some external library to do it because some
people likes the very low dependencies of external libraries that
Blassic currently has.
Thanks for your comments.