dot net components adjust font and form size
Posted: Sat Oct 05, 2024 9:53 am
I have a very simple VB.Net class that I am importing into LANSA as a dot net component. (This is just a simple sample class to demonstrate my issue)
Basically it just returns OK
When I run this inside my VL form, it messes with the font size and style of the form. I cannot figure out how to stop this. Has anyone run into and overcome this issue?
I have seen the same situation with c# class.
Before and After screenshots below...
Basically it just returns OK
When I run this inside my VL form, it messes with the font size and style of the form. I cannot figure out how to stop this. Has anyone run into and overcome this issue?
I have seen the same situation with c# class.
Before and After screenshots below...
Code: Select all
Public Class TestSuite
Public Function Ping() As String
Return "OK"
End Function
End Class