Posts by Tamires • 151 points
6 posts
-
10
votes2
answers440
viewsQ: Export Reportviewer report to CSV
In the Reportviewer using Winforms, when creating the report I only have the option to export to PDF, Excel and Word and need to add the option to export in CSV.
-
1
votes1
answer879
viewsA: Change column color (Chart) with values above the limit
I managed to do it this way... Series D = new Series("", listaLotes.Count); D.ChartType = SeriesChartType.Column; for (int i = 0; i < listaLotes.Count; i++) { D.Points.AddXY(i + 1,…
-
0
votes1
answer879
viewsQ: Change column color (Chart) with values above the limit
I’m making a report for winforms using the Viewer REPORT, in this report I added a column chart. What I need to do is that before loading the report the user can choose what value is good for it,…
-
1
votes1
answer69
viewsA: Multiple threads can interfere with timerControl
well I managed to use them in the following way leaving it active from the beginning and when the test condition is true I change your interval(inside the tick event was the only way to change)and…
-
2
votes1
answer69
viewsQ: Multiple threads can interfere with timerControl
I am developing a program that contains more than 10 threads running ... has emerged the need to have two timers, one to block and the other to release a process, so I am using Winforms timerControl…
-
1
votes1
answer728
viewsQ: List Human Interface Devices using C#
I am facing difficulty in figuring out how to list and access a device on PC, remembering that although the entry is USB it is recognized as a HID human interface device type mouse or keyboard. Well…