Chris Miller
Programmer
...but it's still there:
The title bar is merely usable to drag the window as the title bar is dominated by the title bar buttons.
Shuffle, play a little, then suddenly win with CTRL+END. <- And that's the easter egg
The only other according to is in Foxpro 1.01 in the About Foxpro Window. Is it really gone?
Anyway, here's another Easter egg of VFP:
Happy Easter
Chriss
Code:
ACTIVATE WINDOW puzzle
Shuffle, play a little, then suddenly win with CTRL+END. <- And that's the easter egg
The only other according to is in Foxpro 1.01 in the About Foxpro Window. Is it really gone?
Anyway, here's another Easter egg of VFP:
Code:
CLEAR
_SCREEN.DRAWWIDTH=4
DrawArc(_screen.Width/2,_screen.height/2, _screen.height/4,180,180)
DrawArc(_screen.Width/2+_screen.height/4, _screen.height/2, _screen.height/2,130,50)
DrawArc(_screen.Width/2-_screen.height/4, _screen.height/2, _screen.height/2,0,50)
DrawArc(_screen.Width/2,_screen.height/2 -_screen.height*.28, _screen.height/8,45,90)
FUNCTION DrawArc
LPARAMETERS X,Y,Radius,DegStart,Degs
_SCREEN.CURRENTX=X+(Radius*COS(DTOR(DegStart)))
_SCREEN.CURRENTY=Y-(Radius*SIN(DTOR(DegStart)))
FOR Deg = DegStart+1 TO DegStart+Degs
_SCREEN.LINE(X+(Radius*COS(DTOR(Deg))),;
Y-(Radius*SIN(DTOR(Deg))))
ENDFOR
Happy Easter
Chriss