F
FrankS
What is the C# syntax to replace the Submit, Delete and New Record rules? For
example: here is a C# example to replace the Run Query Rule:
AdoQueryConnection queryMain =
(AdoQueryConnection)(DataConnections["Main connection"]);
queryMain.Command = "Select * from Table"
queryMain.Execute();
I am looking for the C# equivalent of Submit, Delete and New Record. Thanks.
example: here is a C# example to replace the Run Query Rule:
AdoQueryConnection queryMain =
(AdoQueryConnection)(DataConnections["Main connection"]);
queryMain.Command = "Select * from Table"
queryMain.Execute();
I am looking for the C# equivalent of Submit, Delete and New Record. Thanks.