473,386 Members | 1,754 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,386 software developers and data experts.

Is there some way to report a MAJOR BUG with Visual Studio.NET to Microssoft

I'm at the end of my rope. We have an important project that is being
totally whacked by an inexplicable bug with the Visual Studio.NET WinForms
designer. It seems that no matter what we do, forms and controls in multiple
projects are being randomly resized whenever we do a save or build,
rendering them virutally unusable.

As far as I am concerned THERE IS NOT EXCUSE for a bug like this in the
designer and I have been unable to locate the source of the problem. Someone
did report seeing this problem when he changed the default font within a
form, but that turned out to not be the case with us.

Numerous posts on this have gone unanswered and searches of every type for
the cause/solution have yielded nothing.

Again, SIMPLY SAVING A FORM SHOULD NOT ALTER ITS LAYOUT!!!!

What gives???
Nov 22 '05 #1
5 1173
Bob
It sounds like it's worth $245 to you to get peice of mind, use a paid (or free
if you are a memember) MSDN support incident.

http://msdn.microsoft.com/subscripti...rt/default.asp
800-759-5474

Or you could post a zipped solution with reproduiction instructions, and we can
try to save you some money. Cheer up, it's highly unlikely you won't find a good
answer between MS and this newsgroup. If your questions have been unanswered, I
promise I'll take a look right away.

Bob

"nospam" <nf*@nospam.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
I'm at the end of my rope. We have an important project that is being
totally whacked by an inexplicable bug with the Visual Studio.NET WinForms
designer. It seems that no matter what we do, forms and controls in multiple
projects are being randomly resized whenever we do a save or build,
rendering them virutally unusable.

As far as I am concerned THERE IS NOT EXCUSE for a bug like this in the
designer and I have been unable to locate the source of the problem. Someone
did report seeing this problem when he changed the default font within a
form, but that turned out to not be the case with us.

Numerous posts on this have gone unanswered and searches of every type for
the cause/solution have yielded nothing.

Again, SIMPLY SAVING A FORM SHOULD NOT ALTER ITS LAYOUT!!!!

What gives???


Nov 22 '05 #2
> It sounds like it's worth $245 to you to get peice of mind, use a paid (or
free
if you are a memember) MSDN support incident.


Plus, if it turns out to truly be a bug on Microsoft's part, then I don't
believe they charge you for the incident.

--
Thanks, Jeff
Nov 22 '05 #3
If you want to drop me a line at er****@microsoft.com, I'll hook you up with
somebody on the Windows Forms team.

--
Eric Gunnerson

Visit the C# product team at http://www.csharp.net
Eric's blog is at http://weblogs.asp.net/ericgu/

This posting is provided "AS IS" with no warranties, and confers no rights.
"nospam" <nf*@nospam.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
I'm at the end of my rope. We have an important project that is being
totally whacked by an inexplicable bug with the Visual Studio.NET WinForms
designer. It seems that no matter what we do, forms and controls in multiple projects are being randomly resized whenever we do a save or build,
rendering them virutally unusable.

As far as I am concerned THERE IS NOT EXCUSE for a bug like this in the
designer and I have been unable to locate the source of the problem. Someone did report seeing this problem when he changed the default font within a
form, but that turned out to not be the case with us.

Numerous posts on this have gone unanswered and searches of every type for
the cause/solution have yielded nothing.

Again, SIMPLY SAVING A FORM SHOULD NOT ALTER ITS LAYOUT!!!!

What gives???

Nov 22 '05 #4
I want to publicly thank MS for stepping up to the plate and volunteering to
help here.

As it turns out, we did find a workaround that solved the problem, but it
does appear to be a rather odd and frustrating bug.

Size properties in the designer generated source code were being
mysteriously altered whenever we would did a save (including doing a build
that resulted in an implicit save). The alteration was to SOURCE code (not
compiled code), which made no sense whatsoever.

In fact, it was maddening and put us back by several days trying to solve
the problem.

We finally stumbled upon a solution that took care of it (although we have
no idea why):

On inherited child forms, whenever we used the default of the form below we
would have the problem:

public class AgencyManagementView :
MyCompany.Application.Common.BaseChildFormView{etc }

Replacing the above with something like the following pattern solves the
random auto-resizing of forms and controls on save (although , again, it
makes NO sense as to why):

using MyCompany.Application.Common
public class AgencyManagmentView : BaseChildFormView{etc}
"Eric Gunnerson [MS]" <er****@online.microsoft.com> wrote in message
news:OX*************@TK2MSFTNGP10.phx.gbl...
If you want to drop me a line at er****@microsoft.com, I'll hook you up with somebody on the Windows Forms team.

--
Eric Gunnerson

Visit the C# product team at http://www.csharp.net
Eric's blog is at http://weblogs.asp.net/ericgu/

This posting is provided "AS IS" with no warranties, and confers no rights. "nospam" <nf*@nospam.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
I'm at the end of my rope. We have an important project that is being
totally whacked by an inexplicable bug with the Visual Studio.NET WinForms designer. It seems that no matter what we do, forms and controls in

multiple
projects are being randomly resized whenever we do a save or build,
rendering them virutally unusable.

As far as I am concerned THERE IS NOT EXCUSE for a bug like this in the
designer and I have been unable to locate the source of the problem.

Someone
did report seeing this problem when he changed the default font within a
form, but that turned out to not be the case with us.

Numerous posts on this have gone unanswered and searches of every type for the cause/solution have yielded nothing.

Again, SIMPLY SAVING A FORM SHOULD NOT ALTER ITS LAYOUT!!!!

What gives???


Nov 22 '05 #5
I want to publicly thank MS for stepping up to the plate and volunteering to
help here.

As it turns out, we did find a workaround that solved the problem, but it
does appear to be a rather odd and frustrating bug.

Size properties in the designer generated source code were being
mysteriously altered whenever we would did a save (including doing a build
that resulted in an implicit save). The alteration was to SOURCE code (not
compiled code), which made no sense whatsoever.

In fact, it was maddening and put us back by several days trying to solve
the problem.

We finally stumbled upon a solution that took care of it (although we have
no idea why):

On inherited child forms, whenever we used the default of the form below we
would have the problem:

public class AgencyManagementView :
MyCompany.Application.Common.BaseChildFormView{etc }

Replacing the above with something like the following pattern solves the
random auto-resizing of forms and controls on save (although , again, it
makes NO sense as to why):

using MyCompany.Application.Common
public class AgencyManagmentView : BaseChildFormView{etc}
"Eric Gunnerson [MS]" <er****@online.microsoft.com> wrote in message
news:OX*************@TK2MSFTNGP10.phx.gbl...
If you want to drop me a line at er****@microsoft.com, I'll hook you up with somebody on the Windows Forms team.

--
Eric Gunnerson

Visit the C# product team at http://www.csharp.net
Eric's blog is at http://weblogs.asp.net/ericgu/

This posting is provided "AS IS" with no warranties, and confers no rights. "nospam" <nf*@nospam.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
I'm at the end of my rope. We have an important project that is being
totally whacked by an inexplicable bug with the Visual Studio.NET WinForms designer. It seems that no matter what we do, forms and controls in

multiple
projects are being randomly resized whenever we do a save or build,
rendering them virutally unusable.

As far as I am concerned THERE IS NOT EXCUSE for a bug like this in the
designer and I have been unable to locate the source of the problem.

Someone
did report seeing this problem when he changed the default font within a
form, but that turned out to not be the case with us.

Numerous posts on this have gone unanswered and searches of every type for the cause/solution have yielded nothing.

Again, SIMPLY SAVING A FORM SHOULD NOT ALTER ITS LAYOUT!!!!

What gives???


Nov 22 '05 #6

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

Similar topics

1
by: Bob Skutnick | last post by:
Help.... I've created an ADO.NET dataset in Visual Studio (a web project). I build the project and then try to create a Crystal Report using the dataset. When I try to use the ADO.NET dataset...
5
by: nospam | last post by:
I'm at the end of my rope. We have an important project that is being totally whacked by an inexplicable bug with the Visual Studio.NET WinForms designer. It seems that no matter what we do, forms...
0
by: sztonix | last post by:
Hi all, I encountered a crystal report deployment problem. I make reports with Crystal Report for Visual Studio .NET 2003. It works fine in the development machine. And then make setup...
1
by: Gudni G. Sigurdsson | last post by:
Hi. I am working on a program for the .NET Framework written in C# with Visual Studio .NET. With this program, one can print a report realized with the Crystal Report software included with VS...
2
by: GC | last post by:
HI, I'am using Crystal Report with visual Studio .NEt 2003 When i make a report using a store procedure, I can not see all the fields of the store proc and i'm suppose to see those fields. I'm...
5
by: bcanavan | last post by:
When I export xml(and xls) from Access 2003 the result is a complete report in a single page. I would like to get the entire report in a single page (one trip to the server) for printing and...
2
by: Miguel Dias Moura | last post by:
Hello, Until now I have been using Macromedia Dreamweaver to create web sites. I worked in PHP and ASP. However in this moment I work mostly in ASP.NET. What is the best tool to create...
0
by: Crystal Report - LoadSaveReportException | last post by:
I have a web system which will display a crystal report for clients. It is written in Visual Studio 2003, VB.Net and Crystal Report which comes with VS2003, running on Windows 2000. It works very...
0
by: Jay | last post by:
Following the help documentation, I can only get the report.Load method to work if I type in the full path. By toggling the commented line below, it proves that the report will open only when the...
1
by: sambansi | last post by:
Hi All, I have installed 1. Microsoft Visual Studio 2005, Microsoft .NET Framework Version 2.0 and 2. Crystal report developer, product evaluation, version 11.5.0. I want to access crystal...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.