Search found 167 matches: tmultiget

Return to advanced search

Re: GEt multiline y cPicture no anda.

Hola, revisé la classe TMultiGet y no encontré esa propiedad. En TGet si se encuentra.
Saludos.
by FranciscoA
Fri Feb 21, 2014 3:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: GEt multiline y cPicture no anda.
Replies: 13
Views: 1483

GEt multiline y cPicture no anda.

Hola.

Tengo:
Code: Select all  Expand view
REDEFINE GET ::oGets[ 7] VAR ::vGets[ 7] ID 145 OF oDlg  MULTILINE
 ::oGets[ 7]:cPicture:= "@!"


Y Cuando lo ejecuto me sale el error:
Error description: Warning BASE/1005 Message not found: TMULTIGET:_CPICTURE


que hago mal?

gracias.
by goosfancito
Fri Feb 21, 2014 2:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: GEt multiline y cPicture no anda.
Replies: 13
Views: 1483

STRANGE Problem with Memo Get

I have a get Memo
@ 1,0 GET oGet VAR cText MEMO Size 100,100 OF oDlg

and I try to insert on it a text

SET KEY VK_F2 TO oGet:Paste( DToC( Date() ) )

when I press F3 insert on memo get this

TMULTIGET:HANDLEEVENT

why ?
by Silvio.Falconi
Sat Sep 21, 2013 11:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: STRANGE Problem with Memo Get
Replies: 2
Views: 610

New FTDN August/Agosto 2013 (FWH 13.08)

... paste from clipboard are provided. Options to Undo, Save and Cancel are provided. XBrHexEdit() provides a simple hex editor. * Enhancement: Class TMultiGet now allows to edit the max file size for each Windows version: http://msdn.microsoft.com/en-us/library/windows/desktop/bb761647(v=vs.85).aspx ...
by Antonio Linares
Tue Sep 17, 2013 10:48 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2013 (FWH 13.08)
Replies: 0
Views: 2511

Re: Class TMultiGet - Focus Color

Thank you Uwe ... Works perfectly :D
by Jeff Barnes
Thu Feb 14, 2013 1:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Class TMultiGet - Focus Color
Replies: 2
Views: 711

Re: Class TMultiGet - Focus Color

Jeff, it is a little bit tricky. I noticed ( with a alert ) during reading the lines in a multiline get, the focus status changed for each line from focus to lost focus. Maybe a bug ? see what happens, changing these lines of the multiline get inside the working function to : @ 3, 10 GET oGet1 VAR c...
by ukoenig
Thu Feb 14, 2013 1:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Class TMultiGet - Focus Color
Replies: 2
Views: 711

Class TMultiGet - Focus Color

Hi,

With a regular get I can set the focus color with:
oGet:SetGetColorFocus( RGB(152,251,152) )

How can I do this with a multiget? Is it possible?
by Jeff Barnes
Thu Feb 14, 2013 1:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Class TMultiGet - Focus Color
Replies: 2
Views: 711

Re: Nuevo FWH 11.11

...     //fgondi      AEval( ::aControls,;             { | o | If( ! Upper( o:ClassName() ) $ ;             "TGET;TMULTIGET;TBTNBMP;TCOMBOBOX;TWBROWSE;TCBROWSE;TXBROWSE;TLISTBOX;TDBCOMBO" .and. ;               ! o:IsKindOf( 'TXBROWSE' ), o:lTransparent ...
by fgondi
Sun Dec 04, 2011 1:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 11.11
Replies: 21
Views: 6049

Re: Harbour 3.0 / MSVC DLL32 error

... These include, but are not limited to, TINI, GRADIENTFILL, MENUEND, MENUADDITEM, MENUBEGIN, TBITMAP, TBAR, SHELLDEBUG, SHELLEXECUTE, TICON, TFONT, TMULTIGET, OSEND, DBGALERTT, TFOLDER, TPRINTEND, PAGEEND, PAGEBEGIN, PRINTBEGIN, TBUTTON. I am using Ultra Edit Studio's Build configuration, but that ...
by TimStone
Tue Nov 29, 2011 7:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour 3.0 / MSVC DLL32 error
Replies: 9
Views: 3153

Re: tMultiget and bLostFocus problem

Yes, I generally avoid to make changes to the fwh classes but this seem to be a bug so a correction of the mget module is needed,
I think the tmultiget has to works with the same tGet logic so the value has to be automatically assigned when the lostfocus is valuated.
by Marco Turco
Wed Jan 12, 2011 12:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tMultiget and bLostFocus problem
Replies: 4
Views: 793

Re: tMultiget and bLostFocus problem

Probably it may not be a good idea to change the class in FWH library.

Instead better we insert this line as the first line of our bLostFocus code
Code: Select all  Expand view
  Eval( oGet:bSetGet, oGet:GetText() )
 
by nageswaragunupudi
Wed Jan 12, 2011 11:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tMultiget and bLostFocus problem
Replies: 4
Views: 793

Re: tMultiget and bLostFocus problem

Hi,
moving Super:LostFocus( hCtlFocus ) all seems to runs well.

I checked that LostFocus method is unchanged beetween Fwh oct 2009 and Fwh Nov 2010
so I think this issue is related to other changes in mget or other "core" FWH classes.

Thanks for your quick support.
by Marco Turco
Wed Jan 12, 2011 10:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tMultiget and bLostFocus problem
Replies: 4
Views: 793

Re: tMultiget and bLostFocus problem

... in multiget class //----------------------------------------------------------------------------//METHOD LostFocus( hCtlFocus ) CLASS TMultiGet   Super:LostFocus( hCtlFocus )   if ::bSetGet != nil      Eval( ::bSetGet, GetWindowText( ::hWnd ) )   endif   ::nPos ...
by nageswaragunupudi
Wed Jan 12, 2011 9:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tMultiget and bLostFocus problem
Replies: 4
Views: 793

tMultiget and bLostFocus problem

... where the get was assigned. I tried to bypass the problem with oGet:Assign() after the bLostFocus is evaluated but this method is not available in tMultiget class. Any ideas ? Thanks in advance.
by Marco Turco
Wed Jan 12, 2011 9:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tMultiget and bLostFocus problem
Replies: 4
Views: 793

New FTDN September/Septiembre 2010 (FWH 10.9)

... Chidiak for his feedback. * Fix: TXBrowse: Autosort and bLClickHeader were not working when oBrw:lAllowColSwapping is .F.. Fixed now. * Fix: Class TMultiGet Method Default() was setting the font to use an extra time. Now it is ok! Thanks to Richard Chidiak for his feedback. * Enhancement: Class ...
by Antonio Linares
Mon Sep 27, 2010 7:43 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2010 (FWH 10.9)
Replies: 0
Views: 1377
PreviousNext

Return to advanced search