G
Guest
I have a hierarcial structure that I want to have uses select from. ComboBox1
is Area1 then ComboBox2 is Area2, where Area 2 is defined as those areas that
have Area1 as a parent.
This is in Access2003 ADP application using SQL Server 2005 as the backend.
I have unsuccessfully define the RowSource for Area2 as:
select distinct ProgramArea2 from GiftsProgramArea where ProgramArea1 = +
Me.ProgramArea1
It seems that the whole liine is sent directly to SQL Server and does not
resolve the local reference first.
I have succussfully implemented this with the Area2 control's OnEnter event
where I set the control's RowSource by creating a string.
2 QUESTIONS:
1) Is there a way to do this with the control's RowSource attribute directly
without using an event procedure?
2) If I release the final applilcation to a file share and have each user
connect to a common ADP application, will concurrent users interfer with each
other as the event procedure updates the control's RowSource, or does each
user have their own local dataspace for this information?
Thanks,
John
is Area1 then ComboBox2 is Area2, where Area 2 is defined as those areas that
have Area1 as a parent.
This is in Access2003 ADP application using SQL Server 2005 as the backend.
I have unsuccessfully define the RowSource for Area2 as:
select distinct ProgramArea2 from GiftsProgramArea where ProgramArea1 = +
Me.ProgramArea1
It seems that the whole liine is sent directly to SQL Server and does not
resolve the local reference first.
I have succussfully implemented this with the Area2 control's OnEnter event
where I set the control's RowSource by creating a string.
2 QUESTIONS:
1) Is there a way to do this with the control's RowSource attribute directly
without using an event procedure?
2) If I release the final applilcation to a file share and have each user
connect to a common ADP application, will concurrent users interfer with each
other as the event procedure updates the control's RowSource, or does each
user have their own local dataspace for this information?
Thanks,
John