Click here to Skip to main content
15,892,199 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionAdding a flash webcam photo capture Pin
lhsunshine16-Dec-12 19:33
lhsunshine16-Dec-12 19:33 
AnswerRe: Adding a flash webcam photo capture Pin
Eddy Vluggen17-Dec-12 0:42
professionalEddy Vluggen17-Dec-12 0:42 
GeneralRe: Adding a flash webcam photo capture Pin
lhsunshine17-Dec-12 1:55
lhsunshine17-Dec-12 1:55 
AnswerRe: Adding a flash webcam photo capture Pin
Eddy Vluggen17-Dec-12 2:01
professionalEddy Vluggen17-Dec-12 2:01 
GeneralRe: Adding a flash webcam photo capture Pin
lhsunshine17-Dec-12 2:07
lhsunshine17-Dec-12 2:07 
QuestionRe: Adding a flash webcam photo capture Pin
Eddy Vluggen17-Dec-12 2:09
professionalEddy Vluggen17-Dec-12 2:09 
AnswerRe: Adding a flash webcam photo capture Pin
lhsunshine17-Dec-12 13:49
lhsunshine17-Dec-12 13:49 
AnswerRe: Adding a flash webcam photo capture Pin
Eddy Vluggen18-Dec-12 2:01
professionalEddy Vluggen18-Dec-12 2:01 
You'll have to debug the CreatePhoto method, and verify the contents of the variables. Also verify that the user has the correct access-rights to that folder.

A few remarks on the code;
  • It'd be advisable to dispose objects that support it. Ideally, you'd wrap it with a using-argument, so that it gets disposed as soon as we're out of scope. E.g.;
    C#
    using (var fs = new FileStream(args here))
    {
      //place where you can access the stream
    }
  • Catching an exception just to rethrow it, is technically the same as not catching the exception in the first place. If there's an exception, write it to the screen, a logfile, anything.
  • Concatenating paths would best be done using Path.Combine.

Bastard Programmer from Hell Suspicious | :suss:
If you can't read my code, try converting it here[^]
They hate us for our freedom![^]

GeneralRe: Adding a flash webcam photo capture Pin
lhsunshine18-Dec-12 18:03
lhsunshine18-Dec-12 18:03 
GeneralRe: Adding a flash webcam photo capture Pin
lhsunshine18-Dec-12 19:18
lhsunshine18-Dec-12 19:18 
GeneralRe: Adding a flash webcam photo capture Pin
Eddy Vluggen18-Dec-12 20:40
professionalEddy Vluggen18-Dec-12 20:40 
GeneralRe: Adding a flash webcam photo capture Pin
lhsunshine19-Dec-12 2:28
lhsunshine19-Dec-12 2:28 
QuestionMessage Removed Pin
16-Dec-12 7:11
watercoldworld16-Dec-12 7:11 
QuestionSplitting a url Pin
El Dev14-Dec-12 22:02
El Dev14-Dec-12 22:02 
Questionpulling across value from list to display in view Pin
xnaLearner14-Dec-12 5:58
xnaLearner14-Dec-12 5:58 
AnswerRe: pulling across value from list to display in view Pin
xnaLearner14-Dec-12 6:49
xnaLearner14-Dec-12 6:49 
AnswerRe: pulling across value from list to display in view Pin
David C# Hobbyist.14-Dec-12 17:41
professionalDavid C# Hobbyist.14-Dec-12 17:41 
GeneralRe: pulling across value from list to display in view Pin
xnaLearner15-Dec-12 8:28
xnaLearner15-Dec-12 8:28 
QuestionMessage Removed Pin
13-Dec-12 5:57
xnaLearner13-Dec-12 5:57 
Questionproblem with relationships Pin
xnaLearner13-Dec-12 2:45
xnaLearner13-Dec-12 2:45 
AnswerRe: problem with relationships Pin
Richard Deeming13-Dec-12 3:48
mveRichard Deeming13-Dec-12 3:48 
GeneralRe: problem with relationships Pin
xnaLearner13-Dec-12 4:37
xnaLearner13-Dec-12 4:37 
Question[VB.NET 2008] DataSet and XML files Pin
steve_949661313-Dec-12 0:06
professionalsteve_949661313-Dec-12 0:06 
AnswerRe: [VB.NET 2008] DataSet and XML files Pin
Eddy Vluggen13-Dec-12 4:28
professionalEddy Vluggen13-Dec-12 4:28 
GeneralRe: [VB.NET 2008] DataSet and XML files Pin
steve_949661313-Dec-12 21:21
professionalsteve_949661313-Dec-12 21:21 

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.