I load a Tabke from Access and using PCX.CubeMeasures.Add and PCX.MapAddCalculatedMeasure from vb program.
click to load another Table with other fields and another CubeMeasures and MapAddCalculatedMeasure
delete previous Measures with
For i = 0 To PCX.CubeMeasures.Count
PCX.CubeMeasures.delete (i)
Next i
and
For i = 0 To PCX.MapMeasureCount
PCX.MapDeleteCalculatedMeasure (PCX.MapMeasures(i).name)
Next i
and have a conflict. measures beacause they still are there although deleting
I need to load data without closing prograam and restarting
Thanks