Re: HELP: WHAT AM I DOING WRONG
- Posted by Jeffrey Fielding <JJProg at CYBERBURY.NET> Sep 26, 1998
- 491 views
In Euphoria, all variables must be declared before they are used. You need to modify it to this: include image.e sequence x, st -- You must declare x and st st =3D "some bitmap file" x =3D read_bitmap(st) x =3D read_bitmap("c:\\windows\\arcade.bmp") Jeffrey Fielding JJProg at cyberbury.net