Click here to Skip to main content
15,890,557 members
Home / Discussions / C#
   

C#

 
QuestionWhy I can't get the WM_CREATE msg in the PreFilterMessage method Pin
hwswin14-Jun-09 19:49
hwswin14-Jun-09 19:49 
AnswerRe: Why I can't get the WM_CREATE msg in the PreFilterMessage method Pin
N a v a n e e t h14-Jun-09 20:58
N a v a n e e t h14-Jun-09 20:58 
GeneralRe: Why I can't get the WM_CREATE msg in the PreFilterMessage method Pin
hwswin14-Jun-09 21:21
hwswin14-Jun-09 21:21 
GeneralRe: Why I can't get the WM_CREATE msg in the PreFilterMessage method Pin
hwswin14-Jun-09 22:19
hwswin14-Jun-09 22:19 
GeneralRe: Why I can't get the WM_CREATE msg in the PreFilterMessage method Pin
N a v a n e e t h14-Jun-09 22:34
N a v a n e e t h14-Jun-09 22:34 
GeneralRe: Why I can't get the WM_CREATE msg in the PreFilterMessage method Pin
N a v a n e e t h14-Jun-09 23:11
N a v a n e e t h14-Jun-09 23:11 
AnswerRe: Why I can't get the WM_CREATE msg in the PreFilterMessage method Pin
hwswin15-Jun-09 15:25
hwswin15-Jun-09 15:25 
QuestionTake picture from Webcam (problem) Pin
S K Y14-Jun-09 18:04
S K Y14-Jun-09 18:04 
Curently i take a picture from webcam and load into the picture box by this way. take picture and save in to hard disk and load it again into picture box. is there any easy way to do this?

try
            {
                DeviceManager manager = new DeviceManagerClass();
                Device d = null;
                foreach (DeviceInfo info in manager.DeviceInfos)
                {
                    d = info.Connect();
                }
                int i = 0;
                Item item = d.ExecuteCommand(CommandID.wiaCommandTakePicture);
                foreach (string format in item.Formats)
                {
                    WIA.ImageFile imagefile = item.Transfer(format) as WIA.ImageFile;
                    imagefile.SaveFile("d:\\" + i + ".jpeg");
                    pictureBox1.Image = Image.FromFile("d:\\" + i + ".jpeg");
                    i++;


A S E L A

AnswerRe: Take picture from Webcam (problem) Pin
Christian Graus14-Jun-09 18:22
protectorChristian Graus14-Jun-09 18:22 
GeneralRe: Take picture from Webcam (problem) Pin
S K Y14-Jun-09 19:14
S K Y14-Jun-09 19:14 
QuestionWebBrowser in VS2008 Pin
trinm198714-Jun-09 14:56
trinm198714-Jun-09 14:56 
AnswerRe: WebBrowser in VS2008 Pin
Christian Graus14-Jun-09 17:52
protectorChristian Graus14-Jun-09 17:52 
AnswerRe: WebBrowser in VS2008 Pin
trinm198714-Jun-09 20:29
trinm198714-Jun-09 20:29 
QuestionDisplay a grid of all character of a font Pin
baranils14-Jun-09 12:04
baranils14-Jun-09 12:04 
AnswerRe: Display a grid of all character of a font Pin
PIEBALDconsult14-Jun-09 15:12
mvePIEBALDconsult14-Jun-09 15:12 
AnswerRe: Display a grid of all character of a font Pin
_Maxxx_14-Jun-09 15:21
professional_Maxxx_14-Jun-09 15:21 
GeneralRe: Display a grid of all character of a font Pin
Luc Pattyn14-Jun-09 15:29
sitebuilderLuc Pattyn14-Jun-09 15:29 
GeneralRe: Display a grid of all character of a font Pin
_Maxxx_14-Jun-09 16:56
professional_Maxxx_14-Jun-09 16:56 
GeneralRe: Display a grid of all character of a font Pin
Luc Pattyn14-Jun-09 16:58
sitebuilderLuc Pattyn14-Jun-09 16:58 
GeneralRe: Display a grid of all character of a font Pin
_Maxxx_14-Jun-09 19:07
professional_Maxxx_14-Jun-09 19:07 
GeneralRe: Display a grid of all character of a font Pin
baranils14-Jun-09 19:46
baranils14-Jun-09 19:46 
GeneralRe: Display a grid of all character of a font Pin
Member 400112014-Jun-09 23:45
Member 400112014-Jun-09 23:45 
QuestionC# ToolstripMenu question Pin
Dj_AviAtriX14-Jun-09 12:00
Dj_AviAtriX14-Jun-09 12:00 
AnswerRe: C# ToolstripMenu question Pin
I Believe In GOD14-Jun-09 12:29
I Believe In GOD14-Jun-09 12:29 
GeneralRe: C# ToolstripMenu question Pin
Dj_AviAtriX14-Jun-09 12:38
Dj_AviAtriX14-Jun-09 12:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.