in attachment you can find a sc2 file:
* convert it with "prg to bin"
* take a backup of the sc2 file (copy it)
* after that, convert the form back from "bin to prg"
After that, when I compare the 'before' sc2 with the 'after' sc2; I can see a difference in case (uppercase becomes lowercase => zee "before_after" in attach).
Can this be fixed?
I allready saw this a few times, mostly with olecontrols on my form.
Thanks in advance
Comments: ** Comment from web user: fdbozzo **
Hi M_N_M:
I've looking at this, and I think I found the problem, but by the way I've found that some metadata on this line is not used, so it's causing innecesary differences.
I've uploaded a [Beta7](https://vfpx.codeplex.com/downloads/get/928576) of FoxBin2Prg with some minor fixes about upper/lowercase (not affecting your example) and with the final fix for this OLE metadata taked out because is redundant.
In your example, originally you see this:
```
*< END OBJECT: BaseClass="olecontrol" Nombre="ST_INGAVE_KLANTORDER.Date1" Parent="ST_INGAVE_KLANTORDER" ObjName="Date1" OLEObject="C:\Windows\SysWOW64\mscomct2.ocx"
```
But now, you will see this:
```
*< END OBJECT: BaseClass="olecontrol" OLEObject="c:\windows\syswow64\mscomct2.ocx"
```
This way you will see a difference just once, and you never will see differences by this metadata.
Regards!