I am in the process of debugging a Packaged and Deployed VB6 MDI App. I used Inno Setup which worked where Microsoft's Package & Deployment Wizard failed.
However, I've discovered a nasty glitch in the resulting packaged App: it crashes when it encounters a LoadPicture command.
I use this to change the MouseIcon, eg
Screen.MouseIcon = LoadPicture(App.Path & "\Icons\HourglassA.ico")
and, more importantly, to populate an ImageBox. eg
strStructure = App.Path & "\Structures\" & foo.gif
imgStructure.Picture = LoadPicture(strStructure)
Why is LoadPicture flubbing?
Is there an alternate method to fill a ImageBox?
However, I've discovered a nasty glitch in the resulting packaged App: it crashes when it encounters a LoadPicture command.
I use this to change the MouseIcon, eg
Screen.MouseIcon = LoadPicture(App.Path & "\Icons\HourglassA.ico")
and, more importantly, to populate an ImageBox. eg
strStructure = App.Path & "\Structures\" & foo.gif
imgStructure.Picture = LoadPicture(strStructure)
Why is LoadPicture flubbing?
Is there an alternate method to fill a ImageBox?