How to show my property in the IDE
I have created a property for a TextBox:
private long h_VehicleFK;
public long VehicleFK
{
get
{
return h_VehicleFK;
}
set
{
h_VehicleFK = value;
}
}
Is there a way to make the property show up in the Properties list slide out of the IDE?
Thanks
xmail123Posted Jun 29, 2004, 2:04 PM
Andrzej WegierskiPosted Jun 28, 2004, 4:38 AM