Solution Explorer

VB.NET

    Next

  • 1. TAPI, finding available TAPI Device
    We have a server with 10 modems. Sometimes these modem will be in used. What I am trying to achieve to be able to loop through the 10 modems and find an available modem and use that one and make it unavailable until I am done with it. The software will have many remote desktop sessions using our software to connect with a modem. Regards, Bic (email XXXX@XXXXX.COM )
  • 2. Load Report Failed
    I have made a setup for my vb.net application with crystal reports., when i installed that setup in my system It is working fine .But it is not working fine in any other system. after installing that setup in other system and running that application it is giving a error that is "Load Report Failed" in a dialog box.ther if we click ok button 3 times then it is running the application in other's system.there afteralso it is working fine. why i'm getting that error message? can any one tell me how to avoid that problem thanx in advance Raji
  • 3. breakpoint will not currently be bit ???
    I am using vb.2005. i had set some break point. however, when i run the application . I found such wording " The breakpoint will be not current be bit, no symbol loaded" ? what's happend ?? thanks
  • 4. projects in vb.net not relateted to data base
    hi i want to work on projects in vb.net which not relateted to data base.any one agive me same idia abt same projects.thanks
  • 5. change and set back
    Are you saying you need to change the computer's system date? If so, I'm not sure how to do that. However, to get access to the date use Today.Date.

Solution Explorer

Postby Nice Chap » Tue, 20 Apr 2004 23:31:57 GMT

Is there is a shortcut key/menu item to collapse all the project folders in
the solution explorer.



Re: Solution Explorer

Postby Chris Dunaway » Wed, 21 Apr 2004 01:46:23 GMT




On a tree view, the left arrow key collapses and the right arrow key opens.
Perhaps this will help you?

-- 
Chris

To send me an E-mail, remove the underscores and lunchmeat from my E-Mail
address.

RE: Solution Explorer

Postby R2FyeSBNaWx0b24 » Wed, 21 Apr 2004 02:41:03 GMT

Hi

You can do it with macros..

1) Open Tools->Macros->Macros ID
2) Right-Click 'MyMacros' and add a new module named 'SolutionExplorerMacros
3) Paste the following code into the body of the macro:

\\
Public Sub CollapseAllSolutionProjects(
    Dim objUIHierarchyItem As UIHierarchyIte
    Dim objUIHierarchySubItem As UIHierarchyIte

    For Each objUIHierarchyItem In CType(DTE.Windows.Item("{3AE79031-E1BC-11D0-8F78-00A0C9110057}").Object, UIHierarchy).UIHierarchyItem
        For Each objUIHierarchySubItem In objUIHierarchyItem.UIHierarchyItem
            With objUIHierarchySubItem.UIHierarchyItem
                If (.Count > 0) The
                    .Expanded = Fals
                End I
            End Wit
        Nex
    Nex
End Su

Public Sub ExpandAllSolutionProjects(
    Dim objUIHierarchyItem As UIHierarchyIte
    Dim objUIHierarchySubItem As UIHierarchyIte

    For Each objUIHierarchyItem In CType(DTE.Windows.Item("{3AE79031-E1BC-11D0-8F78-00A0C9110057}").Object, UIHierarchy).UIHierarchyItem
        For Each objUIHierarchySubItem In objUIHierarchyItem.UIHierarchyItem
            With objUIHierarchySubItem.UIHierarchyItem
                If (.Count > 0) The
                    .Expanded = Tru
                End I
            End Wit
        Nex
    Nex
End Su
//

You can then add toolbar buttons and/or menu items to the IDE for these macros and assign shortcut keys to them if you want to

HTH
Gary

Re: Solution Explorer

Postby Nice Chap » Wed, 21 Apr 2004 18:28:22 GMT

Gary,

Thanks a lot, the macros really did the trick !! Thanks once again.




Similar Threads:

1.HIDE: Database Explorer / Solution Explorer / Properties

Hi these little suckers reside on the right hand side of my screen, looking 
like tabs.
They pop out whenever I mouse-over them. I find this annoying.
How can I get them to stay put unless I click on them?

Thanks



2.why can I open .CS file in WINDOWS explorer, but not in SOLUTION explorer

3.Solution node does not appear in Solution Explorer (VS 2005 beta2)

Hi,
when I add a new project to a blank solution (or create a new solution from 
a template) the solution node disappears from Solution Explorer and only the 
project node is visible.
I am thus unable to add other projects to the solution.
The odd thing is that I once succeeded in creating a multi-project solution 
and I have no idea about what might have changed since that time.
Any suggestion?

4.Solution node does not appear in Solution Explorer (VS 2005 be

5.Removing items from the Solution Explorer in VBE 2005

Rob,

Hello again!  :)  The problem is that there is no 'Exclude from project' menu
item when I right-click on the item in SE.

What I get is:-

    Open     Open With ...

followed by a separator bar, then:-

    View Code

then another separator then:-

    Cut    Copy    Delete    Rename

then a third separator before we come to the last:-

    Properties


SB
-----------------------------------------------------------------------------------------------
"RobinS" wrote:

> Right-click on the item and choose "Exclude From Project".
> 
> Robin S.
> ------------------------------------------
> "Scanboy" < XXXX@XXXXX.COM > wrote in message 
> news: XXXX@XXXXX.COM ...
> > Guyz,
> >
> > I want to remove items from the Solution Explorer.  The VBE 2005 help 
> > system
> > claims that to do this, you have to:-
> >
> >     1.  Select the item you want to remove.
> >
> >     2.  On the 'Edit' menu, choose 'Remove'.
> >
> > The problem is that there is no 'Edit' menu in the Solution Explorer, and 
> > the
> > 'Remove' option is not even listed in the 'Edit' menu in the VBE 2005 
> > menu
> > system.
> >
> > The only thing that is available is the 'Delete' option when I 
> > right-click
> > on the
> > item in Solution Explorer, but this permamently deletes the file from the
> > disk,
> > not from the solution, which is not what I want.
> >
> > I have had to resort to creating a 'Backup' directory to store files I 
> > want to
> > remove from the Solution Explorer in case I want to reuse them later.
> >
> > There must be a better way to remove items from the SE.
> >
> >     1.  How do I remove items from the solution in the Solution Explorer?
> >
> >     2.  Where do I find the 'Edit' menu?  If it is missing, how do I add 
> > it
> > to
> >          Solution Explorer?
> >
> >
> > SB 
> 
> 
> 

6. Duplicate a Form in Solution Explorer

7. HELP: Cannot rename file in Solution Explorer

8. Moving panel in & out like a Solution explorer



Return to VB.NET

 

Who is online

Users browsing this forum: No registered users and 69 guest