Posts by GNULopes • 63 points
7 posts
-
1
votes1
answer410
viewsA: C# Forms Windows Forms Do Not Open After VS 2013 Update to VS 2015
Executable was related to Visual Studio 2013, uninstalled VS 2013, cleaned all records, went back to VS2015 and worked.
-
0
votes1
answer410
viewsQ: C# Forms Windows Forms Do Not Open After VS 2013 Update to VS 2015
I installed Visual Studio 2015 and opened a VS 2013 project, after which old C# Windows Forms do not open. Use the F5, the debug menu appears but does not open anything on the screen, the project…
-
1
votes1
answer65
viewsA: Controls Do Not Appear in Windows 10
When upgrading from Windows 7 to Windows 10 the video driver did not provide more compatibility, thus leaving the forms of various systems as photos attached to the question. Updating the video…
-
1
votes1
answer65
viewsQ: Controls Do Not Appear in Windows 10
After upgrading to Windows 10, the components are missing in my forms, only the cursor appears in the field. I’ve changed colors from the background, from the sources, but it didn’t work.…
-
2
votes1
answer521
viewsQ: Get child tag reference from XML C#
XML: <?xml version="1.0" encoding="UTF-8"?> <clientes> <cliente> <nome>Cliente1</nome> <contatos> <contato> <nome>Contato1</nome>…
-
0
votes2
answers1191
viewsA: Csharp Fill Combobox with query, but bring already selected the option saved in the bank
I was able to set the product.pro_local field in Selectedvalue. As it turned out: cbLocal.DisplayMember = "loc_descricao"; cbLocal.ValueMember = "loc_cod"; cbLocal.DataSource =…
-
1
votes2
answers1191
viewsQ: Csharp Fill Combobox with query, but bring already selected the option saved in the bank
I have a product registration screen with a LOCAL Combobox. Product table has the LOCAL ID, called pro_local. And the local table the fields loc_cod and loc_descricao My combobox is filled with the…