Posts by Ricardo Kenji Harasaki • 91 points
5 posts
-
0
votes2
answers8869
viewsA: Error "could not load ssl library" using Delphi 7 and Indy 10.0.52
As I recall, I had to install the Openssl for Windows library from this link https://slproweb.com/products/Win32OpenSSL.html. Only the DLL hadn’t solved.…
-
-1
votes1
answer730
viewsA: Fastreport prints blank space. (Delphi 2010)
Probably the property Keeptogether of the bands should be true, change to false and see if it solves your problem.
-
2
votes1
answer149
viewsQ: Alternatives for global variables
What would be the best practices to avoid the use of global variables? How to save the logged in user or a file name that will be accessed in several places for example?
-
3
votes1
answer141
viewsQ: What to test/implement in a viewmodel?
I am trying to implement a standard MVVM (Model - View - Viewmodel) that is related to MVP. Since Viewmodel, by my understanding, is responsible for "passing" the data from the View layer to the…
-
3
votes1
answer915
viewsQ: Test classes with dependencies (C# + Entity Framework)
I have a class "Sell" (summary of the class below) and in it I have a property "Orcamento". What would be the best way to do a unit test in this class? I came across 2 problems: Mock frameworks…