473,387 Members | 1,791 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Generic GDI+ Error Win98

ML
I am trying to test a vb.net app in VirtualPC on a Win98 install. The app
runs but I get "Generic GDI+" errors on any form with a groupbox.
Does anyone know what this issue is or how to fix it? Does Win98 not fully
support VB.NET??
Nov 21 '05 #1
12 1536
Hi,

Not all functions in the dot net framework work on windows 98.
If you look up the function in the msdn documentation you will see the
suported platorms check and see if win 98 is listed.

Ken
------------------
"ML" <ml@schoonersolutions.com> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I am trying to test a vb.net app in VirtualPC on a Win98 install. The app
runs but I get "Generic GDI+" errors on any form with a groupbox.
Does anyone know what this issue is or how to fix it? Does Win98 not fully
support VB.NET??

Nov 21 '05 #2
"ML" <ml@schoonersolutions.com> schrieb:
I am trying to test a vb.net app in VirtualPC on a Win98 install.
The app runs but I get "Generic GDI+" errors on any form
with a groupbox. Does anyone know what this issue is or
how to fix it?
Does this even occur with a "blank" project with only one form and a dummy
groupbox?
Does Win98 not fully support VB.NET??


Yes, it supports "VB.NET", but it does not fully support the .NET Framework.
There are certain classes that are not supported on Windows 98/Me.
Nevertheless, the groupbox should work.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #3
ML
Only seems to happen with groupbox. All other controls are fine. If I turn
off hardware acceleration for the video card in the Virtual PC OS settings
it is fine.

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:OM**************@TK2MSFTNGP14.phx.gbl...
"ML" <ml@schoonersolutions.com> schrieb:
I am trying to test a vb.net app in VirtualPC on a Win98 install.
The app runs but I get "Generic GDI+" errors on any form
with a groupbox. Does anyone know what this issue is or
how to fix it?


Does this even occur with a "blank" project with only one form and a dummy
groupbox?
Does Win98 not fully support VB.NET??


Yes, it supports "VB.NET", but it does not fully support the .NET
Framework. There are certain classes that are not supported on Windows
98/Me. Nevertheless, the groupbox should work.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #4
ML
Do you have a link to the supported features? I had thought it was fully
supported on 98, not partially. This may be a an issue if our assumptions
were wrong.

"Ken Tucker [MVP]" <vb***@bellsouth.net> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Hi,

Not all functions in the dot net framework work on windows 98.
If you look up the function in the msdn documentation you will see the
suported platorms check and see if win 98 is listed.

Ken
------------------
"ML" <ml@schoonersolutions.com> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I am trying to test a vb.net app in VirtualPC on a Win98 install. The app
runs but I get "Generic GDI+" errors on any form with a groupbox.
Does anyone know what this issue is or how to fix it? Does Win98 not
fully
support VB.NET??

Nov 21 '05 #5
"ML" <ml@schoonersolutions.com> schrieb:
Do you have a link to the supported features? I had thought it was fully
supported on 98, not partially. This may be a an issue if our assumptions
were wrong.


You will have to check the documentation for the methods you are calling.
For each method/property/... it's documented on which platforms the
method/property/... is supported.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #6
ML
Yes thanks I found the list. It seems to be more lower level and some web
based calls. All the UI elements and general features seem to be fine.
This GDI+ issue I don't think is related to an unsupported feature. A
groupbox is a pretty basic UI element.

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
"ML" <ml@schoonersolutions.com> schrieb:
Do you have a link to the supported features? I had thought it was fully
supported on 98, not partially. This may be a an issue if our
assumptions were wrong.


You will have to check the documentation for the methods you are calling.
For each method/property/... it's documented on which platforms the
method/property/... is supported.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #7
ML
Does the GDIPLUS merge module need to be included in the install perhaps?

"Ken Tucker [MVP]" <vb***@bellsouth.net> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Hi,

Not all functions in the dot net framework work on windows 98.
If you look up the function in the msdn documentation you will see the
suported platorms check and see if win 98 is listed.

Ken
------------------
"ML" <ml@schoonersolutions.com> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I am trying to test a vb.net app in VirtualPC on a Win98 install. The app
runs but I get "Generic GDI+" errors on any form with a groupbox.
Does anyone know what this issue is or how to fix it? Does Win98 not
fully
support VB.NET??

Nov 21 '05 #8
Hi,

Can you reproduce the problem on a physical win98 machine?
I wonder if the VPC cause the problem, because the problem will disappear
after you shutdown the hardware acceleration.

Best regards,

Peter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

Nov 21 '05 #9
ML
It seems fine on one other "real" Win98 box. What seems odd is that the
only control that causes the issue is the groupbox. Also if the groupbox
has no text title, just the frame it works fine as well. Any form with a
groupbox with a title fails. Oddly enough I tried using the Janus groupbox
and it works fine. Seems as if it is only an issue with the MS groupbox.
This is with VS2003 using the latest .NET framework.

My concern is that this could show up on a client PC under the right
conditions since it happens in the VirtualPC. I also read a few other posts
of similar issues on real 98 machines but no clear answer as to why.

""Peter Huang"" <v-******@online.microsoft.com> wrote in message
news:57**************@cpmsftngxa10.phx.gbl...
Hi,

Can you reproduce the problem on a physical win98 machine?
I wonder if the VPC cause the problem, because the problem will disappear
after you shutdown the hardware acceleration.

Best regards,

Peter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no
rights.

Nov 21 '05 #10
Hi

Thank you for you input.
I think the mainly difference between a real machine with a VPC which may
cause the issue is that the VPC is a software machine while not a physical
machine, most of whose "hardware" is simulated by the software.
So it is hard to say which one cause the problem. If you have specified
problem with running .net application on win98, can you post here detail,
so we can troubleshoot it.

If you do care what caused the problem, which may need low level debugging.
I think you may try to contact MSPSS for further support service.
You may reach MSPSS via the link below.
http://support.microsoft.com

If you still have any concern on this issue, please feel free to post here.

Best regards,

Peter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

Nov 21 '05 #11
ML
I managed to "fix" the issue. I set the groupbox's flatstyle to "system"
instead of "standard" and now it no longer generates a GDI+ error.

""Peter Huang"" <v-******@online.microsoft.com> wrote in message
news:6%****************@cpmsftngxa10.phx.gbl...
Hi

Thank you for you input.
I think the mainly difference between a real machine with a VPC which may
cause the issue is that the VPC is a software machine while not a physical
machine, most of whose "hardware" is simulated by the software.
So it is hard to say which one cause the problem. If you have specified
problem with running .net application on win98, can you post here detail,
so we can troubleshoot it.

If you do care what caused the problem, which may need low level
debugging.
I think you may try to contact MSPSS for further support service.
You may reach MSPSS via the link below.
http://support.microsoft.com

If you still have any concern on this issue, please feel free to post
here.

Best regards,

Peter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no
rights.

Nov 21 '05 #12
Hi

I am glad that you have "fix" the issue, if you still have other concern,
please feel free to post here.

Best regards,

Peter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

Nov 21 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Michael Kennedy [UB] | last post by:
Hi Everyone, I have this multithreaded C# windows forms application which does a lot of image processing. Occasionally, I get the following error: A generic error occurred in GDI+....
2
by: Alphonse Giambrone | last post by:
I am currently reading 'Programming The Web with Visual Basic .NET' and have so far found it to be excellent. Downloaded all the code from Apress and working in chapter 4, I get the error shown...
13
by: lgbjr | last post by:
Hello All, I have some pictureboxes on a VB.NET form that are linked to an AccessDB. If the user wishes to open or edit an image, I need to save the image in the picturebox to a temp file, then...
15
by: David Lozzi | last post by:
Howdy, I have a function that uploads an image and that works great. I love ..Nets built in upload, so much easier than 3rd party uploaders! Now I am making a public function that will take the...
14
by: James Wong | last post by:
Hi everybody, I'm facing a serious trouble relating to GDI+ generic error. The error message is "A Generic error occured in GDI+" and the following information is stored in Excepton object:...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.