Posts by Mikev • 156 points
3 posts
-
3
votes1
answer79
viewsA: How to close an Excel application in C #
_workbooks.Close(0); _app.Quit(); or else _workbooks.Close(true);
-
1
votes2
answers30
viewsA: Parameters of the Abels in Printpage
If I’m not mistaken, you just have to do something like this: e.Graphics.DrawString(label_nota_entrega.Text, label_nota_entrega.BackColor = Color.Red, new Font("Arial", 14, FontStyle.Bold),…
-
1
votes2
answers68
viewsA: How to take what was returned from a Task
After the taskCreateItems.Start(); Place var str_recebida = await taskCreateItems; Don’t forget to put the function as Async for example: private async void btn_Send_Click(object sender, EventArgs…