bin/debug is a folder. He asked do you want to save picture as JPEG/JFIF, Exif, TIFF, RAW, PNG, GIF, BMP or others. And in what format do you get picture?
OriginalGriff wrote:
[edit]Corrected spelling of Abhinav - sorry![/edit]
Thanks. :)
Me, I'm dishonest. And a dishonest man you can always trust to be dishonest.
Honestly. It's the honest ones you want to watch out for...
If you download project , you can see CaptureNET - capturing test . CaptureNET need DShowNET.dll. And there are have DShowNET project for dll. All projects written under Visual Studio 2005 - C# language . Try one more time!If you have visual studio , files need open. Good luck. :)
We are haven't bug,just temporarily undecided problems.
OK, lets try the obvious stuff first: 1. Have you added the Assembly to the project (as per the first picture on the answer here http://social.msdn.microsoft.com/Forums/en/vbpowerpacks/thread/87c15a18-dd30-4ebd-9775-3777c3225168[^] 2. Sometimes [often] the intellisense on Visual Studio goes wrong. Have you tried restarting. If you've tried 1 & 2 you'll need to post some code so we can see what might have happened.
Antoine de Saint-Exupery: Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.
true. But my understanding of the question was "how to use just 2 digits" and not "how to force just 2 digit number in a control". Anyway, as usual good point :)
use delegation: in form1 create textbox and put: public delegate void dd(string s); public static dd d; and put (d=new dd(write);) in public Form1() then write method (write): privet void write(string s) { textbox1.text=s; } in form2 create button and textbox then in click event put: Form1.d(textbox1);
modified on Wednesday, January 20, 2010 6:53 PM