How can I make message bubble? [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
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!

Related

Is there a way to modify the html of an incoming website 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 2 days ago.
Improve this question
I am trying to create a piece of software than can manage your computer and clean some things up, and one of the things I am trying to incorporate is adblocking.
I have looked online multiple times for something like this, but haven't found anything. The most I amounted to is the webbrowser class.
If someone could help me discern how to change an html file using the webbrowser class, that would be greatly appreciated.

Can you have both C# AND VB application form in one project solution [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
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.

Color Console - Performance? [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
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.

How to create Office UI in win form 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 6 years ago.
Improve this question
I google a lot for a long time. I have no idea how to create OfficeUI in C# Win Form. Less article teach this.
I found this video. But it is presentation of the OfficeUI only. Actually, I really want to develop a Win Form like this.
https://www.youtube.com/watch?v=dCTmWjN3WkA
any idea?
many thanks.
I assume you mean you want to add an Office Ribbon Bar to a WinForms application ? If you google ".net WinForms RibbonBar" you will find a bunch of examples; for instance this CodeProject one; http://www.codeproject.com/Articles/364272/Easily-Add-a-Ribbon-into-a-WinForms-Application-Cs

How to hide hardcoded limit in my application? [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 am near release date for my Excel Add-In and I want to have only one limitation hardcoded in the code. My aim is for people to download and use the tool for free but have a limitation that potentially encourages them to buy the unlimited version. I know that there isn't a truly secure way to add that limitation but I was wondering what is the best way of achieving it. The limitation is simply a hardcoded value that I store in the Properties section of my app. Any ideas how I can make it a bit more secure?

Categories