Forum: C# 7 Days Ago |
| Replies: 1 Views: 170 Here's a link (http://en.wikipedia.org/wiki/Thresholding_(image_processing)#Adaptive_Thresholding) to get you started. Google is your friend. =) |
Forum: C# 9 Days Ago |
| Replies: 4 Views: 333 Briefly:
Create a string with values from the drop-down controls; String.Format (http://msdn.microsoft.com/en-us/library/system.string.format.aspx) is useful.
Create a MailMessage... |
Forum: C# 19 Days Ago |
| Replies: 4 Views: 333 Have a look in the System.Net.Mail namespace (http://msdn.microsoft.com/en-us/library/system.net.mail.aspx) in the .NET Framework class library. It provides types you can use to create and send SMTP... |
Forum: C# 28 Days Ago |
| Replies: 6 Views: 438 A more detailed description of the problem than "still no luck" would help... is it the same exception or a different one? Exception message and stack trace are both useful. Also, what version... |
Forum: C# 29 Days Ago |
| Replies: 6 Views: 438 It's not quite the same; Access is a file-based database system, where MySQL is server-based, so you'll need some sort of open connection to the server to do anything useful.
I don't have a... |
Forum: C# 30 Days Ago |
| Replies: 6 Views: 347 To clarify, the .NET Framework doesn't provide automatic handling of multiple key presses. You can still handle them yourself.
This is what's keeping your code from working right--when you... |
Forum: C# 30 Days Ago |
| Replies: 3 Views: 2,338 Simple, yes... but not something I'd allow into production code. See these (http://odetocode.com/Blogs/scott/archive/2004/08/20/401.aspx) links... |
Forum: C# 30 Days Ago |
| Replies: 6 Views: 347 Could you post the code you're using to track key up/down status? That would help us find what's going wrong. |
Forum: C# Sep 10th, 2008 |
| Replies: 8 Views: 2,097 Short answer is no. How will your application know what SQL to send to your database to insert, update, or delete records?
I wish I had a better answer for you, but this is how it works. There... |
Forum: C# Sep 10th, 2008 |
| Replies: 8 Views: 2,097 Ah, yes. The command builder also requires that your SELECT statement return a primary key or unique index.
If your table has either of those, you may be able to get away with simply adding the... |
Forum: C# Sep 7th, 2008 |
| Replies: 1 Views: 2,401 You can't update the database using OleDbDataReader or any other DbDataReader subclass. They provide forward-only, read-only access to data. You need something else.
There's more than one way to... |
Forum: C# Sep 7th, 2008 |
| Replies: 8 Views: 2,097 Looks like you're not generating the update command. It isn't actually created until you call SqlCommandBuilder.GetUpdateCommand()... |
Forum: C# Sep 7th, 2008 |
| Replies: 2 Views: 598 You can't link directly to a COM library; you have to link to a .NET interop library. The VS IDE secretly generates this library for you when you add a COM project reference. Since you're using the... |
Forum: C# May 15th, 2006 |
| Replies: 1 Views: 11,484 I don't have any code samples handy, but if you'd like to create your files the Cowboy Way, try this introduction to the Microsoft PCM WAVE file format... |