Messages - Gerome [ switch to compact view ]

Pages: prev1 ... 13 14 15 16 17 [18] 19 20 21 22 23 ... 31next
86
Hi,

Looks remarkably like what you used to have to do with a Sinclair ZX81 back in the early 70s ;)

Anyone else remember peeking and poking bytes in memory?
-Carol Haynes (March 18, 2006, 06:21 PM)

Peek and Poke exist in FBSL also, but they have been enhanced :)

Peek( [@ ]addr[+offset], [$%!#]numofbytes )

Parameters
[@ ]addr[+offset] : address from where to retrieve value(s). @ and offset are extended options
[$%!#]numofbytes : you have to precise the very number of bytes to retrieve from the addr variable, and you have to precise the very type by prefixing the very offset by $, %, ! or #

------------------------------------

Poke( [@ ]addr[+offset], [$%!#]val )

Parameters
[@ ]addr[+offset] : variable [address] where to write value(s).
[$%!#]val : value(s) to write to at mandated address. You have to precise the very type by prefixing the very offset by $, %, ! or #

So ? :)

87
Developer's Corner / FBSL - Pocket URLs
« on: March 18, 2006, 05:02 PM »
Hello,

Here's a little FBSL tool that allows you to have your favourite URLs near from your mouse...


The full script + an URL list can be found there :
http://gedd123.free.fr/Fbsl/DC/Pocket_URLs.zip

The .FBS script can be compiled with the online studio compiler there :
http://gedd123.free.fr/studio

Now you can edit/modify/add/save!

Enjoy ;)

88
Hello,

Eek, that looks like how pascal did machine code before the inline assembler was added :P


The way Fbsl handles 'asm' is in fact a pure trick available via a system APi call, but it works from win95 up to 2003 and even latests M$ actual betas... :)

89
Developer's Corner / Re: FBSL - Multithreaded GUI Application
« on: March 18, 2006, 03:20 PM »
Hi,

You *can* do multi-threading in VB, although it is a bit hacky. You can't access global variables without going through a lot of tricky hoops, and there's a bunch of language features you can't use from secondary threads. But it *is* possible :)

That's for v5 and v6 btw, dunno about vb.net - but I assume they've fixed threading issues there.

In VBnet it's possible becasue vbnet is no more VB, but the net platform supports multithreading and it works same way as we've done MT support into Fbsl.

90
Developer's Corner / Re: FBSL - Multithreaded GUI Application
« on: March 18, 2006, 08:12 AM »
Hello,

Really nice effect actually. Could be used to create a nice screensaver.

Simply try to do the same sample using VB : impossible since VB is not capable of multithreading...

Pages: prev1 ... 13 14 15 16 17 [18] 19 20 21 22 23 ... 31next
Go to full version