Search found 43 matches: gtf

Return to advanced search

Re: Recognizing a Word-document

...                       .f. }, ;         { "DOC.GTF",   "GTF" + Chr( 5 ),                      .f. }, ;  ...
by nageswaragunupudi
Sun Mar 13, 2022 10:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Recognizing a Word-document
Replies: 3
Views: 454

Re: Tget versus TFget

for "rtf" RichEdit
for "gtf" FGet (FORMAT GET)
for "multiline text" MGET ( GET ..... MEMO )
for "single line text" Normal GET
by nageswaragunupudi
Sun Jan 30, 2022 5:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tget versus TFget
Replies: 3
Views: 429

Re: Ayuda DLL

... referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|BTNBMP Error: Unresolved external '_HB_FUN_STUFF' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|GTF Error: Unresolved external '_HB_FUN_ISDIGIT' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|GTF Error: Unresolved external '_HB_FUN_ANSITOWIDE' referenced ...
by ricardog
Fri Sep 01, 2017 2:16 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6348

Re: Ayuda DLL

... referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|MSGBAR Error: Unresolved external '_HB_FUN_CODETEXT' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|GTF Error: Unresolved external '_HB_FUN_STUFF' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|GTF Error: Unresolved external '_HB_FUN_AAT' referenced ...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6348

Re: Radio and GTF problem

Antonio, thanks! To run next/prev, this change is required! Tested with my last sample. METHOD GoPrevNext( lNext ) CLASS TRadMenu   local nMove:= 0   local nOption:= ::nOption   DEFAULT lNext:= .F.   while ! ( nMove > Len( ::aItems ) )      nMove++      if lNext         nO...
by byte-one
Mon Apr 10, 2017 1:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Radio and GTF problem
Replies: 12
Views: 1967

Re: Radio and GTF problem

This method has to be modified this way: METHOD Refresh() CLASS TRadMenu   local nOption := Eval( ::bSetGet )   local nAt     := AScan( ::aItems, { | oRadio | If( oRadio != nil, oRadio:lIsChecked(), .f. ) } )   DEFAULT nOption := 1   if nAt != nOptio...
by Antonio Linares
Sun Apr 09, 2017 10:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Radio and GTF problem
Replies: 12
Views: 1967

Re: Radio and GTF problem

Please change the example to this one and click on next/prev. You see, no reaction from the radio-Buttons. In some cases more then one button is checked if i click with the mouse. function Main()    local oWin    DEFINE WINDOW oWin TITLE "Testrad"    A...
by byte-one
Sun Apr 09, 2017 5:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Radio and GTF problem
Replies: 12
Views: 1967

Re: Radio and GTF problem

How to reproduce it ?

Please provide instructions or a video, many thanks
by Antonio Linares
Sun Apr 09, 2017 4:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Radio and GTF problem
Replies: 12
Views: 1967

Re: Radio and GTF problem

Antonio, not the right way! The double call is take away but some radio-buttons stay checked if gonext() and goprev() and click on a radio-button with mouse!
by byte-one
Sun Apr 09, 2017 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Radio and GTF problem
Replies: 12
Views: 1967

Re: Radio and GTF problem

Günther,

Please make this change in Class TRadio:

METHOD Click() INLINE ::oRadMenu:Select( Self ), ::Super:Click() // ::oRadMenu:Refresh()

that seems to solve it

Many thanks for the example
by Antonio Linares
Sun Apr 09, 2017 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Radio and GTF problem
Replies: 12
Views: 1967

Re: Radio and GTF problem

Antonio, Mr Nages, there are a test! The problem is only present if the dialog is child! The main window calls the refresh() and in this refresh() is bChange calling. Maybe other controls also affected! function Main()    local oWin    DEFINE WINDOW oWin TITLE "Testrad"    ACTIVATE...
by byte-one
Sun Apr 09, 2017 9:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Radio and GTF problem
Replies: 12
Views: 1967

Re: Radio and GTF problem

byte-one wrote:Antonio, i have made inside my program a simple dialog with only a radio with 5 items and a button. ON CHANGE of the radio call a msginfo(). This msginfo are showing a second one if i close the first one!
WIN 10??

Can you provide a sample please?
by nageswaragunupudi
Sat Apr 08, 2017 5:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Radio and GTF problem
Replies: 12
Views: 1967

Re: Radio and GTF problem

Antonio, i have made inside my program a simple dialog with only a radio with 5 items and a button. ON CHANGE of the radio call a msginfo(). This msginfo are showing a second one if i close the first one!
WIN 10??
by byte-one
Fri Apr 07, 2017 6:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Radio and GTF problem
Replies: 12
Views: 1967

Re: Radio and GTF problem

I have modified samples\testrad.prg with this:

REDEFINE RADIO oRadMenu VAR nOption ID 110, 120, 130, 140, 150 OF oDlg ;
ON CHANGE MsgInfo( nOption )

and it only appears once
by Antonio Linares
Fri Apr 07, 2017 4:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Radio and GTF problem
Replies: 12
Views: 1967

Re: Radio and GTF problem

Günther, Thanks for the reminder, as I missed this post from you > In the meanwhile i found, that this only appears, if in the function of the codeblock a call to another dialog are present. (msginfo(),..). A bPainted-call of the parent-window?? Surely it is related to the focus. Those functions ...
by Antonio Linares
Fri Apr 07, 2017 4:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Radio and GTF problem
Replies: 12
Views: 1967
Next

Return to advanced search