I would like to copy an existing Table(not file) to a new "temporary Table" that i would then use(so i dont modify the original Table).
Can i do this in Designer or using C# ?
I tired this in C# but for some reason the project Fails to even start:
Created "orgTable" and "orgTableTemp" in Designer. Then inserted a C$ code:
------
var orgTable = project.Tables["orgTable"];
project.Tables["orgTableTemp"] = orgTable;
-----
regards,
G
Can i do this in Designer or using C# ?
I tired this in C# but for some reason the project Fails to even start:
Created "orgTable" and "orgTableTemp" in Designer. Then inserted a C$ code:
------
var orgTable = project.Tables["orgTable"];
project.Tables["orgTableTemp"] = orgTable;
-----
regards,
G