> Could anybody help me on the following problems:
>
[quoted text clipped - 13 lines]
> only
> seems to be something like 17x22).
dont know
> b) Icons
>
> Aaaarrggghhhh.... my icons look tishy in XP cos VB6 will only allow me to
> add 256 colour ones to my res file. Is there anyway round this? I've got
> some great true colour ones, but I just can't use 'em.
I created some great looiimg ones in 8bit and they look pretty close to the
32bit ones. It really depends on how you create the icons. I embed the icon
directly into the foram instaead of using res files.
> Please don't tell me that I've got to hack into my app afterwards - this
> is
> pants!! :0)
if its not supported natively in VB6 then your recourse is to either find a
programming hack or a resource hacker. no way around it even if you have
pants.
take a look here http://www.planet-source-code.com/vb/default.asp?lngWId=1
AGP
Norm Cook - 12 May 2008 12:39 GMT
>> Could anybody help me on the following problems:
>>
[quoted text clipped - 39 lines]
>
> AGP
Another workaround for the icons:
Add the true color icons as a Custom Resource
vice Icon. Then download Brad Martinez's
graphicload.zip from
http://btmtz.mvps.org/_misc/index.htm
Use it something like this:
Private Sub Form_Load()
Dim b() As Byte
b = LoadResData(101, "CUSTOM")
Image1.Picture = PictureFromBits(b)
End Sub