Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS General Discussion » Can i move CExtPropertyValue from a CExtPropertyStore to a CExtPropertyStore ? Collapse All
Subject Author Date
bj Lee Oct 11, 2006 - 6:46 PM

----------------------------------------------------------------------------------------------------------------------------
CExtPropertyStore * A = new ..;

..Add category and value item

CExtPropertyStore * B = new ..;

..Add category and value item

CExtPropertyStore Comb;
Comb.Combine(A); Comb.Combine(B);

CExtPropertyGridComboBoxBar * pCombo = STATIC_DOWNCAST(CExtPropertyGridComboBoxBar....

pCombo->PropertyStoreInsert(&Comb);
------------------------------------------------------------------------------------------------------------------------------

i wanna move a CExtPropertyValue of A to B, and UI must be just updated..
Please let me know how to move...

Thanks.