Posts by TotallyUncool • 295 points
8 posts
-
2
votes3
answers71
viewsA: Compiler accusing error I don’t know
I think the error is in the function statement. It should be something like: int sumofDie(int *value1, int *value2) or else int sumofDie(int value1[], int value2[]) or int sumofDie(int value1[7],…
-
9
votes5
answers819
viewsQ: Is the rest of the code inside Try executed after finding Exception?
The rest of the existing code within a try is executed after finding a exception or jumps right into the code inside the catch(Exception e) try{ x = 10; //alguns erro de try catch x = 20; } catch…
-
3
votes3
answers682
viewsQ: What is the difference between Smtpclient.Sendasync and Smtpclient.Send() using Thread?
What difference between using SmtpClient.SendAsync() and create threads and execute the SmtpClient.Send() for messaging? There is a lot of difference in performance or resource consumption?…
-
1
votes1
answer438
viewsQ: Fast and continuous change of the background color of a Panel
I’m trying to get a panel to constantly change color with the following code while (true) { panelColor.BackColor = Color.Blue; Thread.Sleep(500); panelColor.BackColor = Color.Red; Thread.Sleep(500);…
-
4
votes1
answer74
viewsQ: Is there Smtpclient.Timeout with infinite value?
Is there any way to put SmtpClient.Timeout with the infinite value? If so, how?
-
2
votes1
answer40
viewsA: Why doesn’t my Datagrid add anything?
Apparently by mistake, it seems that the InitializeComponent(); inside the form constructor public TelaQuadroAdm() public TelaQuadroAdm() { InitializeComponent(); }…
c#answered TotallyUncool 295 -
4
votes1
answer76
viewsQ: Is it possible to delete "C:" using Directory.Delete?
Using Directory.Delete("C:", true) deletes partition? Or it is just locked and does not run?
-
3
votes1
answer245
viewsQ: How to add image on second page with setAbsolutePosition iTextSharp C#?
I would like to know if it is possible to use the setAbsolutePosition to add an image to the second page of the document built in iTextSharp PDF. if possible, as?