topic
stringlengths
1
63
text
stringlengths
1
577k
Codejock RibbonBar first tests
[quote="richard-service":qcsmfkyy][quote="fafi":qcsmfkyy][quote="Antonio Linares":qcsmfkyy]Fafi, Your code crashes (GPF) in Windows 7. Why don't you use FWH Class TActiveX ?[/quote:qcsmfkyy] Mr. Antonio.. when I use tactivex.. get error : numeric has no exported method when I call : >> oRb = oAct:Do( "AddRibbo...
Codejock RibbonBar first tests
Fafi, You need to upgrade your FWH to a more recent version than the one that you are using
Codejock RibbonBar first tests
Ok Mr. Antonio ! Thank's Regards Fafi
Codejock RibbonBar first tests
Hi All, Finished. Add Tab Group ToolTip+bitmap [img:7zha38uo]http://www.fivetech.com.tw/fwh/ribbonbar10.jpg[/img:7zha38uo] Show Button ToolTip+bitmap [img:7zha38uo]http://www.fivetech.com.tw/fwh/ribbonbar11.jpg[/img:7zha38uo] Change Tab Color [img:7zha38uo]http://www....
Codejock RibbonBar first tests
Richard, Where is the source code ? This thread is to share code and move forward with the RibbonBar management. If you want to post your screenshots then please post your code too, thanks
Codejock RibbonBar first tests
[quote="Antonio Linares":12nlzxpd]Richard, Where is the source code ? This thread is to share code and move forward with the RibbonBar management. If you want to post your screenshots then please post your code too, thanks[/quote:12nlzxpd] Antonio, Look it. Regards, Richard
Codejock RibbonBar first tests
Richard, When you email me your samples source code, I will post it here and then you will have write access again to these forums. Thanks,
Codejock RibbonBar first tests
Here it is Richard's example source code. Thanks Richard. [code=fw:ke0cfdq0]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /> <br /><span style="color: #00D7D7;">#define</span> xtpControlError            ...
Codejock RibbonBar first tests
Hi Antonio, I post my last paste picture below source code. Thanks post my code. Regards, Richard
Codejock RibbonBar first tests
Richard, Ok, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Codejock RibbonBar first tests
A very early Visual RibbonBar designer prototype. The idea is to interactively desing the RibbonBar and than its source code could be automatically generated: RibonBar.prg [code=fw:3g3m5y6s]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color:...
Codejock RibbonBar first tests
Visual RibbonBar: Dynamically adding tabs and groups RibbonBar.prg [code=fw:br46bhq0]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">static</span> oRb<br /><br /><spa...
Codejock RibbonBar first tests
Visual RibbonBar: enhanced version RibbonBar.prg [code=fw:364do4b7]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">static</span> oRb<br /><br /><span style="color: #0...
Codejock RibbonBar first tests
Visual RibbonBar: adding controls (buttons), developed together with Daniel <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> RibonBar.prg [code=fw:26tc3v89]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span st...
Codejock RibbonBar first tests
Hi , Anybody here tried to run the generated Sample Exe on a PC other than the Development PC (ie On a PC where the [color=#FF0000:2jheceqm]CodeJock Setup is not installed[/color:2jheceqm]). For me it is giving the following error. [url=http&#58;//img15&#46;imageshack&#46;us/my&#46;php?image=erroruop&#46;jpg:2jheceqm...
Codejock RibbonBar first tests
Anser, I think that first you have to register the ActiveX as an administrator. But not 100% sure about it. Also, you can check if the ActiveX is available before using it: [code=fw:310lyzte]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">if</span> ! IsActiveX<span style=...
Codejock RibbonBar first tests
Dear Mr.Antonio, [quote:bo1zi2or]I think that first you have to register the ActiveX as an administrator. But not 100% sure about it.[/quote:bo1zi2or] I am testing the problem in Win XP as Administrator. Another Problem which I have seen is that IsActivex() is always returning .F. [code=fw:bo1zi2or]<div class="fw" i...
Codejock RibbonBar first tests
Anser, Please call this function CoInitialize() before calling IsActiveX( cProgId ): [code=fw:pjdb9pxu]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br /><span style="color: #00D7D7;">#include</span> <hbapi.h><br /><br />unsigned long CoIni...
Codejock RibbonBar first tests
Anser, perhaps you have the same problem on some machines as I, so here my solution: What happens: By executing the method 'AttachToWindow', the RibbonBar begins to fire events, so the code block 'RibbonBarEvent' will be executed and failed 'in the line 'case cEvent == "Execute"' with the error '==' because <cEvent> ...
Codejock RibbonBar first tests
Fafi, you can assign a code block to <oact:bOnEvent>. When an event in the RibbonBar occurs, this code block will be executed. If a button was clicked by the user, the variable <cEvent> has 'normally' the value "Execute". All buttons resides in the array <aButtons>, if 'aButtons[ 1 ]:hObj == aParams[ 1 ]' you know whi...
Codejock RibbonBar first tests
Frank, > I really want to know, how Lailton, Richard, or who else has discovered this know how You can inspect all properties, methods and events from Microsoft Word VBA: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=78087#p78087">viewtopic.php?p=78087#p78087</a><!-- l -...
Codejock RibbonBar first tests
Dear Mr. Frank, I tried your solution but did not work. My app is crashing when it reaches the point [code=fw:26vcqf1l]<div class="fw" id="{CB}" style="font-family: monospace;">oAct := TActiveX<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span>...
Codejock RibbonBar first tests
Anser, Are you using 12.1.1 or 13.0.0 ? Have you tried both ?
Codejock RibbonBar first tests
There was a memory leak in Class TActiveX. It has been detected and fixed <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Next FWH build will include this fix. In Class TActiveX this new Method has to be included: [code=fw:at4v8u48]<div class="fw" id="{CB}" style="font-f...
Codejock RibbonBar first tests
Dear Mr.Antonio, [quote:szf7xy0t]Are you using 12.1.1 or 13.0.0 ?[/quote:szf7xy0t] I am using 12.1.1 and is working fine on PC's If I run the CodeJock Setup. I have not tried Ver 13.0.0 and shall try Regards Anser
Codejock RibbonBar first tests
Antonio, <<I really want to know, how Lailton, Richard, or who else has discovered this know how <You can inspect all properties, methods and events from Mic...
Codejock RibbonBar first tests
Hi, Can anybody help me to do this in FWH. As per the write up in the CodeJock site, the property CommandBarsGlobalSettings.License should be set before the CommandBarControl is initialized. In VB this is done using the Private Sub Form_Initialize() [b:19jvzchf]Writeup from the site with VB 6 Sample[/b:19jvzchf] [qu...
Codejock RibbonBar first tests
Hi All, This is a Ribbonbar+Calendar simple screen shot. [img:dpsagp71]http&#58;//www&#46;fivetech&#46;com&#46;tw/fwh/ribbonbar_calendar01&#46;jpg[/img:dpsagp71] [img:dpsagp71]http&#58;//www&#46;fivetech&#46;com&#46;tw/fwh/ribbonbar_calendar02&#46;jpg[/img:dpsagp71] Please visit my Ribbonbar sample code and add the...
Codejock RibbonBar first tests
Anser, You may try: [code=fw:2ddj5rn2]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oSettings = oAct:<span style="color: #000000;">GetProp</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"CommandBarsGlobalSettings"</span> <span style="color: #000000;">&#41;</span> <span...
Codejock RibbonBar first tests
Richard, [quote:a314nxog] local oAct2 oAct2 := TActiveX():New( oWnd, "Codejock.CalendarControl.12.1.1", 150, 0, 1000, 550 ) [/quote:a314nxog] Thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Codejock RibbonBar first tests
Antonio, [quote:20clqdbv] oSettings = oAct:GetProp( "CommandBarsGlobalSettings" ) // it returns an OleAuto object [/quote:20clqdbv] Doesn´'t work. [errsysw.prg->ERRORDIALOG] (78) Called from: errsysw.prg->(b)ERRORSYS(49) win32ole.prg->TOLEAUTO:COMMANDBARSG...
Codejock RibbonBar first tests
Carlos, This way we can access the GlobalSettings of the CommandBars: [code=fw:378y80qn]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   oSettings = oActiveX : <span style="color: #000000;">GetProp</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"GlobalSettings"</span> ...
Codejock RibbonBar first tests
Hi, [color=#0000FF:gwlenj4z]Has anybody here used CodeJock in your FWH app. and distributed it in your client PC's.[/color:gwlenj4z] I still have not found a solution to activate the licence through code. ( For the time being, it is working, if I distribute the .lic license file along with the OCX control. Thanks to M...
Codejock RibbonBar first tests
Hello! Anser, may be it's not a good solution, but if in the begining of example "ribonbar.prg" insert this: [code=fw:15daxnwm]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;oText := TTxtFile<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="c...
Codejock RibbonBar first tests
Mr.Sergey, Thankyou for this bright idea. I think this is the only solution as of now. I don't know whether it is the limitation of Harbour/xHarbour Regards Anser
Codejock RibbonBar first tests
Hi Friends, Has anybody tried Office2003 theme in Codejock ? If so, please guide me how to do it. Thanks, - Ramesh Babu P
Codejock RibbonBar first tests
To have acess to the CommandBarsGlobalSettings on Form Initialize Event add the following code: [code=fw:25qok2eu]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />    <span style="color: #00C800;">LOCAL</span> GLOBALSettings:= <span style="color: #00C800;">NIL</span><br />      GlobalSettings:= Cr...
Codejock RibbonBar first tests
Mr.Dionisis, Thank you very much. [b:228mzu1x]It is working perfectly[/b:228mzu1x]. Regards Anser
Codejock RibbonBar first tests
How to position the text below the image?
Codejock RibbonBar first tests
Na distribuição da OCX com o aplicativo Sobre a Licença como resolveram ? Ari
Codejock RibbonBar first tests
oi Lainton eu comprei o que eu queria saber é como colocar a Licenca no momento de usar o activex, se retira o arquivo .lic dá erro. já tentei todas as formas que colocaram no forum, menos aquela de criar o file momentos antes de chamar o active de depois apagar..parece gambiarra, gostaria de usar o GlobalSettings. A...
Codejock RibbonBar first tests
Lainton Aproveitando, voce sabe onde encontrar os includes das contantes que aparece direto no exemplos tipo: XTP_ID_TOOLBAR_EXPAND tem aquelas de Theme.. tem muita coisa onde eu acho elas ? Nao veio no Suite pro as arquivos de contantes. (include) Ari
Codejock RibbonBar first tests
Lainton, Quando eu for enviar para meu cliente o sistema, vou enviar o activex, e se nao tem o arquivo .LIC na roda.. o que eles falam na documentação é para colocar no GlobalSettings.license ..a licença.. para evitar enviar o .LIC.. se um esperto pegar os dois..faz a pirataria..se ninguem saber.. Estava olhando suas...
Codejock RibbonBar first tests
Dear Mr.Ari, There is a direct method to activate the license without the need to create a Text file and then erase. Here is the direct method. This solution is also available in the previous page of this thread. [code=fw:2i9l29kc]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp;<span style="color: #...
Codejock RibbonBar first tests
Please send a example, where i put o code [code=fw:10pdl4k5]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;/<br />&nbsp; ....<br /><br />&nbsp; <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">WINDOW</span> oWnd<br />&nbsp; <br />&nbsp;<span style="color: #B900B9;...
Codejock RibbonBar first tests
Dear Mr.Ari, Here is the sample code [code=fw:3qo4xbq9]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">LOCAL</span> GLOBALSettings:= <span style="color: #00C800;">NIL</span><br />&nbsp; &nbsp;<br />RegisterServer<span style="color: #000000;">&#40;</span> <span style="color: #ff...
Codejock RibbonBar first tests
Mr. Anser Now, It is working fine Thanks Ari FWH901 - xHarbour 1.1.0 - CodeJock 13.0.0 SuitePro
Codejock RibbonBar first tests
[quote="anserkk":2xhfw6tx]Dear Mr.Ari, Here is the sample code [code=fw:2xhfw6tx]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">LOCAL</span> GLOBALSettings:= <span style="color: #00C800;">NIL</span><br />   <br />RegisterServer<span style="color: #000000;">&#40;</span> <span s...
Codejock RibbonBar first tests
Dear Mr.Anderson, [quote:2gfy5xjc]this does not work with Windows Vista / windows seven.[/quote:2gfy5xjc] It works fine in Vista and Windows 7, I have already tested it. You must run FwhApplication.Exe as Administrator or else the OS will get struck at the following line. [code=fw:2gfy5xjc]<div class="fw" id="{CB}" ...
Codejock RibbonBar first tests
oStatusBar := TOleAuto():New( ActXPdisp( oAct:hActiveX ) ) oStatusBar:StatusBar:Visible=.T. oStatusBar:StatusBar:AddPane( 0 ) oStatusBar:StatusBar:IdleText = "xxx" Demais parametros para ficar similar a msg nativa. [img:2vfusqp0]http&#58;//www&#46;personal&#46;com&#46;br/img/b1a&#46;jpg[/img:2vfusqp0] Melhor seria al...
Codejock RibbonBar primeras pruebas
Daniel, Antonio impresionante.
Codejock RibbonBar primeras pruebas
Hemos estado haciendo algunas pruebas usando el control RibbonBar de Codejock <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Aqui teneis una primer test. test.prg [code=fw:1ghoivnu]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D...
Codejock RibbonBar primeras pruebas
Encontre una forma de agregar grupos <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [code=fw:3mvfp99p]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span...
Codejock RibbonBar primeras pruebas
Daniel, Muy bueno! Gracias! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Codejock RibbonBar primeras pruebas
Aqui hay un ejemplo en VB para revisar codigo: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=15416&sid=be973c77d3c95fadb645576e242d823e#p15416">viewtopic.php?p=15416&sid=be973c77d3c95fadb645576e242d823e#p15416</a><!-- l -->
Codejock RibbonBar primeras pruebas
Añadiendo botones a un Grupo! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [code=fw:ept8m0o5]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span ...
Codejock RibbonBar primeras pruebas
Otros controles [code=fw:kcl6lg43]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00D7D7;">#define</span> xtpControlError             <span style="color: #000000;">0</span><br /><sp...
Codejock RibbonBar primeras pruebas
Modificando las propiedades de los controles <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [code=fw:35nbn3s8]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br...
Codejock RibbonBar primeras pruebas
Inspeccionando facilmente las propiedades de CodeJock desde Microsoft Word (VBA) para aprenderlas <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [img:11xjzjpb]http&#58;//img25&#46;imageshack&#46;us/img25/4921/captureg&#46;png[/img:11xjzjpb]
Codejock RibbonBar primeras pruebas
option button: [code=fw:32tvrteo]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;oGroup1 = oTabFiles:<span style="color: #000000;">Groups</span>:<span style="color: #000000;">AddGroup</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Test 1"</span>, <span style...
Codejock RibbonBar primeras pruebas
Ejecutando una acción desde un control <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [code=fw:3p0p5l4n]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br...
Codejock RibbonBar primeras pruebas
Antonio: Estoy tratando de compilar tu ejemplo pero tengo este error: Descripción del error: Error BASE/1004 Class: 'NUMERIC' has no exported method: INSERTTAB Args: [ 1] = N 21194560 [ 2] = N 0 [ 3] = C &Files Pila de llamadas ================ LLamada de INSERTTAB(0) -> LLam...
Codejock RibbonBar primeras pruebas
Imagenes en Botones Con soporte para Alpha Channel [img:z60kaes5]http&#58;//www&#46;sitasoft&#46;com/fivewin/screen/codej3&#46;png[/img:z60kaes5] [code=fw:z60kaes5]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><...
Codejock RibbonBar primeras pruebas
Daniel, Simplemente genial <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Enhorabuena!
Codejock RibbonBar primeras pruebas
Alejandro, Que versión de FWH estás usando ?
Codejock RibbonBar primeras pruebas
El boton redondo de la esquina, gracias a Lailton! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [code=fw:1az3sbte]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   oRb = oAct:<span style="color: #00C800;">Do</span><span style="color: #000000;">&#40;</sp...
Codejock RibbonBar primeras pruebas
Olá Antonio, Ao tentar compilar o exemplo me é gerado o erro abaixo: [code=fw:2v8s1yvc]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Error description: <span style="color: #000000;">Error</span> TOleAuto/<span style="color: #000000;">65535</span> &nbsp;: <span style="color: #000000;">TOLEAUTO</span>...
Codejock RibbonBar primeras pruebas
Rossine, Que version de Windows estas usando ? Te funciona FWH\samples\webexp.prg ?
Codejock RibbonBar primeras pruebas
Olá Antonio, [quote:3ay65dal] Que version de Windows estas usando ? [/quote:3ay65dal] Eu uso o windows XP SP3 [quote:3ay65dal] Te funciona FWH\samples\webexp.prg ? [/quote:3ay65dal] Não, é gerado o erro abaixo: [code=fw:3ay65dal]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Application<br />=====...
Codejock RibbonBar primeras pruebas
Rossine, Prueba este codigo: CreateObject( "Shell.Explorer" ) En caso de que falle, parece que se trataria de un bug de Harbour con MSVC <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->
Codejock RibbonBar primeras pruebas
Olá antonio, Sim, o erro persiste <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> Vou postar este problema lá na lista do harbour.
Codejock RibbonBar primeras pruebas
Rossine, > Vou postar este problema lá na lista do harbour. Si, es lo mejor. Gracias, Es un error que no depende de FWH.
Codejock RibbonBar primeras pruebas
Antonio, se ve muy profesional el control, solo tengo estas dudas. Y que hay que instalar para utilizar este control? Luego para distribuir el ejecutable, hay que instalar algo adicional con el cliente? Carlos Sincuir.
Codejock RibbonBar primeras pruebas
Carlos, Es un ActiveX (fichero OCX) que hay que usar con la aplicacion e instalar (registrar) en los ordenadores en donde se vaya a usar la aplicacion.
Codejock RibbonBar primeras pruebas
Antonio, o sea que hay que instalar algo aparte de mi aplicación en cada computador del cliente? si quisiera actaulizar algún cliente que tenga unas 10 computadora por ejemplo, tendría que hacer esos cambios en cada computadora? Carlos Sincuir
Codejock RibbonBar primeras pruebas
Carlos, Si, esa es la desventaja de los ActiveX al igual que las DLLs: El EXE require de ficheros externos.
Codejock RibbonBar primeras pruebas
Carlos, Prueba [code=fw:1713nhnv]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">IF</span> IsActiveX<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Mi_OCX"</span> <span style="color: #000000;">&#41;</span> == .F.<br />&nbsp; &nbsp; WinExec<span s...
Codejock RibbonBar primeras pruebas
Olá Antonio, Dentro do harbour, na pasta: c:\harbour\contrib\hbole\tests , existe um exemplo em "harbour puro" que compilei com MSVC e funcionou normalmente, e com fwh ocorre o erro que citei acima. Será que não está faltando alguma configuração ?
Codejock RibbonBar primeras pruebas
Rossine, Esa es una version antigua que ya no se usa. La actual, que se usa ahora es: harbour\contrib\hbwin\win_tole.prg
Codejock RibbonBar primeras pruebas
oooooooooooH esta super, realmente son unos genios <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Saluditos Aida <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->
Codejock RibbonBar primeras pruebas
Antonio, hay alguna forma de registrar el componente ActiveX, desde programación sin utilizar el instalador de Codejock? Ya que me imagino que no es solamente de copiar el archivo activex Carlos Sincuir
Codejock RibbonBar primeras pruebas
Javier, <!-- m --><a class="postlink" href="http://www.codejock.com/downloads/">http://www.codejock.com/downloads/</a><!-- m --> ActiveX / COM All Versions of Visual Studio la version demo es la 13.0.0. En los ejemplos que hemos publicado hay que cambiar: "Codejock.CommandBarsFrame.12.1.1" por "Codejock.CommandBarsFr...
Codejock RibbonBar primeras pruebas
De donde hay que descargar el ocx y como se llama el fichero ?
Codejock RibbonBar primeras pruebas
Gracias Carles, voy a probar hacerlo de esa forma. Carlos Sincuir
Codejock RibbonBar primeras pruebas
Carlos, La forma correcta de hacerlo, segun el API de Windows, es usando esta funcion: RegisterServer( "Codejock.CommandBars.v12.1.1.ocx" ) o esta, si usas la nueva version: RegisterServer( "Codejock.CommandBars.v13.0.0.ocx" ) [code=fw:1jmdiwxf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><s...
Codejock RibbonBar primeras pruebas
Olá Antonio, Usando xharbour.com o exemplo funciona 100%. Lá na lista do harbour ainda não obtive resposta sobre o assunto <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
Codejock RibbonBar primeras pruebas
Rossine, Posiblemente el mismo error ocurra con xHarbour y MSVC. De ser asi, tambien puedes reportarlo en la lista de xHarbour.
Codejock RibbonBar primeras pruebas
Antonio, Com xHarbour y MSVC ocorre erro de GPF <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
Codejock RibbonBar primeras pruebas
Rossine, Lo has reportado ya en la lista de xHarbour ?
Codejock RibbonBar primeras pruebas
Olá Antonio, Você saberia me dizer o link da lista do xharbour ?
Codejock RibbonBar primeras pruebas
Rossine, Puedes acceder desde Google grupos: [url:1u1cik5m]http&#58;//groups&#46;google&#46;es/group/comp&#46;lang&#46;xharbour/topics?hl=es&lnk[/url:1u1cik5m]
Codejock RibbonBar primeras pruebas
Gracias Antonio, lo voy a probar y comento luego como me va. Ya estoy bajando el Codejock. Carlos Sincuir
Codejock RibbonBar primeras pruebas
Quick Access... [img:2cw3ritn]http&#58;//www&#46;sitasoft&#46;com/fivewin/screen/codej4&#46;png[/img:2cw3ritn] [code=fw:2cw3ritn]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span style="color: #00D7D7;">...
Codejock RibbonBar primeras pruebas
Daniel, Excelente <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> gracias!
Codejock RibbonBar primeras pruebas
Hi All, Finished. Add Tab Group ToolTip+bitmap [img:374uat0e]http&#58;//www&#46;fivetech&#46;com&#46;tw/fwh/ribbonbar10&#46;jpg[/img:374uat0e] Show Button ToolTip+bitmap [img:374uat0e]http&#58;//www&#46;fivetech&#46;com&#46;tw/fwh/ribbonbar11&#46;jpg[/img:374uat0e] Change Tab Color [img:374uat0e]http&#58;//www&#46;...
Codejock RibbonBar primeras pruebas
Un primer boceto de un diseñador visual de RibbonBar. La idea es diseñar interactivamente el RibbonBar y que genere automaticamente su codigo fuente: RibonBar.prg [code=fw:sa5z2x29]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000...
Codejock RibbonBar primeras pruebas
Visual RibbonBar: version mejorada RibbonBar.prg [code=fw:19i8asao]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">static</span> oRb<br /><br /><span style="color: #0...
Codejock RibbonBar primeras pruebas
Visual RibbonBar: dinamicamente anadiendo Tabs y Grupos RibbonBar.prg [code=fw:2ndbh99s]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">static</span> oRb<br /><br /><...
Codejock RibbonBar primeras pruebas
Olá Antonio, Agora consigo compilar e excutar todos os exemplos codejock com harbour + msvc <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Obrigado a todos, principalmente a equipe harbour <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Ver...
Codejock RibbonBar primeras pruebas
Olá Antonio, Se você der um "duplo click" no "SystemButton" o sistema abandona. No caso do harbour gera o arquivo "hb_out.log".