to Richard ( Taiwan ) about Skin Themes windows

to Richard ( Taiwan ) about Skin Themes windows

Postby areang » Fri Feb 09, 2007 11:02 pm

Hi Richard !

Code: Select all  Expand view
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 := -():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 -

Thank's for help
Regards
Areang
areang
 
Posts: 128
Joined: Mon Jul 31, 2006 3:23 pm

Postby Rochinha » Sat Feb 10, 2007 1:30 am

Areang

Try with tActivex() of Fivewin.
Rochinha
 
Posts: 309
Joined: Sun Jan 08, 2006 10:09 pm
Location: Brasil - Sao Paulo

Postby Taiwan » Sat Feb 10, 2007 2:52 am

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
Taiwan
 
Posts: 218
Joined: Fri Oct 07, 2005 1:55 am
Location: Taipei, Taiwan

Postby jose_murugosa » Sat Feb 10, 2007 3:21 am

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
jose_murugosa
 
Posts: 1145
Joined: Mon Feb 06, 2006 4:28 pm
Location: Uruguay

Postby Taiwan » Sat Feb 10, 2007 5:51 am

Hello jose_murugosa,

Please visit this web site.

http://www.codejock.com/

Regards,

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

Postby Richard Chidiak » Sat Feb 10, 2007 12:53 pm

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
Richard Chidiak
 
Posts: 946
Joined: Thu Oct 06, 2005 7:05 pm
Location: France

Postby jose_murugosa » Sat Feb 10, 2007 1:13 pm

Thank you Taiwan

I´ll check the site.
Saludos/Regards,
José Murugosa
FWH + Harbour + Bcc7. Una seda!
User avatar
jose_murugosa
 
Posts: 1145
Joined: Mon Feb 06, 2006 4:28 pm
Location: Uruguay

Postby Rochinha » Sat Feb 10, 2007 1:37 pm

Hii,

Here is a working sample with SkinFramework:

Code: Select all  Expand view
// 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
Rochinha
 
Posts: 309
Joined: Sun Jan 08, 2006 10:09 pm
Location: Brasil - Sao Paulo

Postby Taiwan » Sat Feb 10, 2007 2:35 pm

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

Postby Taiwan » Sat Feb 10, 2007 2:36 pm

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
User avatar
Taiwan
 
Posts: 218
Joined: Fri Oct 07, 2005 1:55 am
Location: Taipei, Taiwan

Postby Rochinha » Sat Feb 10, 2007 3:54 pm

Taiwan

Maybe you have linked other activex too. check it.
Rochinha
 
Posts: 309
Joined: Sun Jan 08, 2006 10:09 pm
Location: Brasil - Sao Paulo

Postby Taiwan » Sat Feb 10, 2007 11:33 pm

Hello All,

Test finish. Look it below:

Image

Regards,

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

Postby areang » Sat Feb 10, 2007 11:59 pm

Thank's to all

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

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

Postby Taiwan » Sun Feb 11, 2007 2:05 am

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
Taiwan
 
Posts: 218
Joined: Fri Oct 07, 2005 1:55 am
Location: Taipei, Taiwan

Postby RAMESHBABU » Mon Feb 12, 2007 3:32 am

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
User avatar
RAMESHBABU
 
Posts: 615
Joined: Fri Oct 21, 2005 5:54 am
Location: Secunderabad (T.S), India

Next

Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: Google [Bot], lzanardo, nageswaragunupudi and 39 guests