I am using C# to create a ZedGraph which uses custom symbols for the datapoints.
I see in older posts that there was, at one point, a "SymbolType.UserDefined" option, but this does not seem to be present in the latest version of ZedGraph (v5.0.9.41461).
http://zedgraph.sourceforge.net/documentation/html/T_ZedGraph_SymbolType.htm
I am hoping that there is a newer/better way to do this. If so, can someone please point me towards it?
If not, can someone recommend an alternative solution?
These symbols are industry standards for the application's market, so we have to comply.
Thank you for any assistance anyone can provide!
As it turns out, I found/installed version 5.1.5, and the UserDefined SymbolType option is available in there.
All versions...
https://sourceforge.net/projects/zedgraph/files/zedgraph%20dll%20only/
Related
Currently im Working on Code That uses the HCS Class. Can Anyone Tell Me What this class is and where I can find documentation about it?
for Example
HCS.Open_Segment(path);
or
HCS.Begin_Contents_Search
I think it has something to do with Hoops from the Company TechSoft3d. But i cant find anything about this class.
Any Help would be great.
Thanks in advance
When you are developing in visual studio you can press F12 to jump to the class.
I don't know the company or software you are using, but normally with niche software it mostly comes with an help file with documentation. Ask your colleagues if there is a stick or cd around which may contain a help file. If you got it over a nuget package you should be able to look something up online.
HCS is a wrapper class for all HOOPS 3DGS API called from C#.
I want to know if there is a free alternative to display Visio diagram (.vds file) in webforms asp.net C#?
Thanks in advance.
To my knowledge, the only way to go is using ActiveX, but if you decide to go down that path, do know that it's supported only by Internet Explorer, and since that one is going to the grave rather quickly I'd say you'll give yourself some headache quite quickly.
There's no pure HTML5/ASP.NET WebForms solutions for this as per today.
This is one of the things I find infuriating about C#. I have thsi massive library im trying to use right now and for some reason the people who create the code examples are not smart enough to include the namespaces you need to import in the examples. This is usualyl the case. I find myself searching through the namespace, hundreds sometimes nested trying to figure out which ones i need to import. In java netbeans, it even tells me which packages to import because it searches for me. But in C# i always waste countless time searching through the namespace manually.
Is there any way I can get around this. Like right now im trying to find which namespace contains TwitterCredentials for Tweetinvi library.
Seriously, why do people not include the namespace in code examples. It's just stupid not to!
And why does visual studio not make suggestions like java. It's just common sense really....
You can press Ctrl + . on each word that has error or point to small blue bar under the word and click on dropdown, and use offered namespace.
I am the developer of Tweetinvi :)
ALL the classes you need in Tweetinvi are located in the Tweetinvi.Core.* namespace.
TwitterCredentials.cs
To answer your question regarding Namespaces and why I do not include them in the examples. The reason is that as mentioned by Reza Aghaei Visual Studio and Resharper allow developers to include namespaces.
Furthermore as you mentioned the library is big and therefore multiple namespaces might be required and I am not going to add all of them in each example. Otherwise the documentation would just be huge.
I hope you will like the library and please feel free to ask any question here on stackoverflow or on github.
Happy coding.
PS: By the way you can also use Github to search for filename with a 't' keystroke on the Source Code page.
i searched for the topic but didn't find exactly that kind of problem.
I want to create a C# WinForms software which should run only in intranet. If i change the software afterwards i would like to have the application to look automatically in the network for a newer version. Is a newer version available it should replace the old one. Maybe there is some tool or library to achieve that?
Further Information: The software does not use a database and consists only out of one .exe file. No other stuff or files needed.
I don't want to setup a server or something like that for this task. I want it as simple and clean as possible.
Thanks in advance.
Joe
I think clickonce may help you. see http://msdn.microsoft.com/en-us/library/t71a733d(v=vs.80).aspx for more details
I really like the updateSystem.NET-lib, but which is only available in german. If you can understand the easy API, this is exactly what you are searching for.
Here, you can find a little tutorial, also in german.
Is there a good open source project with brace matching support? I was searching codeproject all day but failed to find any. Or atleast can someone advice me on how to tackle it? Thanks!
It can be in C# or VB.NET.
Edit:
Sorry forgot to mention, I do not want to use other dll components since I'll have to include them in the directory to use them... I'd create my own so all I have is JUST the exe file to give out. Thanks!
Not sure if these provide what you need, but worth a look:
scintillanet is a C# wrapper around the scintilla control
ICSharpCode.TextEditor from the SharpDevelop project