My program will have a series of parameters that are the following example:
Public Module Program
Public h As String = "[host]"
Public port As Integer = "[port]"
Public meltf As String = "[M]"
Public Name As String = "[vn]"
Public Y As String = "/j|n\"
End Module
And I want from my other program to override these values:
Public Class Form1
//Aqui es donde sobrescribire los valores de mi programa de arriba.
End Class
It will be a form where I will enter the values and I will overwrite them in my other program with the corresponding values. In principle I have no idea how to start solving it in principle would have to overwrite just that the parameters. Resolution example:
I have two programs. One where I enter the data, because that data entered will modify the value of my other program by assigning each field its value either each string example host="127.0.0.1".
If more details are missing, I'll try to correct it.