to Richard ( Taiwan ) about Skin Themes windows

areang
Posts: 128
Joined: Mon Jul 31, 2006 3:23 pm

to Richard ( Taiwan ) about Skin Themes windows

Post by areang »

Hi Richard !

Code: Select all

DEFINE DIALOG oDlg RESOURCE "D_DR_WIN_STATMSF_SEARCH" 
........ 
ACTIVATE DIALOG oDlg CENTER ON INIT CodeJockSkin_InitDlg( oDlg ) 

FUNCTION CodeJockSkin_InitDlg( oDlg ) 

LOCAL oActiveX 

oActiveX := TActiveX__():New( oDlg, "Codejock.SkinFrameWork.10.4.1" ) 
   oActiveX:LoadSkin( "System\ActiveX\Styles\Vista.cjstyles", "" )  //Vista.cjstyles  //Office2007.cjstyles 
    
   oActiveX:ApplyWindow( oDlg:hWnd ) 

RETURN NIL 

Do you mind to send me the function TActiveX__

Thank's for help
Regards
Areang
Rochinha
Posts: 309
Joined: Sun Jan 08, 2006 10:09 pm
Location: Brasil - Sao Paulo
Contact:

Post by Rochinha »

Areang

Try with tActivex() of Fivewin.
User avatar
Taiwan
Posts: 218
Joined: Fri Oct 07, 2005 1:55 am
Location: Taipei, Taiwan
Contact:

Post by Taiwan »

Hello areang,

Look it. Office 2007 interface.

Image

Image

Same as TActiveX of FWH. What's FWH version?

Thanks for Rochinha.

Regards,

Richard
User avatar
jose_murugosa
Posts: 943
Joined: Mon Feb 06, 2006 4:28 pm
Location: Uruguay
Contact:

Post by jose_murugosa »

Sorry, could somebody tell me where can I get this activex you are showing in the images?
Saludos/Regards,
José Murugosa
FWH + Harbour + Bcc7. Una seda!
User avatar
Taiwan
Posts: 218
Joined: Fri Oct 07, 2005 1:55 am
Location: Taipei, Taiwan
Contact:

Post by Taiwan »

Hello jose_murugosa,

Please visit this web site.

http://www.codejock.com/

Regards,

Richard
User avatar
Richard Chidiak
Posts: 946
Joined: Thu Oct 06, 2005 7:05 pm
Location: France
Contact:

Post by Richard Chidiak »

Richard

Where did you download the activex file from ? "Codejock.SkinFrameWork.10.4.1"

Is this a freeware ? Are these skins free to use or are they copyrighted.

Thanks for info

Richard
http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
User avatar
jose_murugosa
Posts: 943
Joined: Mon Feb 06, 2006 4:28 pm
Location: Uruguay
Contact:

Post by jose_murugosa »

Thank you Taiwan

I´ll check the site.
Saludos/Regards,
José Murugosa
FWH + Harbour + Bcc7. Una seda!
Rochinha
Posts: 309
Joined: Sun Jan 08, 2006 10:09 pm
Location: Brasil - Sao Paulo
Contact:

Post by Rochinha »

Hii,

Here is a working sample with SkinFramework:

Code: Select all

// FiveWin ActiveX support demo - Using Adobe Acrobat Reader

#include "FiveWin.ch"

function Main()
   local oWnd, oActiveX
   DEFINE WINDOW oWnd TITLE "FiveWin ActiveX Support with Skin"
          oActiveX = TActiveX():New( oWnd, "PDF.PdfCtrl.5" )
          oWnd:oClient = oActiveX // To fill the entire window surface
          oActiveX:Do( "LoadFile", "c:\teste.pdf" )
          oActiveX:Do( "SetCurrentPage", 1 )
   ACTIVATE WINDOW oWnd ON INIT CodeJockSkin_InitDlg(oWnd)
   return nil

FUNCTION CodeJockSkin_InitDlg( oDlg ) 
   LOCAL oActiveX, cStylesPath := "c:\win2003\arquivos de programas\codejock\source\skinframework\Styles\"
   oActiveX := TActiveX():New( oDlg, "Codejock.SkinFrameWork.10.4.2" ) 
   oActiveX:Do( "LoadSkin", cStylesPath+"Vista.cjstyles", "" )  //Vista.cjstyles  //Office2007.cjstyles 
   oActiveX:Do( "ApplyWindow", oDlg:hWnd ) 
   return nil
User avatar
Taiwan
Posts: 218
Joined: Fri Oct 07, 2005 1:55 am
Location: Taipei, Taiwan
Contact:

Post by Taiwan »

Hello Rochinha,

Yes, same as.

But I have a question about it.
Please look my attach picture.
Why it appear "S/F" mark?
I run VB Exe file disappear mark.

Image

Regards,

Richard
Last edited by Taiwan on Sat Feb 10, 2007 2:51 pm, edited 1 time in total.
User avatar
Taiwan
Posts: 218
Joined: Fri Oct 07, 2005 1:55 am
Location: Taipei, Taiwan
Contact:

Post by Taiwan »

Richard Chidiak wrote:Richard

Where did you download the activex file from ? "Codejock.SkinFrameWork.10.4.1"

Is this a freeware ? Are these skins free to use or are they copyrighted.

Thanks for info

Richard
Please check http://www.codejock.com/

Regards,

Richard
Rochinha
Posts: 309
Joined: Sun Jan 08, 2006 10:09 pm
Location: Brasil - Sao Paulo
Contact:

Post by Rochinha »

Taiwan

Maybe you have linked other activex too. check it.
User avatar
Taiwan
Posts: 218
Joined: Fri Oct 07, 2005 1:55 am
Location: Taipei, Taiwan
Contact:

Post by Taiwan »

Hello All,

Test finish. Look it below:

Image

Regards,

Richard
areang
Posts: 128
Joined: Mon Jul 31, 2006 3:23 pm

Post by areang »

Thank's to all

:lol: If you don't mind, Can someone to email me ocx and samples source code ? :wink:

Regards
Areang
User avatar
Taiwan
Posts: 218
Joined: Fri Oct 07, 2005 1:55 am
Location: Taipei, Taiwan
Contact:

Post by Taiwan »

Hello areang,

Source code check these message. only add in your ap.
ActiveX components -> http://www.codejock.com/
check ActiveX suite pro not MFC++

Regards,

Richard
User avatar
RAMESHBABU
Posts: 591
Joined: Fri Oct 21, 2005 5:54 am
Location: Secunderabad (T.S), India

Post by RAMESHBABU »

Hi Richard
This evaluation can be used with Visual Studio 5.0, 6.0, .NET 2002, .NET 2003, and .NET 2005. Unicode versions of the OCX files are currently not provided with the evaluation version.
I think, Codejock has stopped distributing evaluaiton copies of the OCX files.

How can I get it for testing.

- Ramesh Babu P
Post Reply