Duplicate Component name WebOpenDialog1

I drop a TWebOpenDialog on my form. It's the only TWebOpenDialog component in my project. I run my app and open the form. I do nothing else with the component at this point.

Here's my form's BeforeLoadDFMValues:

procedure TfrmMyListingPictures.LoadDFMValues;
begin
inherited LoadDFMValues;

MyPicturesContainer := THTMLContainer.Create('MyPicturesContainer');
WebOpenDialog1 := TOpenDialog.Create(Self);

MyPicturesContainer.BeforeLoadDFMValues;
WebOpenDialog1.BeforeLoadDFMValues;
try
Name := 'frmMyListingPictures';
Width := 1200;
Height := 491;
SetEvent(Self, 'OnShow', 'WebFormShow');
MyPicturesContainer.SetParentComponent(Self);
MyPicturesContainer.Name := 'MyPicturesContainer';
MyPicturesContainer.Left := 48;
MyPicturesContainer.Top := 48;
MyPicturesContainer.Width := 625;
MyPicturesContainer.Height := 241;
MyPicturesContainer.WidthStyle := ssAuto;
MyPicturesContainer.HeightPercent := 100.000000000000000000;
MyPicturesContainer.WidthPercent := 100.000000000000000000;
MyPicturesContainer.ChildOrder := 1;
MyPicturesContainer.ElementFont := efCSS;
MyPicturesContainer.ElementPosition := epRelative;
WebOpenDialog1.SetParentComponent(Self);
WebOpenDialog1.Name := 'WebOpenDialog1';
WebOpenDialog1.Left := 432;
WebOpenDialog1.Top := 320;
finally
MyPicturesContainer.AfterLoadDFMValues;
WebOpenDialog1.AfterLoadDFMValues;
end;
end;

I couldn't reproduce this.
There must be something specific in your app.
If the problem persists, can you isolate this and send a sample source project with which we can reproduce this here so we can inspect?

I'll try to put a test app together.

On a different note, I noticed my installation has two WebLib.Utils.pas files, an older one in the "Component Library Source" folder, and a newer one in the "Core Source" folder. The older one does not include Base64ToArrayBuffer. When I installed the registered version, I had completely removed all of the TMS web core folders.. so not sure if the older file is being including in your registered version or not.. Just thought I'd share just in case.

We've sync'd WEBLib.Utils.pas for v2.0