Maik,
Thank you for your response.
I tried deriving the code from the article however it is not getting any properties.
Below is a sample of my code.
System.Reflection.PropertyInfo[] propertyInfos;
propertyInfos = typeof(SAPbobsCOM.Documents).GetProperties();
foreach (System.Reflection.PropertyInfo propertyInfo in propertyInfos)
{
listBox1.Items.Add(propertyInfo.Name);
}
There is no propertyInfo to loop in propertyInfos.