intellisense

  • Thread starter Thread starter Rahul
  • Start date Start date
R

Rahul

Hi,
I have a class called "myclass", with a property "Deal"
I want to show my prgrammers (while they are using the object to myclass)
available "Deals" which are available in XML file
as intellisense

ex. objmyclass.Deal. <All values from xml>

I tried but nothing worked... If anybody has a solution please reply...

Rahul
 
Rahul,
If your property of enumerated type, it will intellisense possible values,
for example

Public Enum Deals
Deal1
Deal2
End Enum

Public Property Deal() As Deals
....
End Property

HTH
 
but i want it at design time ... when the programmer is writing a code ..
I didn't really get it ...

Rahul
 
Rahul,

Not sure what you mean - VB will intellisense enumerations - if you want to
expand on the requirements, please provide more details.

Sergey
 
I want it dynamically to happen ... say I add a new value later, that should
also get reflected,

Rahul
 
Back
Top