Search Results

Showing results 1 to 14 of 14
Search took 0.00 seconds.
Search: Posts Made By: gusano79 ; Forum: C# and child forums
Forum: C# 7 Days Ago
Replies: 1
Views: 170
Posted By gusano79
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
Posted By gusano79
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
Posted By gusano79
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
Posted By gusano79
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
Posted By gusano79
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
Solved: 2 keys down
Views: 347
Posted By gusano79
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
Posted By gusano79
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
Solved: 2 keys down
Views: 347
Posted By gusano79
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
Posted By gusano79
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
Posted By gusano79
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
Posted By gusano79
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
Posted By gusano79
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
Posted By gusano79
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
Posted By gusano79
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...
Showing results 1 to 14 of 14

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC