Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
QuadDraw revisited - drawing program work in progress
#7
This was too much fun to fiddle with. 
I added 2 button commands (with no menu support) to see how they'd work.
Changing the brush color is useful. The eraser...not so much.
Code: (Select All)
            Case "B"
'change brush color
                If blk& = _RGB(0, 0, 0) Then
                    blk& = ColorPicker&(200, 150)
                Else
                    blk& = _RGB(0, 0, 0)
                End If
            Case "E"
'turn eraser on and off
                If blk& = _RGB(0, 0, 0) Then
                    blk& = wht&
                Else
                    blk& = _RGB(0, 0, 0)
                End If
Reply


Messages In This Thread
RE: QuadDraw revisited - drawing program work in progress - by James D Jarvis - 05-31-2022, 04:10 AM



Users browsing this thread: 8 Guest(s)