38 questions
-3
votes
2
answers
166
views
How to extract enums strings from values in VBA? [duplicate]
I want MsgBox shows me msoPictureAutomatic instead of 1.
Because I want to get a enum name not a enum value.
Please note that 1 means msoPictureAutomatic
Sub Macro1()
Sheets(1).Pictures.Insert("...
2
votes
1
answer
1k
views
Refresh button not updating database in SSMS although query is successfully completed :(
I'm running different queries in SSMS it shows "command completed successfully" but when I refresh the database, can't see the updates in databse.
Though you can see in image that I have ...
0
votes
1
answer
327
views
Unload Assembly or AppDomain after Use (like in Object Browser)
I am trying to load external Assembly to list out all Types, Methods and Properties during run time, just like Object Browser in Visual Studio. My requirement is, I want to Load external Assembly list ...
3
votes
1
answer
3k
views
All properties of Application.ActiveSheet in Excel - Object Browser does not list the properties of Members
Microsoft Docs do not list all the properties of Object Application.ActiveSheet:
https://learn.microsoft.com/en-us/office/vba/api/excel.application.activesheet
It has only included some of the ...
0
votes
1
answer
279
views
Visual Studio SDK get type modifier information - is type abstract or internal?
I use the IVsObjectList2.GetCategoryField2 method to retrieve different information of a type.
Now I wonder how I can retrieve C# specific information like abstract or internal modifier of a type?
...
2
votes
3
answers
841
views
Is there object/class browsing in Visual Studio with C# while debugging/code tracing?
So my idea is I want to see what an object's members or properties would return/change while I am debugging/tracing. There is Object Browser but it is only to show tree list of an object.
For ...
0
votes
1
answer
2k
views
How do you clear Visual Studio's object browser cache?
We have a library project that we are working on, and in a different project I have the feature branch installed as a Nuget package. Changes are being made on the branch, but version number isn't ...
0
votes
1
answer
324
views
ComboBox Enter event disappeared from Object Browser
I have a class module where I am extending the functionality of the MSForms ComboBox in my Excel VBA project.
I added the combo box reference to my class:
Private WithEvents cBox As ComboBox
I added ...
2
votes
0
answers
44
views
Why don't an Application's Addins, Columns or Rows properties appear in the Locals Window?
How come an Excel.Application reference shows the Addins2 property in Locals Window, but not the Addins property? Ditto Columns and Rows properties? Is that some host-specific TLB hack for the Locals ...
2
votes
0
answers
56
views
VS2015 - DLL Manifest visibility in Description pane of Object Browser
I am creating a few WPF Custom Controls in VS2015 (C#) which I would like to distribute to a Shared library for other Development Team members. In order for these folks to reference the namespaces in ...
0
votes
1
answer
39
views
How to know if program is COM and can be browsed in Visual Studio?
I am using VS2005 to develop VBScript tool, I want to use VS2005 Object Browser to browse all objects, I added cscript.exe and excel.exe, but I couldn't find any COMs else, when I tried to add notes....
3
votes
0
answers
343
views
Object browser not working for c++ in VS 2015 community
For some reason I just can't get the Object browser to pick up my function/class documentation in Visual Studio 2015 Community.
I have tried as described here XML Documentation (Visual C++).
The ...
1
vote
1
answer
103
views
Get BaseTypes of an Assembly by Reflection
im trying to develop an app. like vs ObjectBrowser and flow was something like this:
stackoverflow.com/questions/6939400/create-a-application-like-visual-studio-object-browser
now my problem was i ...
28
votes
2
answers
11k
views
<example></example> XML comment tag: how to see it?
I use Microsoft Visual Studio 2012.
When I put code examples into XML comments of C# classes/methods, I wonder: how will user that references my assemblies see that code example?
I tried to reference ...
0
votes
2
answers
383
views
Where is the physical location of user defined .GlobalEnv variables in R and how to delete them permanently?
Problem:
I needed to use Matlab within R. Then I added relevant package R.matlab.
I defined variables in a demo example of working with Matlab within R.
The defined variables are: data, path, ...
0
votes
1
answer
762
views
How to get Description attribute values to show up in the Object Browser?
I have a library written in VB. It has enums with the following:
Public Enum ModelRelationshipTypes
<Description("For 1 to 0/1 -- i.e. FK is nullable. -- related object is singleton")> _
...
2
votes
2
answers
6k
views
How can I export the names of all the methods in an assembly? [duplicate]
I am able to see all the methods in a referenced library in my object browser. I wish to export all these methods to a text file.
I also have access to dotPeek but I could not locate any export ...
0
votes
2
answers
677
views
How to see the list of objects in current file in Visual C++ 2012?
Assume we have the huge Visual Studio solution and there are many files (tabs) opened. Does Visual Studio 2012 (Visual C++ particularly) have any View panel which will show the interactive list of ...
5
votes
2
answers
1k
views
What XML comment tags are supported in the Object Browser
I'd like to provide a higher level of detail at the class level (in this case actually a Module) with code samples, etc., but I'm having trouble getting various tags to work.
''' <summary>
''' ...
0
votes
1
answer
224
views
VS 2012, Object Browser, How to determine which members(methods, properties) are inherited?
I'm using Object Browser in Visual Studio 2012 to get the idea of what a class/interface is, who is its parent etc.
There is a way to show inherited methods and properties by checking "Show Inherited ...
3
votes
3
answers
2k
views
Visual Studio 2012 Object Browser unused references
I removed some unused references from a Visual Studio 2012 Project (Visual Basic), yet they still show up in my Object Browser (F2).
Does anyone have a clue how to remove those entries?
0
votes
1
answer
1k
views
Why the Object browser window is doesn't show anything
i have downloaded wmi tools from microsoft page, when i am opening the wmi object browser, it shows like this
So how to view the event details of local system by using wmi.
0
votes
1
answer
99
views
Why does Object Browser not find ole32 functions?
This may be a dumb question - so be it, I'm a newb. But I'm trying to implement a code snippet
pszReturn = (char*)::CoTaskMemAlloc(ulSize);
And when I try to type in the function CoTaskMemAlloc, ...
2
votes
1
answer
2k
views
Why can't I browse dll to figure what's in it?: "Some components could not be browsed"
I'm looking for a missing COM interface X which I suspect is defined in Y.dll. I can peek at this presumptive interface using
grep X Y.dll
which says "matches". Hurrah, suspicion confirmed!
Alas, ...
6
votes
0
answers
593
views
How to make an F# project work with the object browser
I have used the sample F# Empty WPF project and pulled in Paul Bett's ReactiveUI project via Nuget. Normally when I press (shift-f2) on an identifier in C#/VB.Net it takes me to the object browser so ...
2
votes
1
answer
2k
views
Cannot see in Object Browser a Referenced DLL?
I have an application to which I've added references to Microsoft.Xrm.Sdk and Microsoft.Xrm.Sdk.Workflow...but when I view Object Browser they don't appear anywhere in the Object Browser. They used to,...
0
votes
1
answer
1k
views
Object Browser not through Visual Studio
How do I run Object Browser directly from Windows and not from Visual Studio?
I'm using Object Browser to study .Net classes. It's much better than MSDN, because it allows me to skip derived members....
2
votes
0
answers
84
views
C++ ansi namespaces in object browser
I'm wondering if it is possible to view what's "inside" the C++ ansi/iso namespaces just like visual basic or c# using the visual studio's object browser. Like view what functions are in the namespace ...
2
votes
1
answer
382
views
Get friendly description from a object member in C#
How do i get the description from a object member programmaticly?
If i use the built in Object Browser in Visual Studio i can browse a specific object and get a human redable description for every ...
2
votes
1
answer
2k
views
Visual Studio 2010 and .bsc file
I'm using an open source Mozilla project in Visual C++ 2010. The project requires UNIX based build tools and therefore I cannot create a Visual Studio project for it directly. I must use the command ...
0
votes
2
answers
143
views
Finding a typoscript code on big pages
There's a meta tag with charset ISO and I need to change it to utf8. I browsed through templates and configs, and cannot find the meta tag where it is set. Also I tried to override it with:
config....
3
votes
1
answer
1k
views
Object Browser can't browse my own solution?
When I click on "My Solution" nothing comes up.
I have to use Custom Component Set.
When I try to add a project from the solution, it can't add it.
"The following components could not be browsed." ......
0
votes
1
answer
373
views
How to view .net/mono framework class hierarchy?
The two basic views in Visual Studio's ObjectBrowser and Monodevelop's Assembly browsers are Namespaces and Assembly based. How to get to a class hierarchy based view of the frameworks ?
1
vote
2
answers
3k
views
How to enable Object Browser Search in Visual Studio 2010 Possessional
I'm using VS2010 and can't seem to find how to enable the search bar in the Object Browser.
I've searched for quite some time and all I've been able to find are instructions on how to enable it in ...
0
votes
1
answer
179
views
how can i shift focus to the Object Browser Search box
I'm trying to divorce myself from my mouse in order to become more product and in order to do this I must find key-combos for common operations.
Every time I launch the object browser in VS, the ...
5
votes
1
answer
771
views
Visual Studio Object Browser disregards XML comment formatting
In my .NET XML comments on methods and classes, I try to provide usage examples in <example><code></code></example> blocks. When I use Sandcastle to generate a .chm ...
1
vote
1
answer
468
views
replacing vs object browser with reflector?
Has anyone tried to build or seen a plugin for visual studio that replaces the object browser of with Reflector? It would be really cool if I do "Go to Definition" I would end up in Reflector at the ...
3
votes
1
answer
2k
views
VB6: Why is Picturebox.Print() hidden from the Object catalogue?
the title already tells the question:
you can successfully call the Print-Method on a PictureBox-instance. But it is not shown in the object browser.
same applies for some other methods, Pset() for ...