Hi, I've used the Project Converter utility to convert a VB project and it can no longer be compiled. It seems that the converter replaced VB TextBox with ctlUniTextBoxXP, but did not change the event handlers signatures.
' Original code Private Sub txtTo_KeyPress(KeyAscii As Integer) ' Do Something End Sub
' New code in order for compilation to continue Private Sub txtTo_KeyPress(KeyAscii As Integer, Shift As Integer) ' Do the same thing End Sub
And this is only one event example.
it is very frustrating and time consuming to change every event signature. the converter should handle this automaticaly.