kattunga / IWBootstrapFramework

Intraweb Bootstrap 3 Framework for Delphi
http://kattunga.github.io/IWBootstrapFramework
MIT License
98 stars 42 forks source link

File missing #21

Closed robertonicchi closed 8 years ago

robertonicchi commented 8 years ago

The file dclIWBootStrapXE6.dres is missing recompiling dclIWBootstrapXE6.bpl

kattunga commented 8 years ago

That file is not part of sources. It is automatically generated when you open and build dclIWBootstrapXE6.dpk. I don't know what could be the problem.

robertonicchi commented 8 years ago

I see that in the project source is present {$R *.dres} Removing it fix the compiling error.

kattunga commented 8 years ago

And you still see glyphicons on buttons at design time?

robertonicchi commented 8 years ago

At design time i can't see glyphicons. I see a small square box. If i don't remove {$R *.dres} and i get the .dres file from an older version where it was present, i still can't see the icons at design time For IWBSDropDown component too i can't see at design time the correct icon; i see the squared box. Anyway at runtime i can see always the icons.

kattunga commented 8 years ago

Please, check latest commit.

on top of dclIWBootstrapXE6.dpk you should only see:

package dclIWBootstrapXE6;

{$R 'glyphicons.res' 'glyphicons.RC'}

{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
...
robertonicchi commented 8 years ago

Now the package compile (and install) without problems. Anyway at design time i still can't see the glyph icons. At runtime yes.

kattunga commented 8 years ago

Please, test latest commit. I completely replace glyphicon res file with a const. There should be no more problem.

robertonicchi commented 8 years ago

Thanks, now is working fine.