K
kejeiri
When I use my Dll in which I defined my dataset the following error
occurs:
Object reference not set to an instance or (in French "Une exception
non gérée du type 'System.NullReferenceException' s'est
produite dans system.data.dll, Informations supplémentaires : La
référence d'objet n'est pas définie
à une instance d'un objet") is due to the use of this instruction :
....
...........
Dim fkc As ForeignKeyConstraint
Here ---> fkc = New ForeignKeyConstraint("personnePhysique_telephones",new
DataColumn(){Me.tablepersonnePhysique.personnePhysique_IdColumn}, new
DataColumn(){Me.tabletelephones.personnePhysique_IdColumn})<--- Here
Me.tabletelephones.Constraints.Add(fkc)
fkc.AcceptRejectRule = System.Data.AcceptRejectRule.None
fkc.DeleteRule = System.Data.Rule.Cascade
fkc.UpdateRule = System.Data.Rule.Cascade
..
..........
......
I checked the definition of all objects and apparently are well
defined.
Please what's wrong? Above u've whole code of my application
Sincerely yours
MOMO
occurs:
Object reference not set to an instance or (in French "Une exception
non gérée du type 'System.NullReferenceException' s'est
produite dans system.data.dll, Informations supplémentaires : La
référence d'objet n'est pas définie
à une instance d'un objet") is due to the use of this instruction :
....
...........
Dim fkc As ForeignKeyConstraint
Here ---> fkc = New ForeignKeyConstraint("personnePhysique_telephones",new
DataColumn(){Me.tablepersonnePhysique.personnePhysique_IdColumn}, new
DataColumn(){Me.tabletelephones.personnePhysique_IdColumn})<--- Here
Me.tabletelephones.Constraints.Add(fkc)
fkc.AcceptRejectRule = System.Data.AcceptRejectRule.None
fkc.DeleteRule = System.Data.Rule.Cascade
fkc.UpdateRule = System.Data.Rule.Cascade
..
..........
......
I checked the definition of all objects and apparently are well
defined.
Please what's wrong? Above u've whole code of my application
Sincerely yours
MOMO