Posts by Dani • 66 points
3 posts
-
4
votes3
answers821
viewsA: Problem between C# system and Warsaw plugin (GAS Technology)
Finally solved my problem with this plugin! I spent a few months with this problem, without detecting that the cause was the plugin, with forms turning white, system getting slow and even totally…
-
1
votes1
answer303
viewsA: Change the Formborderstyle property to None without losing the Sizable functions in C#
You can resize the form using the Wndproc method. Run a test using the code below: public partial class Form1 :Form { public Form1() { InitializeComponent(); } private int borderWidth = 5; //Exemplo…
-
0
votes2
answers5346
viewsA: Automappermappingexception: Missing type map Configuration or Unsupported Mapping
Try to replace the line: d = _map.Map<VMDominioDetails>(dBDominio); for: Mapper.Map(dBDominio,d);