private void button1_Click(object sender, EventArgs e) { string path = Application.ExecutablePath; frmResources frmRe = new frmResources(dbl, path); frmRe.Show(); }
private void frmResourceRoleMapping_Load(object sender, EventArgs e) { if (shouldClose) { frmResources frmRsc = new frmResources(Rbacd, assemblyPath); frmRsc.Show(); this.Close(); } LoadRoles(); LoadResources(); }
private void resourcesUsed_Click(object sender, EventArgs e) { try { string path = Application.ExecutablePath; //Executable path frmResources frmResUsed = new frmResources(dbl, path); //Create an object and send a datalayer object in the constructor. frmResUsed.Show(); } catch (Exception) { throw; } }
private void resourcesUsed_Click(object sender, EventArgs e) { try { string path = Application.ExecutablePath;//Executable path frmResources frmResUsed = new frmResources(dbl, path); //Create an object and send a datalayer object in the constructor. frmResUsed.Show(); } catch (Exception) { throw; } }