Currently have a MDI document which loads in class assemblies. Each is totally independent of the other, for example one form could deal with names and addresses, the other with telephone numbers.
What I want to happen however is the following:
Suppose I have 2 assemblies, one called address.dll, the other telephone.dll
The address.dll looks as a dataset called "Names", then "Address", all of which are created and bound at design time.
The telephone.dll looks at a dataset called "telephone", but needs to retrieve an identidier based on the "Names" dataset.
Therefore, I've created a new form and added a reference to "address.dll" and want to have something like...
(this is on the telephone form)
Me.dsTelephoneDataset=dsTelephones
Me.dsNamesDataset=AddressAssembly.frmMain.dsNames
And whatever record I pick on the address form, the telephone form automatically changes it's record to match the correct one. Likewise any 'scrolls' through the telephone.dll will also change the record to the correct one on the address form.
Any ideas on how it can be done?
What I want to happen however is the following:
Suppose I have 2 assemblies, one called address.dll, the other telephone.dll
The address.dll looks as a dataset called "Names", then "Address", all of which are created and bound at design time.
The telephone.dll looks at a dataset called "telephone", but needs to retrieve an identidier based on the "Names" dataset.
Therefore, I've created a new form and added a reference to "address.dll" and want to have something like...
(this is on the telephone form)
Me.dsTelephoneDataset=dsTelephones
Me.dsNamesDataset=AddressAssembly.frmMain.dsNames
And whatever record I pick on the address form, the telephone form automatically changes it's record to match the correct one. Likewise any 'scrolls' through the telephone.dll will also change the record to the correct one on the address form.
Any ideas on how it can be done?