| |
| |
|
| |
Code
conversion and Migration – VB.Net |
| |
|
| |
|
| |
|
| |
In the process of migration, both application's presentation and business logic will be moved in to WinForm and business object respectively. Both the WinForm and business objects scripts reside as VB.Net scripts. |
| |
|
| |
Presentation
Logic - The scripts like menu navigation, enable/disable
the menu and tool bars, enable/disable the window or user
object controls will be moved in to the WinForm. |
| |
|
| |
Business
Logic - The scripts from the window events, functions,
user objects, datawindow control events, button events
as part of the data validation, retrieve and update, which
require the database connection, as business objects. |
| |
|
| |
Global
Variables - Any global variables used in the presentation
or business logic is converted as a global variable, where,
it is needed by the WinForm or by the business objects. |
| |
|
| |
Global
Functions - The global functions, which are part
of the business logic, are converted as global functions.
|
| |
|
| |
|
|
|
|
|