Posts by famelttl • 179 points
4 posts
-
1
votes2
answers329
viewsQ: BD ACCESS does not accept INSERT or UPDATE
I have a solution in C# with access database that accepts SELECT, but does not accept INSERT or UPDATE, Follow code of the insert button: OleDbConnection con = new OleDbConnection();…
-
1
votes1
answer504
viewsQ: Count and access checkbox marked
I need to count checkboxes that are marked on a panel and are horizontal. It’s Windows form, C#. I couldn’t format a listbox to the horizontal, so it’s in a panel. But I’d like to count them and…
-
2
votes1
answer1822
viewsQ: Concatenate address in VBA Excel Range Object
I need to concatenate an address in the Excel Range Object and I’m not getting it. The value is an Integer variable. Follow the line of code: Range("O10").Formula = "=SUM(O12:O" & "valor)"…
-
13
votes7
answers10092
viewsQ: How to make child form change values in parent form C#?
I have a register in C#. There is a "street search" button that opens a form search child. When executing the search, displays the result in the datagrid that form son. I would like the event…