I have a type variable:
later within the program I have:
This actually compiles.
There is no other variable named OrganizationCode defined in any other place including all other activities and services.
The correct DIM should be
Thanks,
B4X:
Type Lic (OrganizationCode As String, GroupCode As String, CPULicense As String, _
Addr1 As String, Addr2 As String, City As String, State As String, ZipCode As String, _
MainPhone As String, MobilePhone As String, FirstName As String, Lastname As String, _
DataIPAddress As String, DataIPPort As String, VerIPAddress As String, VerIPPort As String)
Dim LicenseData As Lic
B4X:
OrganizationCode = edtOrganization.Text
There is no other variable named OrganizationCode defined in any other place including all other activities and services.
The correct DIM should be
B4X:
LicenseData.OrganizationCode = edtOrganization.text