Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
is it possible to configurate Visual Studio so that the color theme depends on the current C#-Solution.
Why I need this? If have two similar solutions on disk (an experimental one and a productive one).
When both solutions are in use at same time then it can happen that I'm confused and write my experimental code into the productive one.
In order to avoid mistakes it would be nice if the one visual studio window theme is white and the other black.
If that is not supported, is there any similar feature?
Thank you for your help.
As far as I know, there's no such feature or plugin.
But, maybe this can help you
https://marketplace.visualstudio.com/items?itemName=mayerwin.RenameVisualStudioWindowTitle
http://erwinmayer.com/labs/visual-studio-2010-extension-rename-visual-studio-window-title
I'm using it to view, in VS title, TFS branch that I'm working on (prod or dev).
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 days ago.
Improve this question
I've tried to search this one everywhere, but still can't find an answer.
Basically I'm trying to figure out how this extension works, since examples with C# are non existent and I'm also a bit noob.
This is the extension:
https://marketplace.visualstudio.com/items?itemName=AdamWulkiewicz.GraphicalDebugging
I'd need that to visualize simple 2d geometric objects while debugging.
I've not tried much tbh.
But I was expecting that for example an instance of an array like [2,2] would be interpreted like a point of coordinates x and y. Obviously this doesn't work.
What am I missing? Does someone have experience with this extension and can give me some advice?
Thanks in advance!
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Is it possible to create a C# splash screen and have the rest of the forms in vb in the same solution?
Yes, since Visual Basic and C# both are .NET languages (and both supported by the CLR), you can easily interop between the two and use them within the same application (e.g. calling C# from Visual Basic and vice versa) and solution:
Solution
- YourCSharpProject
- YourVisualBasicProject
In your specific scenario, it sounds like the two would be completely different areas of an application, so there's nothing from preventing the landing screen to be written using C# and simply navigating to another separate screen backed by Visual Basic.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Like this:
http://www.premiumpixels.com/freebies/apple-iphone-chat-bubbles-psd/
I have a tcp/ip chat application, I used listbox, but its not the best solution...
As you are programming with the default set of Visual Studio (C#, .NET, winforms) I expect that you also use the defaulted listbox, meaning that that one uses defaulted .
This component can be overridden (even to use customized resources like images, fonts, etc.) It is even documented on MSDN:
ListBox.DrawItem Event
If I were you, I'd look into that example provided there!
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
My adviser told me to use Accord Framework for C# to extract features and patterns from images. Our project is about image analysis and comparison of tobacco leaves. Does anyone here have an idea on how to do it? Thank you.
This is pretty high level stuff, but from what I've learned in my time faffing with it, I'd use the Accord.Imaging library to scan your pictures. Followed by using the Accord.Neuro namespace to "learn" from some manual data you feed into it.
Seems your goal is to create a program that scans images quickly, gleaning only the useful data from the full image, and then checking for some particular features of the image. I've never used the library, but it looks like it'd be possible to use it.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Who knows how to find the most used classes (written/implemented, not referenced) in a Visual Studio solution? The solution contains a lot of projects. By 'most used' I mean the largest number of member invocations.
Thank you.
There are certain tools like NDepend which my help you found how much classes are coupled together. Depending on Visual Studio version (ex. 2013 Ultimate) you can use Analyze tool to Calculate code metrics and see class coupling.
Personally I would go for NDpened as it gives you a lot of feedback about your solution and dependencies.