Posts by Daniel Souto • 35 points
4 posts
-
1
votes1
answer79
viewsQ: PHP and C#communication error
I’m trying to send a C# data to PHP, but the example I find and all solutions simply result in the same error. using System.Net; using System.Collections.Specialized; string valor = "1"; string…
-
2
votes2
answers4833
viewsQ: Error: Invalid thread operation
I’m trying to open the Webcam, but every time I try to execute the method iniciarwebcam() it returns me the error: There was an exception of type "System.Invalidoperationexception" in…
c#asked Daniel Souto 35 -
0
votes0
answers118
viewsQ: I can’t program a jFrame button
Every time I double-click the button to open Actionperformed from it, Netbeans creates it in the middle of another button’s Actionperformade. Original code: private void…
netbeansasked Daniel Souto 35 -
0
votes1
answer87
viewsQ: What kind of function should I use?
I’m trying to develop an application where when the value of a bool variable changes to false it must run a script. Should I use background_work to do this? If so, how should I use it? And if not,…