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

Possibly Related Threads…
Thread Author Replies Views Last Post
  My ascii Map Maker... in progress / lots of work to do. pmackay 5 669 08-24-2025, 08:17 PM
Last Post: Unseen Machine
  Digit II level editor in progress pmackay 0 333 07-19-2025, 04:03 AM
Last Post: pmackay
  Everything Date Library in progress SMcNeill 2 713 05-14-2025, 08:36 PM
Last Post: SMcNeill
  SaveImage Library 3.0 (in progress) SMcNeill 5 1,250 06-22-2024, 03:23 PM
Last Post: bplus
  RotoLine line drawing James D Jarvis 0 517 10-11-2023, 04:24 PM
Last Post: James D Jarvis

Forum Jump:


Users browsing this thread: 1 Guest(s)