Group: StrataFrame Users
Posts: 223,
Visits: 893
|
I started my database by using a copy of the Strataframe Example database which had the Security tables. I open the Security Dialog box through code (see below). The editor allows me to add/edit users and roles, but not permissions. What is wrong?
Program.cs Code:
System.Data.SqlClient.SqlConnectionStringBuilder builder = new System.Data.SqlClient.SqlConnectionStringBuilder();
builder.DataSource = "1LPJPAGLEY\\SQLEXPRESS";
builder.InitialCatalog = "CEI";
builder.UserID = "sa";
builder.Password = "access";
DataLayer.DataSources.Add(new SqlDataSourceItem("", builder.ConnectionString));
//Set the data source key for the security tables
SecurityBasics.SecurityDataSourceKey = "";
Form Code:
MicroFour.StrataFrame.Security.SecurityDialog frm = new MicroFour.StrataFrame.Security.SecurityDialog();
frm.ShowDialog();
Thanks,
Jeff
|