http://www.javaop.com/~joe/rop/Yeah. I'm up to the challenge (to some degree) of rewriting Pacman. I had the idea today in computer programming (I spent four hours out of seven in that lab, and had one good idea. Ugh.), and just had to do it.
Anyhow, I wrote clsScreen to hold a grid, 32x32 spaces, and procedures to move each square up down left and right, to set the value, to get the value, and to swap two positions. I've got modScreen which handles drawing this grid to a 32x32 control array of borderless frames on frmMain, which will later be used to hold images representing the players, vitamin pills, etc. Right now, the grid is holding a long, which is set to a random color in Form_Load. The sad part, this takes a good two seconds to load on a 2.8Ghz processor. Of course, its creating 32x32 controls, setting three values on each of them, filling up an array of 32x32 elements, reading them again, and then setting the read values to the BackColor of the frame. Lets see you do that in two seconds. Oh well, you'll live.
Random Color EXERandom Color Screenshot.