Posts by Rosberg Guedes • 95 points
5 posts
-
0
votes1
answer42
viewsA: Specsync4mtm problem
You must install Specsync.MTM via Nuget. Or by command line: Install-Package SpecSync.MTM -Version 1.6.0 Dlls are automatically installed by the package.
-
1
votes1
answer395
viewsQ: What is the difference between Table and Matrix and List in Report View?
So far in my reports I have been using tables and I link my datasets to those. But today I needed to use a List to create a card (I’m still trying to understand how it works). When to use Table,…
-
0
votes0
answers434
viewsQ: I need to pick up and display a list of client objects by Id
MY CLASS CLIENTEBUS class ClienteBus:AplicacaoBus<Cliente> { public ClienteBus() { Tabela = new List<Cliente>(); } } MY CLIENT CLASS class Cliente:Entity { private static int _Id; public…
-
0
votes1
answer419
viewsQ: Can I use Css within a Swing application?
It is possible to style a java application made in Swing, using css or javascript?
-
8
votes1
answer2886
viewsQ: How to represent the MVC classes in UML?
How to represent the classes of the mvc model at UML? A colleague told me that he only puts Control in his modeling. Is that correct? Another question would be whether I need to put the connection…