G
Guest
Using: VB.Net, Framework 1.1, Windows XP SP2
Hardware: Pentium IV 3,1 GHz, 1 Gb RAM memory
The VB.Net application opens a child form as follows:
Private Sub OpenChildForm()
dim frm as new frmWhatever
frm.showdialog()
frm.dispose()
End Sub
I can open the child form several times without a problem. But at a
given moment I get an "Error creating window handle". The error occurs
at the 20th (or so) consecutive call of the OpenChildForm procedure.
I understand that Windows 9x has a limited number of handles, but since
I'm using Windows XP that shouldn't be the problem.
Reading the newsgroups I found out I'm not the only one having this
problem. Unfortunately, I haven't seen a solution either.
Any help would be appreciated.
Hardware: Pentium IV 3,1 GHz, 1 Gb RAM memory
The VB.Net application opens a child form as follows:
Private Sub OpenChildForm()
dim frm as new frmWhatever
frm.showdialog()
frm.dispose()
End Sub
I can open the child form several times without a problem. But at a
given moment I get an "Error creating window handle". The error occurs
at the 20th (or so) consecutive call of the OpenChildForm procedure.
I understand that Windows 9x has a limited number of handles, but since
I'm using Windows XP that shouldn't be the problem.
Reading the newsgroups I found out I'm not the only one having this
problem. Unfortunately, I haven't seen a solution either.
Any help would be appreciated.