473,698 Members | 2,403 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

No "(Overrides )" Section in the IDE anymore?

Why is it that there doesn't appear to be an easy way to select what
overridable method you want to override from the IDE as you could in
VS2003?

Used to, you could select (Overrides) for your class from the dropdown
at the top of the IDE, on the left, and then pick from a list of
overrides on the right.

I've not done much in VS2005 yet, but every time I need to override a
method, I go to my dropdown lists and they're not there, so I have to
look up the exact syntax in the class documentation. It's not rocket
science, but it is a waste of time.

Am I smoking something? Is there an option to turn this back on?

Thanks.

--
Jason Kendall
Ja**********@ho tmail.com
Nov 21 '05 #1
4 1133
"Jason Kendall" <Ja**********@h otmail.com> schrieb:
Why is it that there doesn't appear to be an easy way to select what
overridable method you want to override from the IDE as you could in
VS2003?


It's because Microsoft seems to think that people only used this section to
generate the code for overrides, which is now possible by entering
"Overrides " into the IDE's text-editor. I think this poses a huge
usability problem, especially for those who used the combobox to take a
quick look at which members can be overridded and which of them are actually
overridden.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #2
"which is now possible by entering "Overrides " into the IDE's
text-editor."

Well, that certainly helps a ton! I don't always "read" the
intellisense and didn't notice that it was filtered to those items
that are overridable.

I do hope it returns in some VS2005 service pack because I am one of
those people who sometimes look at the list to see what's available.

Thanks so much!

--
Jason Kendall
Ja**********@ho tmail.com
On Wed, 5 Oct 2005 19:27:57 +0200, "Herfried K. Wagner [MVP]"
<hi************ ***@gmx.at> wrote:
"Jason Kendall" <Ja**********@h otmail.com> schrieb:
Why is it that there doesn't appear to be an easy way to select what
overridable method you want to override from the IDE as you could in
VS2003?


It's because Microsoft seems to think that people only used this section to
generate the code for overrides, which is now possible by entering
"Overrides " into the IDE's text-editor. I think this poses a huge
usability problem, especially for those who used the combobox to take a
quick look at which members can be overridded and which of them are actually
overridden.

Nov 21 '05 #3
Yes, I also miss that "feature". I thought that it was a bug and not "by
design".

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
You can code, design and document much faster.
Free resources for add-in developers:
http://www.mztools.com

"Jason Kendall" <Ja**********@h otmail.com> escribió en el mensaje
news:lr******** *************** *********@4ax.c om...
"which is now possible by entering "Overrides " into the IDE's
text-editor."

Well, that certainly helps a ton! I don't always "read" the
intellisense and didn't notice that it was filtered to those items
that are overridable.

I do hope it returns in some VS2005 service pack because I am one of
those people who sometimes look at the list to see what's available.

Thanks so much!

--
Jason Kendall
Ja**********@ho tmail.com


Nov 21 '05 #4
"Jason Kendall" <Ja**********@h otmail.com> schrieb:
"which is now possible by entering "Overrides " into the IDE's
text-editor."
[...]
I do hope it returns in some VS2005 service pack because I am one of
those people who sometimes look at the list to see what's available.


I used the list for four purposes:

(1) See which members are overridable.
(2) See which members are overridden in the class.
(3) Navigate to a certain override.
(4) Create source code for an override.

The current solution only serves purpose (4).

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Nov 21 '05 #5

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

Similar topics

4
1820
by: Christian Christmann | last post by:
Hi, I'm reading "C++ Coding Standards" by Herb Sutter. On page 67 there's an example which I don't understand: --------------------------------- class Base{// ... virtual void Foo(int); virtual void Foo(int, int); void Foo(int, int, int); };
2
4124
by: Tee | last post by:
what's the differences between "Overrides Sub OnError" and "Sub Page_Error" ?
0
2172
by: Benjamin Lukner | last post by:
Hi! I'd like to dynamically call API functions from different DLLs, depending on what platform the program runs. Now I'm wondering what the most simple way may be (without meta code and compiler switches!). I'd like to call it like that: Public Sub xyz()
3
3187
by: Jon | last post by:
I'm learning about datatables. When using the example provided by MS in the ..NET Framework Class Library for DATATABLE (see below) I get an error on line 3 that says "Type expected". Is something missing from the code? Thanks - Jon Private Sub MakeParentTable() ' Create a new DataTable. Dim myDataTable As Datatable = New Datatable("ParentTable")
6
1667
by: John | last post by:
Hi, Maybe someone can explain the use of "Me" to me? The example class CPoint3 uses the Me reference in the output statement: Console.WriteLine("CPoint3 constructor: {0}", Me) The text states: "This implicitely invokes the class's ToString method". This would be clear if Me.ToString was used, which I tested and works too!. Actually, Me.Anything works and gives the same results as long as Anything is a class member.
23
5108
by: deathtospam | last post by:
A day or two ago, I wrote a quick ASPX page with a CS codebehind using Visual Studio .NET 2005 -- it worked, I saved it and closed the project. Today, I came back to the project, reopened the solution, and was greeted with the following error: ======================================================================== It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error...
1
1426
by: =?Utf-8?B?QnJldHRWUA==?= | last post by:
I have a child-class that inherits from a base class that implements an Interface. The child class overrides a SUB from the base class that implements a sub from the interface. (The "MapAttributesForImport" is a sub in an interface that is implemented by the base class marked 'overridable'.) This code was fine in VS2003/.net 1.1 and is in production. BUT...While upgrading to the .net 2.0, VS2005 is giving me an error that says "sub...
45
9091
by: Umesh | last post by:
please help. thanks.
26
1848
by: Frank Samuelson | last post by:
I love Python, and it is one of my 2 favorite languages. I would suggest that Python steal some aspects of the S language. ------------------------------------------------------- 1. Currently in Python def foo(x,y): ... assigns the name foo to a function object. Is this pythonic? Why not use the = operator like most other assignments?
0
8609
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9169
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8899
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7738
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6528
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4371
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4622
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3052
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2007
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.