Hi I am having problems with the combo box that is filled by the business object. I then would like to be able to tell the formload do the following. the problem is the combo box does not have all of the records yet. If I place a button on the form tell the combo box cboScheduleType.SelectedValue = 1 then it works.
Please help
Thanks Mike
With LK_ScheduleActivityBO1
.FillScheduleTable(m_intQueryedID, m_intContactRecordID, m_ScheduleType) Select Case m_intLoad Case FormLoadBy.Record_Edit .
SeekToPrimaryKey(m_intRecordID) ' Move to the requested edit record .
Edit() Case FormLoadBy.Record_New .
Add() .
Edit()End Select cboScheduleType.SelectedValue = 1 ' m_CallType
End With