S
Serge calderara
Dear all,
I have Class1 which belongs to myAssemby1. Class1 contains
columns structure of a table database as follow:
Class MyCustomer
...... some functoin and variables
Class CustomTable
public ID as long
public Customer as string
public Name as string
end class
end class
then in another assembly I have the same type of
infomation but defined as follow
Class MyBestCustomer
....
end function
...... some functoin and variables
Class BestCustomTable
public ID as long
public Customer as string
public Name as string
end class
end class
How can I update both data class in one shot as following?
MyCustomer.CustomTable = MyBestCustomer.BestCustomTable
I get an error saying "Cannot convert type x to type y"
Do u have any idea or tips how can I perform this inseat
of filling up individuial fields
thnaks for your help
regards
I have Class1 which belongs to myAssemby1. Class1 contains
columns structure of a table database as follow:
Class MyCustomer
...... some functoin and variables
Class CustomTable
public ID as long
public Customer as string
public Name as string
end class
end class
then in another assembly I have the same type of
infomation but defined as follow
Class MyBestCustomer
....
end function
...... some functoin and variables
Class BestCustomTable
public ID as long
public Customer as string
public Name as string
end class
end class
How can I update both data class in one shot as following?
MyCustomer.CustomTable = MyBestCustomer.BestCustomTable
I get an error saying "Cannot convert type x to type y"
Do u have any idea or tips how can I perform this inseat
of filling up individuial fields
thnaks for your help
regards