Visual Basic 6: how to make application visible in

2019-06-28 00:09发布

问题:

I've set property ShowInTaskBar to true, but my application is not visible in taskbar. Form has minimize, maximize and close buttons. When I click minimize, form minimizes to a small form in the bottom left corner on the screen, but doesn't show up in the taskbar.

回答1:

Is your form modal?

MyForm.Show vbModal

If so then you'll have to do something like this to make it show in the taskbar.



标签: vb6