Anyone have any ideas?
I started with just trying to populate a combobox and am having issues.....
I figure I can write a query....get that to work and them populat the combobox...
I can work on updaing the fields later....
I tried this and the .AddItem is not working...any thoughts
Dim objRS2, objSelLayer2, objEFPageOneControls2, objEditForm2
Set objSelLayer2 = Map.SelectionLayer
Set objRS2 = objSelLayer2.Records
objRS2.Bookmark = Map.SelectionBookmark
Set objEditForm2 = application.map.layers("Supports").forms("EDITFORM")
Set objEFPageOneControls2 = objEditForm2.Pages("page2").Controls
objEFPageOneControls2("Combo1").AddItem = "One"
objEFPageOneControls2("Combo1").AddItem = "Two"