topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Codejock Calendar Samples? | Hi Antonio.
I procedure I want to convert, I'm frequently using come functions that in Xharbour commercial are really fast,
like cmfilter(), cmfiltcount, cmxkeycount(), because they are using the Rushmore technology. Do you think that is possible
to use something similar ? I've tried with dbfilter(), but is really slow... |
Codejock Calendar Samples? | Antonio,
My pleasure , i would be glad to help
I will publish a copy of my codejock program running (same program) with Xharbour and Harbour
Massimo : Sorry about the link, we had a hack on our servers 3 months ago and we had to reinstall almost everything, this sample was not backed.
I can provide any help on Code... |
Codejock Calendar Samples? | Thanks Richard, very kind.
No problem with the link, I've made some tests with the one that Antonio has published.
The problem is that I receive some errors when I try to run it. And if I correct one line there is another one
that is generating another error. And so on. So I think that the problem is not the code but t... |
Codejock Calendar Samples? | Massimo and Richard,
I am also working with Codejock. I originally had it running perfectly with xHarbour ( .com ), but I've been transition my primary application to Harbour / MSVC 2010.
I have further testing to do with some of my other ActiveX controls, but so far it looks like everything is running well. I don'... |
Codejock Calendar Samples? | [quote="Antonio Linares":1lmvzq7n]Enrico,
Could you provide a small self contained example ? thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->[/quote:1lmvzq7n]
Here it is:
[code=fw:1lmvzq7n]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color... |
Codejock Calendar Samples? | Enrico,
Here you can review Harbour threads management great examples:
[url:39rda0yi]https://github.com/harbour/core/tree/master/tests/mt[/url:39rda0yi]
Surely there are some that are very similar. I wonder if xharbour supports them.
I think that we could implement the function HB_BACKGROUNDADD() using Harb... |
Codejock Calendar Samples? | What if I don't want to use multithreading libs (they would inflate my EXEs, I suppose)?
EMG |
Codejock Calendar Samples? | Mr. Enrico,
Why are you afraid with exe sizes with present Ram sizes of the Pcs?.
Also, I indicated you some swithcs for latest BCC to reduce size. Are you happy with them?.
Thank you. |
Codejock Calendar Samples? | Enrico,
Here you have a Harbour example similar to yours:
[code=fw:kbpaf0em]<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: #00C800;">function</span> Main<span style="color: #000000... |
Codejock Calendar Samples? | Using a codeblock:
[code=fw:7hcztbq3]<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: #00C800;">static</span> bAction<br /><br /><span style="color: #00C800;">function</span> Main<spa... |
Codejock Calendar Samples? | In order to build those examples hbvmmt.lib has to be linked instead of hbvm.lib
and also from Borland, we have to link cw32mt.lib instead of cw32.lib |
Codejock Calendar Samples? | Enrico,
My example size built using threads is 2.515.416 bytes
without threads: 2.486.784 bytes
very little difference <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Codejock Calendar Samples? | Enrico,
Keep in mind that if you are not using threads then you are slicing the Harbour virtual machine execution process and slowing the whole app. |
Codejock Calendar Samples? | [b:2m3kyv6v]Understanding Harbour MultiThread:[/b:2m3kyv6v]
[url:2m3kyv6v]https://docs.google.com/document/d/1xxRphZ5TIGbn5rOWQ_35VVcw8Yex63A4MKXimfq0MVg/edit[/url:2m3kyv6v]
[b:2m3kyv6v]Harbour MT Mode and ST Mode[/b:2m3kyv6v]
[url:2m3kyv6v]https://docs.google.com/document/d/1S2IgJ196AMxp83Ur... |
Codejock Calendar Samples? | Thank you Master. I'll try it.
EMG |
Codejock Calendar Samples? | Sorry, the background task is only one of the incompatibilities I found. The warnings is another one (see an old thread on this subject). <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->
EMG |
Codejock Calendar Samples? | [quote="lucasdebeltran":2at4nkkl]Mr. Enrico,
Why are you afraid with exe sizes with present Ram sizes of the Pcs?.[/quote:2at4nkkl]
It's not about RAM size, mostly about sending time. But I agree, it is a minor problem. The warnings problem is a more important one:
[url:2at4nkkl]http://forums.fivetechsupport... |
Codejock Calendar Samples? | Antonio,
[quote="Antonio Linares":dx8i9i7u]Enrico,
Here you have a Harbour example similar to yours:[/quote:dx8i9i7u]
It looks like your sample doesn't act as mine. My sample continually beeps while yours beeps 10 time and then stops. How can it be forced to run the function each second?
EMG |
Codejock Calendar Samples? | Enrico,
You could call GetTickCount() and measure the time for the beeping |
Codejock Calendar Samples? | Antonio,
[quote="Antonio Linares":33s8738g]Enrico,
You could call GetTickCount() and measure the time for the beeping[/quote:33s8738g]
Unless I'm missing something, your sample calls the function only once. I need something that calls the function once per second. Can it be done using threads?
EMG |
Codejock Calendar Samples? | Enrico,
My idea was to perform an action from the called function, every x seconds
thats why I thought about using GetTickCount(), to wait x seconds to do whatever |
Codejock Calendar Samples? | Antonio,
[quote="Antonio Linares":2e8qb9ln]Enrico,
My idea was to perform an action from the called function, every x seconds
thats why I thought about using GetTickCount(), to wait x seconds to do whatever[/quote:2e8qb9ln]
Understood! Many thanks, Master! I will try it. I start to experiment with threads using xHa... |
Codejock Calendar Samples? | I'm opening a new topic right now...
EMG |
Codejock Calendar Samples? | [quote="Richard Chidiak":1idqzlfa]Frances Dutch and Norberto
You can download it from <!-- m --><a class="postlink" href="http://www.cbati.com/tcodejock.zip">http://www.cbati.com/tcodejock.zip</a><!-- m --> if any one else wants to download he is welcome, of course you will need to have the license from codejock and i... |
Codejock Calendar Samples? | I believe you can get a trial from Codejock. I have used the Calendar for many years and it has been 100% reliable. |
Codejock Calendar Samples? | [quote="TimStone":1vf47p5j]I believe you can get a trial from Codejock. I have used the Calendar for many years and it has been 100% reliable.[/quote:1vf47p5j]
Hi, Tim
I had it and working for ribbonbar of Codejock. I just want to try Calendar functions. |
Codejock Calendar Samples? | Please look in FWH samples for schedule.prg, schedule.dbf, and schedule.dbt.
This provides you with a full running appointment scheduler/calendar using Codejock.
You can download a test version of Codejock Calendar control from their website. |
Codejock Calendar Samples? | [quote="TimStone":3kwdfb05]Please look in FWH samples for schedule.prg, schedule.dbf, and schedule.dbt.
This provides you with a full running appointment scheduler/calendar using Codejock.
You can download a test version of Codejock Calendar control from their website.[/quote:3kwdfb05]
OK. Thanks a lot. |
Codejock Calendar with Harbour ( vs xHarbour ) | I've had Codejock's calendar integrated to my main application using xHarbour/xCC/FWH for over a year and it works very well.
Here is the code that works perfectly in xHarbour to build the calendar:
[code=fw:1g1q8bqo]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">METHOD<... |
Codejock Calendar with Harbour ( vs xHarbour ) | Tim,
It seems that you replace this line
::oCalexStdDlgs:Calendar( TOleAuto():New( ActXPDispPtr( ::oCalex:hActiveX ) ) )
with
::oCalexStdDlgs:Calendar = TOleAuto():New( ::oCalex:oOleAuto:__hObj )
then it is working fine <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:... |
Codejock Calendar with Harbour ( vs xHarbour ) | Antonio,
Please Why not ultimate the Calex Class of Daniel ? |
Codejock Calendar with Harbour ( vs xHarbour ) | I would like to note that the CodeJock Calendar implementation is now working well with FWH 12.5, Harbour 3.0, and MSVC 2010. All issues have been resolved for this implementation.
Antonio has full code now to include in future builds of FWH\Samples
I believe this is an excellent product that you can include with yo... |
Codejock Calendar with Harbour ( vs xHarbour ) | Hello Tim
I am trying to move my application to Harbour
Can you send me the function ActXPDispPtr( ) modified by Antonio ?
Does Codejock work ok now with Harbour ?
Tia
Richard |
Codejock RibbonBar first tests | I found the way to add groups <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[code=fw:23fnhjhb]<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=... |
Codejock RibbonBar first tests | We have been doing some tests using the Codejock RibbonBar control <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Here you have a first test.
test.prg
[code=fw:1avmvqop]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include... |
Codejock RibbonBar first tests | Excellant !!!! |
Codejock RibbonBar first tests | Hello Antonio,
this is looking good.
Which product from Codejock do we need to buy to get this functionality.
Thanks in advance
Otto |
Codejock RibbonBar first tests | Otto,
You can download the demo version from Codejock to do these tests <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Codejock RibbonBar first tests | Daniel,
very good! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Thanks! |
Codejock RibbonBar first tests | Here we have a VB example to review code:
<!-- 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 first tests | Adding buttons to a Group! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[code=fw:2zssl3ha]<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 sty... |
Codejock RibbonBar first tests | Other controls
[code=fw:273xjuft]<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 /><spa... |
Codejock RibbonBar first tests | Great! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
We are moving forward very quickly <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Codejock RibbonBar first tests | Managing the controls properties <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[code=fw:31uodwzy]<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 /><sp... |
Codejock RibbonBar first tests | Easily inspecting CodeJock properties from Microsoft Word (VBA) to learn about it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[img:2eoyyzfa]http://img25.imageshack.us/img25/4921/captureg.png[/img:2eoyyzfa] |
Codejock RibbonBar first tests | Hi all,
Do we need this Activex to be registered on all client PC's to get this Ribbon control working in our application?
If so is there any way by which we can avoid it, so that this control is included in the .Exe itself.
Can we use the Impdef and create this as a lib and then linked to our exe so that there is n... |
Codejock RibbonBar first tests | option button:
[code=fw:28vdwfk9]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> oGroup1 = oTabFiles:<span style="color: #000000;">Groups</span>:<span style="color: #000000;">AddGroup</span><span style="color: #000000;">(</span> <span style="color: #ff0000;">"Test 1"</span>, <span style... |
Codejock RibbonBar first tests | Executing an action from a control <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[code=fw:1w4v21vk]<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 first tests | Image on Button
Alpha Channel Support too
[img:1tx2ulny]http://www.sitasoft.com/fivewin/screen/codej3.png[/img:1tx2ulny]
[code=fw:1tx2ulny]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br ... |
Codejock RibbonBar first tests | Add StatusBar
[img:5r175q09]http://www.fivetech.com.tw/fwh/ribbonbar1.jpg[/img:5r175q09]
[code=fw:5r175q09]<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: ... |
Codejock RibbonBar first tests | Hello Antonio,
I downloaded the demo from CodeJock changed your code samples to Version: 13.0.0 which is now in the download.
All worked at the first try. Thank you very much.
Do you know what we have to supply to the clients to get a FWH program running which the CodeJock components inside.
Best regards,
Otto |
Codejock RibbonBar first tests | Daniel,
Simply brilliant! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
many thanks! |
Codejock RibbonBar first tests | Richard,
Thanks for joining us <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Your help is very welcome! |
Codejock RibbonBar first tests | Anser,
We don't know yet if codejock provides a LIB instead of an OCX.
We may need to ask CodeJock <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Codejock RibbonBar first tests | Otto,
Could you please provide the CodeJock download url where to get the demo version ? Thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Afaik, you just need to supply the OCX and register it from your application. We recently published a RegisterDll() here in the ... |
Codejock RibbonBar first tests | Otto,
This is the function. We have not tested it yet with this OCX:
[code=fw:2s9kpdds]<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 /><span style="color: #00D7D7;">#include</s... |
Codejock RibbonBar first tests | Hi all,
on my machine <cEvent> is numerical, so I have to add the the following code to RibbonBarEvent():
[code=fw:28ecxadm]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">IF</span> Valtype<span style="color: #000000;">(</span> cEvent <span style="color: #000000;">)</spa... |
Codejock RibbonBar first tests | Frank,
Thanks for the feedback <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
What Windows version are you using ? |
Codejock RibbonBar first tests | Antonio,
vista64 SP1, but found the same behavior with XP32 SP3 under VMware. |
Codejock RibbonBar first tests | Add ToolTipContext
[img:n39ug8us]http://www.fivetech.com.tw/fwh/ribbonbar2.jpg[/img:n39ug8us]
[code=fw:n39ug8us]<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="co... |
Codejock RibbonBar first tests | Richard,
Many thanks for your help! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Do you know how to add little bitmaps at the top of the control ? Thanks
[img:3trq0gjh]http://img26.imageshack.us/img26/3161/captureecn.png[/img:3trq0gjh] |
Codejock RibbonBar first tests | oRb:AddSystemButton() |
Codejock RibbonBar first tests | Lailton,
> oRb:AddSystemButton()
Many thanks for your help. You are a great CodeJock master and surely you can help many of us here.
What parameters should we provide to oRb:AddSystemButton() ?
Could you modify the test.prg that we are developing together ?
Thanks again, |
Codejock RibbonBar first tests | Hello Antonio,
the link where I downloaded the demo is:
<!-- m --><a class="postlink" href="http://www.codejock.com/downloads/">http://www.codejock.com/downloads/</a><!-- m -->
then:
ActiveX / COM
All Versions of Visual Studio
You get version 13.0.0!!!
Best regards,
Otto |
Codejock RibbonBar first tests | Lailton,
Oh, I see. That creates the rounded button! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Thanks!
[code=fw:1jc4badu]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> oRb = oAct:<span style="color: #00C800;">Do</span><span style="color: #000000;... |
Codejock RibbonBar first tests | [code=fw:387hau4e]<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 <span style="color: #0... |
Codejock RibbonBar first tests | Lailton,
Thanks so much! It looks really nice <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[img:2d1r7cty]http://img27.imageshack.us/img27/1919/85313517.png[/img:2d1r7cty] |
Codejock RibbonBar first tests | Richard, Lailton,
Is there a way to have small bitmaps in between the rounded button and the dropdown menu ? |
Codejock RibbonBar first tests | <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) --> <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> long way antonio very possibilities <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
Codejock RibbonBar first tests | Dear Mr.Antonio,
I could not resist my self to congratulate you to take our FWH to the new horizons.
Now almost our FWH is ready to welcome the developers from other development
environments to migrate.
Regards,
- Ramesh Babu P |
Codejock RibbonBar first tests | Ramesh,
Thanks for your kind words <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
With the help of all of us, we can build great things <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Codejock RibbonBar first tests | Lailton,
I mean these small buttons:
[img:mj2yqf6f]http://img27.imageshack.us/img27/1269/65928451.png[/img:mj2yqf6f]
The screenshot is from Windows 7 MsPaint |
Codejock RibbonBar first tests | [img:3latmewh]http://www.redstarsoft.com.br/codejock/show_0.jpg[/img:3latmewh]
<!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
Codejock RibbonBar first tests | Add system ball Button and Menu
[img:7h1ne3sh]http://www.fivetech.com.tw/fwh/ribbonbar3.jpg[/img:7h1ne3sh]
[img:7h1ne3sh]http://www.fivetech.com.tw/fwh/ribbonbar4.jpg[/img:7h1ne3sh]
Regards,
Richard |
Codejock RibbonBar first tests | Add QuickAccessControls
[img:2noiukc3]http://www.fivetech.com.tw/fwh/ribbonbar5.jpg[/img:2noiukc3]
Regards,
Richard |
Codejock RibbonBar first tests | Richard,
Would you be so kind to show to code you are doing this ? As Antonio and the others are doing, in order to everybody knows how to do this.
TIA |
Codejock RibbonBar first tests | Richard,
Would you mind to share the source code ? thanks |
Codejock RibbonBar first tests | [quote="Antonio Linares":pe7cln9t]Richard,
Would you mind to share the source code ? thanks[/quote:pe7cln9t]
No problem. I will share source code. Please wait.
Regards,
Richard |
Codejock RibbonBar first tests | Add Press ALT key and show Keyboard
[img:1w2alkw6]http://www.fivetech.com.tw/fwh/ribbonbar6.jpg[/img:1w2alkw6]
Richard |
Codejock RibbonBar first tests | Hello Richard,
I would like to thank you for your work on the RIBBONBAR.
Is it possible to get the source code for the new features from you.
I still have one application in use which I made with VB.NET and CodeJock which I
want to convert to FWH.
Do you have experience how speed behaviour of a realword applicati... |
Codejock RibbonBar first tests | Hi,
Do anybody know about the limitations in the Trial version of CodeJock control.
Regards
Anser |
Codejock RibbonBar first tests | [quote="anserkk":3h4436z2]Hi,
Do anybody know about the limitations in the Trial version of CodeJock control.
Regards
Anser[/quote:3h4436z2]
Hi
Trial version only show license demo information Dialog when your application run Codejock ActiveX.
That's all.
Regards,
Richard |
Codejock RibbonBar first tests | [quote="Otto":32ykaquf]Hello Richard,
I would like to thank you for your work on the RIBBONBAR.
Is it possible to get the source code for the new features from you.
I still have one application in use which I made with VB.NET and CodeJock which I
want to convert to FWH.
Do you have experience how speed behaviour ... |
Codejock RibbonBar first tests | Quick Access...
[img:10sqmygo]http://www.sitasoft.com/fivewin/screen/codej4.png[/img:10sqmygo]
[code=fw:10sqmygo]<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 first tests | Codejock comes with a very good help file. Here, for example, the use of two methods of the RibbonBar collection:
[code=fw:2vpqhgxr]<div class="fw" id="{CB}" style="font-family: monospace;"> oRibbonBar := oAct:<span style="color: #00C800;">Do</span><span style="color: #000000;">(</span> <span style="color: #ff00... |
Codejock RibbonBar first tests | Hi,
I wanted to test and know what would happen when we develop an application using FWH along with a third party OCX control.
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:46ez9d7n][b:46ez9d7n]CodeJock Setup is not installed[/b:46ez9d7n... |
Codejock RibbonBar first tests | Antonio, and ALL,
Why we must use an activex to use a RIbbonBar control ?
Why We not create together a Ribbon control only on fwh sources ?
I think using an activex it is too heavy and slow.
Perhaps maybe we can together create this control
beginning to create only the bar control
and the insert on down a small folde... |
Codejock RibbonBar first tests | Silvio,
We may create it, but in the meantime we can use CodeJock's one <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Codejock RibbonBar first tests | Daniel,
Excellent! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Thanks |
Codejock RibbonBar first tests | Anser,
Please register the OCX this way, before creating the ActiveX:
RegisterServer( "Codejock.CommandBars.v12.1.1.ocx" )
or, if using the new version:
RegisterServer( "Codejock.CommandBars.v13.0.0.ocx" )
[code=fw:23t8huaq]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color... |
Codejock RibbonBar first tests | Dear Mr.Antonio,
I tried as suggested by you but unfortunaely the same result
[code=fw:1oqbog0k]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">(</span><span style="color: #ff0000;">"Before Calling the Avtivex"</span><span style="... |
Codejock RibbonBar first tests | Hi All,
I test some Codejock version. I found some problem.
1.Test Codejock v12.1.0/v12.1.1/v13.0.0
[img:2k60ujnl]http://www.fivetech.com.tw/fwh/ribbonbar7.jpg[/img:2k60ujnl]
when I press Max or ajust Window Size, appear problem below:
[img:2k60ujnl]http://www.fivetech.com.tw/fwh/... |
Codejock RibbonBar first tests | Hi ! All .. Please help !
Try to using Activex.prg but error : numeric has no exported method
then I use this code :
[code=fw:tzrdyi2k]<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=... |
Codejock RibbonBar first tests | Hi all,
as described above, on my machine <cEvent> is numerical, so I have changed the RibbonBarEvent() as follows:
[code=fw:1v4eloso]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> RibbonBarEvent<span style="color: #000000;">(</span> cEvent, aParams, pParam... |
Codejock RibbonBar first tests | Fafi,
Your code crashes (GPF) in Windows 7.
Why don't you use FWH Class TActiveX ? |
Codejock RibbonBar first tests | Frank,
Are you using Harbour or xHarbour ? What build ?
What C compiler ? |
Codejock RibbonBar first tests | Hi Fafi,
I remember OsKar make some code like you. Only problem I don't know his EVEN source.
Regards,
Richard |
Codejock RibbonBar first tests | Antonio,
from the error.log:
Compiler version: xHarbour build 1.1.0 Intl. (SimpLex) (Rev. 6220)
Windows version: 6.0, Build 6001 Service Pack 1
I'm using xHarbour.com (xHarbour Builder) with 'xCC'. |
Codejock RibbonBar first tests | [quote="Antonio Linares":3cmznqwo]Fafi,
Your code crashes (GPF) in Windows 7.
Why don't you use FWH Class TActiveX ?[/quote:3cmznqwo]
Mr. Antonio..
when I use tactivex.. get error : numeric has no exported method
when I call :
>> oRb = oAct:Do( "AddRibbonBar", "fwh" )
oRB return valtype = N
>> oTabFiles... |
Codejock RibbonBar first tests | [quote="fafi":d56ds4pl][quote="Antonio Linares":d56ds4pl]Fafi,
Your code crashes (GPF) in Windows 7.
Why don't you use FWH Class TActiveX ?[/quote:d56ds4pl]
Mr. Antonio..
when I use tactivex.. get error : numeric has no exported method
when I call :
>> oRb = oAct:Do( "AddRibbonBar", "fwh" )
oRB return valt... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.