Sticky Label

Post Reply
Jaque Morique
Posts: 17
Joined: Thu Apr 22, 2010 5:15 am

Sticky Label

Post by Jaque Morique »

Look at this video how can i create a control like this

Tx Jaque

http://www.purecomponents.com/products/ ... abels.aspx
User avatar
MdaSolution
Posts: 401
Joined: Tue Jan 05, 2010 2:33 pm

Re: Sticky Label

Post by MdaSolution »

it's wonderfull but perhap on fwh we cannot on the next 20 years
FWH .. BC582.. xharbour
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

Re: Sticky Label

Post by Otto »

Hello MdaSolution,
I don’t understand the problem in creating such a control?
Please explain.
Thanks in advance and best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
User avatar
MdaSolution
Posts: 401
Joined: Tue Jan 05, 2010 2:33 pm

Re: Sticky Label

Post by MdaSolution »

I think Fwh need classes more important than these...there are many classes not run with many errors ok ?

for sample one I made a simply folder on a dialog with source code because resources leak memory , but I cannot show the folder disabled why ?

for sample two if I made a dialog with tprogress and compile with Workshop I can see the colore green , but on Seven Window I cannot use Workshop Borland 16 bit and I must use Pellesc and if I compile with Pellesc I cannot show the color green but I see this control as a 16 bit

and then fwh need a visual report designer native and a visual designer form native

visual fivewin not run also
FWH .. BC582.. xharbour
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

Re: Sticky Label

Post by Otto »

MdaSolution,
I think Fwh need classes more important than these...there are many classes not run with many errors ok ?
for sample one I made a simply folder on a dialog with source code because resources leak memory , but I cannot show the folder disabled why ?
Your statements don’t help to improve the software. Which class errors out?
Please post your source code in a self-contained sample. I am sure you will get help here.
for sample two if I made a dialog with tprogress and compile with Workshop I can see the colore green , but on Seven Window I cannot use Workshop Borland 16 bit and I must use Pellesc and if I compile with Pellesc I cannot show the color green but I see this control as a 16 bit
Borland and Workshop are products from the last century and not supported any more.
It is a good idea to use Pelles C.

Have you seen the new Class TMeterEx?
http://forums.fivetechsupport.com/viewt ... 544#p96544
and then fwh need a visual report designer native and a visual designer form native
There is FastReport with a Harbour interface and EasyReport a native Fivewin report designer.
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
hag
Posts: 598
Joined: Tue Apr 15, 2008 4:51 pm
Location: LOs Angeles, California
Contact:

Re: Sticky Label

Post by hag »

for sample two if I made a dialog with tprogress and compile with Workshop I can see the colore green , but on Seven Window I cannot use Workshop Borland 16 bit and I must use Pellesc and if I compile with Pellesc I cannot show the color green but I see this control as a 16 bit
I use workshop all the time. Set preferences to 32bit and it creates from the dialog a 32bit resource. Then I compile it into my exe. It works fine for me.
Thank you
Harvey
User avatar
MdaSolution
Posts: 401
Joined: Tue Jan 05, 2010 2:33 pm

Re: Sticky Label

Post by MdaSolution »

Otto,

Hag,

Before to write message read good the question:
I prefer create also to source code and not with resource code because resources leak memory on the Windows Seven

For the Folder error
there is a Topic in this english forum , Also Stephan Haupt Sad it can be a bug...

PROGRESS
I not use TmeterEx I want use Tprogress on source code please u can try to compile with PellesC and Workshop Borland and also U can see the effect colors difference

REPORT
Fast Report not was made with FWH SOURCE CODE I cannot insert designer obj on our application and thereare many problems to use this application : it created rtf file where I cannot modify anythings.

Report Designer is made with fivewin is good but it is too hard to use, and i cannot insert obj into my application and make an EXE complete.

The Class Ribbon was end ? and the other option and features of this class where are ?

But these are just a few examples, many times I find difficults to create invoices, or search data and filters or create a better UI in my applications lost time many, many hours of work.
FWH .. BC582.. xharbour
User avatar
richard-service
Posts: 583
Joined: Tue Oct 16, 2007 8:57 am
Location: New Taipei City, Taiwan
Contact:

Re: Sticky Label

Post by richard-service »

MadSolution,

I agree it.
I test Codejock ActiveX GUI good.
Look TProgress, you will be know. First Progress FWH, Second Progress Codejock Progress.

http://www.fivetech.com.tw/products/mis ... ejock.html
Regards,

Richard

Harbour 3.2.0dev (r1904111533)/xHarbour 1.2.3 Intl. (SimpLex) (Build 20180818) => Borland C++ v7.4
xHarbour 0.99.71 (SimpLex) => Borland C++ v5.5
MySQL v5.7 /ADS v12
Harbour 3.2.0dev (r1603181642) => Borland C++ v7.4 64bit
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

Re: Sticky Label

Post by Otto »

MdaSolution,
REPORT
Fast Report not was made with FWH SOURCE CODE I cannot insert designer obj on our application and thereare many problems to use this application : it created rtf file where I cannot modify anythings.
For me FastReport is a very good solution. And I tried many report designers but find FastReport to be the best.
>I cannot insert designer obj

Code: Select all

    oFr := frReportManager():New()
    oFr:LoadLangRes( "German.xml" )
    oFr:SetIcon( 1 )

    oFr:SetWorkArea( "tbeleg", SELECT("tbeleg") )

    oFr:SetTitle( "Ankunftsliste" + cTITLE )
    oFr:LoadFromFile( ".\REPS\AnkunftslisteQuer.FR3" )

    oFr:AddVariable( "TITEL", "Titel", "'" + cTITLE + "'" )
    oFr:AddVariable( "TITEL", "Titel2", "'" + cTITLE2 + "'" )
    oFr:AddVariable( "FIRMA", "CompanyReport", "'" + setup():LizenzNehmer +"'" )



    if GETKEYSTATE(VK_CONTROL)
       oFr:DesignReport()
    else
       oFr:ShowReport()
    endif

    oFr:DestroyFr()
 
In practice this is all you need.

This is a nice trick I read about in the forum.

Code: Select all

            if GETKEYSTATE(VK_CONTROL)
               oFr:DesignReport()
            else
               oFr:ShowReport()
            endif


 

If you press the control key during starting the report the designer starts automatically.
If you have more question please come back.
Report Designer is made with fivewin is good but it is too hard to use, and i cannot insert obj into my application and make an EXE complete.
Try to link the the prg files instead of the obj:
0=..\..\develop8\WH_Fwh\classes\vrd.prg
1=..\..\develop8\WH_Fwh\classes\vrdbcode.prg
2=..\..\develop8\WH_Fwh\classes\vrditem.prg
The Class Ribbon was end ? and the other option and features of this class where are ?
As you are very new to the forum you can't know the conventions.
But you have no right to get an answer in this forum. All the people here help for free.
I think you can get paid support from Fivetech. Please ask.
You have to post your questions in an interesting way that someone gets interested in the question and tries to search for an answer.
datepick into a ribbon folder
by MdaSolution " Tue Apr 20, 2010 9:02 am
Any solution ?
I am sure if you post a little sample what you tired so fare where you face the problem a little screen shot what you want you will get help.
But these are just a few examples, many times I find difficults to create invoices, or search data and filters or create a better UI in my applications lost time many, many hours of work.
We don't know much of you. Are you coming from another language or are you a beginner?
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
User avatar
MdaSolution
Posts: 401
Joined: Tue Jan 05, 2010 2:33 pm

Re: Sticky Label

Post by MdaSolution »

Otto,
we 're beginner ...novice..

Please :

we prefer a designer visual report ( source fivewin for harbour) to include our application

vrd sources not have designer to insert to our application

We read for the Ribbon you are one of the most gurus, we thinked you Know the future ....

and for the folder or tprogress ? have you try to create a test ?
FWH .. BC582.. xharbour
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

Re: Sticky Label

Post by Otto »

Hello MdaSolution,
we prefer a designer visual report ( source fivewin for harbour) to include our application
I hope I understand what you want:
If you create the report and use:
oFr:DesignReport() than the report designer starts automatically
Have you tried the samples which come with FastReport?
vrd sources not have designer to insert to our application
vrd.exe is the standalone program to create the reports.
You have to use this to create and design your reports.
The designer creates the vrd-files

Code: Select all

[General]
Title=Seitenende
Width=80
Height=20
Top1=160
Top2=160
TopVariable=1
Condition=1
DelEmptySpace=0
BreakBefore=0
BreakAfter=0

[Items]
401=Text|Zeile|101|1|1|1|6|0|80|6|1|3|2|1|0|0||0
402=Text|Text2|102|  0|1|1|12|1|78|7|1|3|2|3|0|0||0
 
From Fivewin you call these “placeholders” like that:

Code: Select all

PRINTAREA 60 OF oVRD    ITEMIDS   { 101,402 }  ITEMVALUES { str(nSumme , str(test)) }
 
Ribbon ... we thinked you Know the future ....
For me Office 2010 style becomes the new standard of the upcoming software generation.
I try to reach that look. Sure there are things missing in Fivewin. But the ribbonbar is working fine and easy to implement.
The execution speed is tremendous.

What exactly do you need?
I think we should post here concert feedback and wishes to the developers and help with testing.
For me to use an ActiveX or a third-party is not an option.
One of my subscriptions I had for a VB.NET component published with every update (4-6 month) more than 80 new features. This is nice if you have much time.


and for the folder or tprogress ? have you try to create a test ?
I would suggest to wait for the new class coming with Fivewin 10.4.

Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
Jaque Morique
Posts: 17
Joined: Thu Apr 22, 2010 5:15 am

Re: Sticky Label

Post by Jaque Morique »

Should i start to modify the get Class or better the sbutton Class for this label

TX
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

Re: Sticky Label

Post by Otto »

Hello Jaque,
Maybe you could overwrite the „tooltip“ method?
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
User avatar
MdaSolution
Posts: 401
Joined: Tue Jan 05, 2010 2:33 pm

Re: Sticky Label

Post by MdaSolution »

perhaps with tgsay
FWH .. BC582.. xharbour
The Real Fasi
Posts: 20
Joined: Tue Feb 02, 2010 10:32 am

Re: Sticky Label

Post by The Real Fasi »

I also think TrSay or Tsay an include a get inside or better a Btnget inside

Greatings from Tasmanien
Post Reply