CreateUniqueName
                    Hi,
is there some special technique to using this method (especially CreateUniqueNames in table object) because it doesn't work at me. Thanks
                
                            is there some special technique to using this method (especially CreateUniqueNames in table object) because it doesn't work at me. Thanks
Comments
You need to set object's Parent first:
obj.Parent = band;
obj.CreateUniqueName();
In case you working with Table, you need to call its CreateUniqueNames() method which creates names for rows, columns and cells.
Thanks for kick me in. My table was added into page but page wasn't in Report when I call? CreateUniqueNames(). Now it's working like a dream