Ausing HIP2007 is
Adding the HIP2007 was one of my attempts to resolve a previous problem.
The conttrol is not recognized. When entered it as
lblProject.Text = "Test";
Intellisense did not work and I got this error when trying to compile:
Error 1 The name 'lblProject' does not exist in the current context C:\Users\dbuchanan.CBACONSULTINGSE\Documents\HIP2007\HIP2007\Forms - 01 Layout\ManageTasks.cs 22 13 HIP2007
Next I tried
ctlCustProjContr1.lblProject.Text = "Test";
Intellisense still did not work and I got this error:
Error 1 'HIP2007.ctlCustProjContr.lblProject' is inaccessible due to its protection level C:\Users\dbuchanan.CBACONSULTINGSE\Documents\HIP2007\HIP2007\Forms - 01 Layout\ManageTasks.cs 21 31 HIP2007
The control is there, and the modifier is set to "Protected"
What is the problem and solution to this?