473,789 Members | 3,096 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Set alphabetical as default in VS property editors?

Is there any way to change the default view in Visual Studio's property
editors from categorical to alphabetized? I'm getting awfully tired of
clicking the A-Z icon every time I open a collection editor. Thanks

--
David Veeneman
Foresight Systems
Jan 14 '06 #1
2 1600
Which version are you on? I'm on 1.1 and there is no default view to check
in Options under Tools that I could find.

However, I don't think it's needed. Try this:
1. Open a windows project.
2. Click on a form.
3. Save the project.
4. Click the alphabetical icon on the Properties box

Close down the IDE without saving (obviously, save prior to hitting the
aphabetical, as listed above).

Open it back up and it should keep the alphabetical setting. I tried it
using the steps above for both alphabetical and categorized. Each time it
held the last clicked, regardless of saving.

Mark
"David Veeneman" <da****@nospam. com> wrote in message
news:OI******** ******@TK2MSFTN GP09.phx.gbl...
Is there any way to change the default view in Visual Studio's property
editors from categorical to alphabetized? I'm getting awfully tired of
clicking the A-Z icon every time I open a collection editor. Thanks

--
David Veeneman
Foresight Systems

Jan 15 '06 #2
I'm using Version 2.0. The Properties dockable windows remembers your last
choice. But open something that uses a VS collection editor (like the Nodes
property of a TreeView. When the Collection Editor opens, it storw the
Categorized view, rather than the Alphabetical view, and it doesn't remember
your last choice.
Jan 15 '06 #3

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

Similar topics

2
1746
by: Mukesh Kumar | last post by:
Hi, Can anybody throw some light about displaying records in datagrid and pagination will be done alphabetically. Like I want to click on G and want to display all the records starts with G. Is there any property or custom coding in Datagrid helps us to achieve this? This is a bit urgent.
1
5080
by: Eric Lilja | last post by:
Hello, in my program I need to ask the user to input some alphabetical letters. Case should not matter. Any input that isn't an alphabetical letter should be rejected and the user prompted to try again. I came up with: std::cout << "Type a letter: "; char c = '\0'; while(!(std::cin >> c) || !std::isalpha(c))
4
1105
by: Bobby | last post by:
Hi. I am working on checking and adding to an Access 2000 database. The database is being used in a Visual Basic application. I don't know much about technology so i would need an easy-to-understand answer, if possible. (The database is divided into five categories.) After I have added to or edited some entries and then go to the program itself, the various drop down boxes are supposed to show the entries in alphabetical order but...
1
1890
by: Richy Rich | last post by:
Hi, This may seem like a really stupid question, but I cannot get the source files to appear in alphabetical order in the solution explorer. I've clicked on the A...Z icon, but they don't appear in alphabetical order. Richy.
21
2022
by: windandwaves | last post by:
Hi Folk Right now, I am using notepad2 to edit my PHP files. Do you have any recommendations for any php editors I should purchase instead? I dont mind spending some money for a good product. I also have visual studio and I hear that there is an extension for VS for php. Does anyone have any experience with this? TIA
5
3229
by: Julian | last post by:
I'm using the following VB.Net code to retreive the field names of a table in an Access db: Dim NewField As ADOX.Column Dim tblField As ADOX.Column For Each tblField In adocat.Tables("tblData").Columns The fields are returned in alphabetical order! I want to have the fields
1
2480
by: quirdan | last post by:
Hi, I am after some advice about which data structures I should use. I'm developing a program and I am at the point where all the strings are being generated and printed one by one with loops/recursion using printf("%s\n", my_string);. Instead of printing them, I need to sort them in alphabetical order, and record the amount of times a unique string appears. i.e it will print "ABCD 4" because ABCD appeared 4 times. "BCC 1" because BCC...
7
2712
by: Ron Adam | last post by:
I have several applications where I want to sort lists in alphabetical order. Most examples of sorting usually sort on the ord() order of the character set as an approximation. But that is not always what you want. The solution of converting everything to lowercase or uppercase is closer, but it would be nice if capitalized words come before lowercase words of the same spellings. And I suspect ord() order may not be correct for some...
2
4182
by: pavanip | last post by:
Hi, I have a problem with binding data to dropdownlist from database in alphabetical order. My database contains some fields like All,Air,Airline,Books,Cars etc. There are 2 dropdown lists one dropdown contains A to Z list like A,B,C,D..Z. 2nd list contains above items like All,Air,Books.Now I want that when I select A from A-Z list it will display A items in alphabetical order and the Top item should be "All" after that remaining...
0
9665
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10408
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
10139
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
9020
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
7529
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
5551
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4092
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
2
3697
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2909
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.