Page 1 of 1

CodeJock Skin

Posted: Fri Dec 21, 2012 7:25 am
by unixkd
Hi all

Until recently, my Xcodejock skin framework was working fine. My OS is Windows 7 premium. I think windows update made changes to my OS which is now causing my FASTREPORT designer dialog to open partially and the hang. Is there a way I can disable codejock skin for this particular dialog ?

Thanks

Joseph

Re: CodeJock Skin

Posted: Fri Dec 21, 2012 8:18 am
by rdonnay
You might be able to use the oSkin:excludeModule() method.


Description
Removes a module\dll from getting "hooked" by the SkinFramework. This will cause objects from this module not to be skinned.

Syntax

Public Sub ExcludeModule( _
ByVal ModuleName As String _
)

Parameters
ModuleName
Name of the module\dll to remove from hooking.
Remarks

There are some modules\dlls that do not like to be hooked by the skinframework and will crash the application. If you find that a certain module keeps crashing your application you can exclude it. This needs to be done before a skin id loaded.



For example, if .NET is not installed on the client machine and the Crystal Reports "CRDB_ADOPLUS.DLL" module is loaded that application will crash when the skin loads. As a solution you can exclude this module before the skin is loaded:



SkinFramework1.ExcludeModule ("CRDB_ADOPLUS.DLL")

Re: CodeJock Skin

Posted: Tue Dec 25, 2012 3:04 am
by unixkd
I tried it, did NOT work. Any other suggestion ?

Joseph