Natter

Post Reply
Natter
Posts: 524
Joined: Mon May 14, 2007 9:49 am

Natter

Post by Natter »

Hi, all
I have Codejock.SkinFrameWork.11.2.0

Try this code

Code: Select all

include "FiveWin.ch" 

function Main() 
   local oWnd, oActiveX 
   DEFINE WINDOW oWnd TITLE "FiveWin ActiveX Support with Skin" 
   ACTIVATE WINDOW oWnd ON INIT CodeJockSkin_InitDlg(oWnd) 
return nil 

FUNCTION CodeJockSkin_InitDlg( oDlg ) 
LOCAL oActiveX, cStylesPath := "d:\Styles\" 
   oActiveX := TActiveX():New( oDlg, "Codejock.SkinFrameWork.11.2.0" ) 
   oActiveX:Do( "LoadSkin", cStylesPath+"aa.msstyles", "" )  
   oActiveX:Do( "ApplyWindow", oDlg:hWnd ) 
return nil
[/color]

In resul I get window with mark S/F

Could you tell me how to remove the S/F mark ?
User avatar
richard-service
Posts: 583
Joined: Tue Oct 16, 2007 8:57 am
Location: New Taipei City, Taiwan
Contact:

Post by richard-service »

Hi Natter,

I have a solution for it.
But FWH's Menu system incompatible with Codejock Skin OCX

Regards,

Richard
Natter
Posts: 524
Joined: Mon May 14, 2007 9:49 am

Post by Natter »

Thank, Richard !

I read post http://fivetechsoft.com/forums/viewtopi ... light=skin and think that all right :?
User avatar
richard-service
Posts: 583
Joined: Tue Oct 16, 2007 8:57 am
Location: New Taipei City, Taiwan
Contact:

Post by richard-service »

Natter wrote:Thank, Richard !

I read post http://fivetechsoft.com/forums/viewtopi ... light=skin and think that all right :?
I hope it will help you.

Regards,

Richard
Post Reply