Which Initialize would I put it on? For the button that creates the additional instance of the subform?
Currently on the click even of the button I have this
Awardees.instanceManager.addInstance(1).presence = "visible";
I have tried to add an if statement after that saying
if (Main.Campus.Urbana.rawValue == "1")
{Main.PreApproved.Awardees.Table1.Row1.AwardType.rawValue = "";
Main.PreApproved.Awardees.Table1.Row1.AwardType.clearItems();
Main.PreApproved.Awardees.Table1.Row1.AwardType.addItem("Excellence in Faculty Mentoring Award");
Main.PreApproved.Awardees.Table1.Row1.AwardType.addItem("Excecutive Officer Distinguished Leadership Award");
Main.PreApproved.Awardees.Table1.Row1.AwardType.addItem("Outstanding Faculty Leadership Award");
Main.PreApproved.Awardees.Table1.Row1.AwardType.addItem("Campus Award for Excellence in Instruction");
Main.PreApproved.Awardees.Table1.Row1.AwardType.addItem("Chancellor's Academic Professional Excellence Award (CAPE)");
Main.PreApproved.Awardees.Table1.Row1.AwardType.addItem("Chancellor's Distinguished Staff Award");
Main.PreApproved.Awardees.Table1.Row1.AwardType.addItem("Service Recognition Award")}
But that isn't working?