Skip to Content
0
Former Member
Feb 28, 2009 at 02:14 PM

SAP 2007 - Field Date Picker stop my addon

20 Views

Hi

I am creating a field type date with code down. But when click in icon of calendar my addon stop.

oUserDataSource = oForm.DataSources.UserDataSources.Add("DTEnt", SAPbouiCOM.BoDataType.dt_DATE, 254);

oItem = oForm.Items.Add("18", SAPbouiCOM.BoFormItemTypes.it_EDIT);

oItem.Left = 620;

oItem.Top = 310;

oItem.Width = 80;

oItem.Height = 15;

oEdit = (SAPbouiCOM.EditText)(oItem.Specific);

oEdit.DataBind.SetBound(true, "", "DTEnt");

Thanks