Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for a third party Serial Port solution (commercially or open-source are equally welcome). There are some known bugs in .NET Serial Port class that gives me all sorts of threading errors. Does any know of any good third party solution that works for C# WPF application?
[EDITED]
I have encountered similar problems to this
USB or RS-??? (232, 435, etc)?
Just googling a little:
Open source:
http://sourceforge.net/projects/serialportnet/
Comercial:
http://www.marshallsoft.com/serial-communication-library.htm
http://www.zylsoft.com/serialportnet.htm
try http://www.commstudio.com/commstudio
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm trying to write my own LDAP Client Library.
Would you like to give me some examples of such libraries which use OOP.
They can be written in C++, Java, C#, etc.
Thanks in advance!
In java, LDAP can be connected through javax.naming.ldap.* packages which comes in standard distribution. I found the following two links, where in you can get sample codes.
http://www.adamretter.org.uk/blog/entries/LDAPTest.java
http://code.google.com/p/java-use-examples/source/browse/trunk/src/com/aw/ad/LdapBasicExample.java?r=2
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
please does anyone know if there is c# library for formatting C based codes? I'm writing some code generators for myself and it would be nice to have code which comes out of my app formatted. I was looking for some but it's hard to find.
Thanks.
Only one I have ever tried with marginal success was.
http://www.gnu.org/software/indent/manual/indent.html
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to communicate PLC over MODBUS TCP.
But I have not a PLC yet. I am waiting for coming it.
I can not find any tool which simulate PLC. Can you help me?
Recommendations isn't really what we do here, but a search for "plc simulator modbus" gives this hit: http://www.plcsimulator.org/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am working with C# and I have found Mail.dll from here http://www.limilabs.com/mail
which is just the perfect thing. Unfortunately it's not free. Is there any way that I can get the full thing for free ? or is there a similar library ?
Btw I am working with Gmail and IMAP :)
Yes, there are built in namespaces (ex. System.Net.Mail) for sending emails; take a look at this tutorial.
[addendum] If you want to receive messages, check out something like this, which can be used to receive messages through POP3.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Even if it requires manual input. Is there any good-enough option available?
I don't know anything about this site, but a little googling found this.
If it was in managed C++ or C++/CLI, you could compile it and then disassemble the assembly into C# using a tool like Reflector. Of course, that's not open source but maybe you can find an open source Reflector-style tool?
If it's native C++, that's much more difficult.