problems in hx4700

  • Thread starter Thread starter Ctitanic
  • Start date Start date
C

Ctitanic

I'm calling a form within a form using this

Dim About2 As New About 'About is the name of a form.

About2.ShowDialog()

The first line is giving an error ramdomly in some hx4700. The code have not
been changed and it's been used in all PPCs with 2003 and SE but in some
hx4700, only in somes that 1est line does not work.



What could be the problem?
 
Ctitanic said:
I'm calling a form within a form using this

Dim About2 As New About 'About is the name of a form.

About2.ShowDialog()

The first line is giving an error ramdomly in some hx4700. The code have not
been changed and it's been used in all PPCs with 2003 and SE but in some
hx4700, only in somes that 1est line does not work.



What could be the problem?


Update, the error happens only if the form that I'm calling has an
OpenNETCF object inserted.
 
Ok, I ended finging that the problem in the hx4700 is when it try to
initialize a Imagelist object. Something is wrong with the ATI BitMap cache
that cause an error in any application using a toolbar with bitmaps. I
posted a solution in VB. NET and C# at my site

http://www.tweaks2k2.com/hx4700.htm

Basically the solution is to add icons into the Imagelist during the load
event of the form. And after that set the toolbar to use those icons.
 
Back
Top