Quote Originally Posted by Mojtaba View Post
I noticed a small problem: when you load a new photo or minimize the program window, the image disappears and does not refresh.
And you must click on the board to see the image again.
Thanks for reporting, this is fixed in the latest source in the first post.

Quote Originally Posted by Mojtaba View Post
I've talked about this before.
software runs late after compilation
This problem exists if you use the GDI+ library in fonts.
Of course, if the number of fonts exceeds about 600 or 700
the program's slow loading becomes clearly visible, but below these numbers it is not so noticeable.
This project doesn't use GDI+ at all, so that shouldn't be an issue.

If you comment out the following code in Form_Load:

Code:
   For ii = 0 To Screen.FontCount - 1
      Me.cmbFont.AddItem Screen.Fonts(ii)
   Next
And replace it with:

Code:
   Me.cmbFont.AddItem "Segoe UI"
Does it load faster?

Quote Originally Posted by Mojtaba View Post
There are several other suggestions: the ability to zoom in and take screenshots, and . . .
Zoom is a possibility, but I don't think I'll get into screenshots as it is outside the scope of what this project is meant for. Just FYI the goal isn't for a full-featured paint application, nor a replacement for something like the Windows snipping tool or SnagIt. But feel free to expand on the source as required for your needs.