Hi
 
I have tried to update model from code for a vb class however only new methods that are added to the class  are getting updated with the full code  however the existing methods in the class are remaining as they were.
 
For instance when we have
 
Class ClassA 
------------------------------------------------
 
public  sub x
 
    step1
    step 2
 
end sub
---------------------------------------------
 
In the model and we update code and get code for the same and add a sub y  and make some modifications in sub x
 
Class ClassA 
------------------------------------------------
 
public  sub x
 
    step1
    step 2
 
    step 3    - newly added
    step 4    - newly added
 
end sub
 
public  sub y   - newly added
 
    step10
    step 11
 
end sub
 
---------------------------------------------
 
 
ultimately when I update the model from the code I get y and the code completely but x is not getting the new additions. Step 4 and step 5 are not reflected in the model.
 
 
 
 
 

TAI
Vikram K

Reply via email to