CodeJock Skin

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
unixkd
Posts: 565
Joined: Thu Feb 11, 2010 1:39 pm

CodeJock Skin

#1 Post 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

User avatar
rdonnay
Site Admin
Posts: 4729
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: CodeJock Skin

#2 Post 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")
The eXpress train is coming - and it has more cars.

User avatar
unixkd
Posts: 565
Joined: Thu Feb 11, 2010 1:39 pm

Re: CodeJock Skin

#3 Post by unixkd »

I tried it, did NOT work. Any other suggestion ?

Joseph

Post Reply