Posts by 00lenon • 164 points
8 posts
-
0
votes0
answers65
viewsQ: Problems with routes in ASP . Net MVC
Hello, I have the following route: routes.MapRoute("RelatorioDemonstrativoResultadoExercicio", "downloads/relatorios/Relatorio_DRE_{dataInicio}_{dataTermino}.pdf", new { controller =…
-
0
votes4
answers267
viewsA: Windows Phone, error saving text (Isolatedstorage)
By error, it has to do with permissions. Checks whether the class Isolatedstoragefile does not have anything related to permissions. The directory already exists? For more information, debug the…
-
1
votes2
answers1224
viewsA: How to fix this issue with Datagridview Check Box Cell?
I ended up correcting this mistake in a very simple way. Even when I tested, everything is working properly. I scheduled both events (Cellcontentclick and Cellcontentdoubleclick) to call the same…
-
1
votes2
answers1224
viewsQ: How to fix this issue with Datagridview Check Box Cell?
I’m having a problem with the Datagridview checkbox Cell: Click on checkbox, and it marks the Checkbox and updates a value field. I click again, and he does the opposite. Everything works normally,…
-
4
votes2
answers599
viewsQ: How to update backgroundWorker.Reportprogress() through a class in another project?
I read a text file that contains data from another database, upload that data line by line to a class, edit the required fields and then save it to the new database. This insertion processing…
-
0
votes2
answers67
viewsQ: How to convert Sender to a Form?
In my program, I need the following routine to work: private void FuncaoTal() { frmSelecao.FormClosing += atualizarEvento; SplitContMenu.Panel2.Controls.Clear();…
-
3
votes1
answer705
viewsQ: How do I make my Master Form know when a secondary form has been closed, without using Parent and Child?
I have my main form (image below), and in it a Split Container. I open a secondary form (which is currently displayed) on panel2 of SplitContainer, where the user selects an account to perform…
-
5
votes2
answers7874
viewsA: How to pass lines from one Datagridview to another?
So you can try it this way: Assuming your products have a unique ID, I suggest using a column like CheckBox in the DataGridView. Use the event from DataGrid "Cell Content Click" to verify that the…