Is there something built in for checking the existence of a permission key, other than using the business object directly or is there a better approach.
Thanks
Tim
Thanks.
loCommand.Parameters.Add("@pm_key",VarChar)loCommand.parameters(0).value = "YourKey"
If CType(Databasics.DataSources("").ExecuteScalar(loCommand), Integer) > 0 Then '-- It existsEnd If
"A class derived from MicroFour.StrataFrame.Business.BusinessLayer must override the property 'TableSchema'"
I have never seen this error before on a BO. Do I have to do something special for the Permissions Business Object?
More than likely you did not build the partial class for the BO. The TableSchema is an abstract property that must be overwritten. If you look at another BO you will see what this property contains. Let me know if you need more explanation.