Color Console - Performance? [closed] - c#

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
i have a little question.
Im write my project at the moment but i think a "grey" console is boring.
Now is my question -> Can i use colors without performance loose?
For example with a public.
Best whishes

When the project it built, the "gray" color you are referring to is just like any other color you might choose. So when it comes to performance - it doesn't matter if you leave the default gray or use custom colors.

Related

How can I make message bubble? [closed]

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!

How do I make a dynamic chart? [closed]

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 years ago.
Improve this question
I am getting a constant stream of radio-frequency data and I want to graph it dynamically like an oscilloscope.
I am using C#. Can I use the chart class for this? Are there any readings or videos to help me learn where to start?
You might want to take a look at the MS Chart controls that come with Visual Studio.
Here's a good place to start:
https://msdn.microsoft.com/en-us/library/dd456632.aspx
...and some samples:
https://code.msdn.microsoft.com/mschart

How can i draw something in C# [closed]

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 8 years ago.
Improve this question
i'm looking for a way to draw something (like a racing map) in C# as i do in for example paint . then pass information to a toy car to follow it. I don't need you to write a code, i just need a suggestion of the way to do it.
I think Unity might be something for you. It's a game engine with a free license, and you can program in C#.

How to implement web camera for video conferencing in asp? [closed]

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
I want to create a asp web application for video conferencing, how i can implement this?
Thanks...
In my point of view, the better support for such issue was implemented within Silverlight technology. As start point I can suggest: http://msdn.microsoft.com/en-us/library/ff602282%28v=VS.95%29.aspx
It is possible to implement your Silverlight into ASP.NET like was described here

Read text(data) in an images using c# [closed]

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 years ago.
Improve this question
Is there a way to read text(numbers and letters) in an image using C# ? Is this possible and What is the best way to do this ?
Thanks!
http://code.google.com/p/tesseract-ocr/ has some wrapper to use it in .NET, or, simpler:
http://www.codeproject.com/KB/office/modi.aspx but you need to keep an eye to the license since it is a part of the Office suite. In both case you tipically need some pre processing for the image and, as a solution I did in the past, some post processors that using some ehuristict correct the mistaked words.

Categories