Search found 57 matches: getwindowtext

Return to advanced search

Re: Last character on REDEFINE SAY not displaying with Win7

Antonio Linares wrote:Frances,

That bug was fixed in 11.05 revised build:

In brushes.c

- GetWindowText( hWnd, text, iLen );
+ GetWindowText( hWnd, text, iLen + 1 );




Mr. Antonio,

I cant find brushes.c in my FWH11.05 directory..
by fraxzi
Thu Jan 26, 2012 12:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SOLVED: Last character on REDEFINE SAY not displaying..
Replies: 5
Views: 1034

Re: Last character on REDEFINE SAY not displaying with Win7

Frances,

That bug was fixed in 11.05 revised build:

In brushes.c

- GetWindowText( hWnd, text, iLen );
+ GetWindowText( hWnd, text, iLen + 1 );
by Antonio Linares
Wed Jan 25, 2012 6:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SOLVED: Last character on REDEFINE SAY not displaying..
Replies: 5
Views: 1034

Re: GPF error

Hello Antonio I have a casual GPF error and don't know how to resolve . The message is :Offset : 001fb5f and this is the section of the MAP file 0001:0001F02C c611_0 0001:0001F02C __SetAcceleratorTable 0001:0001F047 _HB_FUN_SETIDLEACT 0001:0001F04C _HB_FUN___GENGPF 0001:0001F058 _HB_FUN_WINRUN 0001...
by Patrizio
Tue Apr 20, 2010 6:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GPF error
Replies: 11
Views: 2586

GPF error

Hello Antonio I have a casual GPF error and don't know how to resolve . The message is :Offset : 001fb5f and this is the section of the MAP file 0001:0001F02C c611_0 0001:0001F02C __SetAcceleratorTable 0001:0001F047 _HB_FUN_SETIDLEACT 0001:0001F04C _HB_FUN___GENGPF 0001:0001F058 _HB_FUN_WINRUN 0001:...
by Maurizio
Mon Jul 20, 2009 4:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GPF error
Replies: 11
Views: 2586

Re: FWH/xHarbour Menus

... != 0 if hCtrl != hCtrlAt .and. GetParent( hCtrl ) == ::hWnd .and. ; IsWindowEnabled( hCtrl ) .and. ; ( nAt := At( "&", cText := GetWindowText( hCtrl ) ) ) != 0 .and. ; Lower( SubStr( cText, nAt + 1, 1 ) ) == Lower( Chr( nChar ) ) while Upper( GetClassName( hCtrl ) ) == "STATIC" ...
by E. Bartzokas
Mon May 25, 2009 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH/xHarbour Menus
Replies: 20
Views: 7814

Re: problems in Picture clause of SAY command

... SetWindowText( ::hWnd, ::cCaption ) like in fwh 8.12 and so it works well. what do you think? 2) the ELSE condition in fwh 8.12 is: ::cCaption = GetWindowText( ::hWnd ) the ELSE condition in fwh 9.03 is: ::cCaption = ::GetText() is this correct for fwh 9.03? thanks, marzio
by marzio
Mon May 04, 2009 8:13 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: problems in Picture clause of SAY command
Replies: 7
Views: 1870

Richtext

... drop a file from explorer http://www.winhotel.at/fw/file.jpg To detect a text drop I watch GetWindowText( ::hWnd ) and changed the HandleEvent method. This is working. But I can’t find out in which DATA a file drop is stored. Could you please ...
by Otto
Tue Dec 30, 2008 1:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Richtext
Replies: 2
Views: 533

Es GetWindowText() en vez de GetTextWindow()

De todas formas, no creo que te vaya a funcionar asi. Tienes que hacerlo de otra forma. Voy a buscarte un ejemplo :-)
by Antonio Linares
Tue Jun 03, 2008 8:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Una pregunta de recursos
Replies: 17
Views: 3190

Hello James,

if Gurus have time you get what you need. Thanks again.
Now it works.
Regards,
Otto

if Len( oWnd:oWndClient:aWnd ) > 0
msginfo("hWnd: " + str(oWnd:oWndClient:aWnd[1,1]) + " "+ GetWindowText( oWnd:oWndClient:aWnd[1,1] ) )
endif
oWnd:CloseAll()
by Otto
Wed Feb 20, 2008 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to find MDICHILD windows
Replies: 6
Views: 1432

... SearchWnd( cTitle ) Local nHwnd := 0 nHwnd := GetDeskTopWindow( ) /* nHwnd := GetWindow( nHDesktop, 0 ) // GW_HWNDFIRST Traza( nHwnd, "-", GetWindowText( nHwnd ) ) nHwnd := GetWindow( nHDesktop, 1 ) // GW_HWNDLAST Traza( nHwnd, "-", GetWindowText( nHwnd ) ) nHwnd := GetWindow( nHDesktop, ...
by FiveWiDi
Sun Dec 09, 2007 5:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuditaa con captura de ventanas
Replies: 11
Views: 2421

IF UPPER( cTitle ) == left( UPPER( GETWINDOWTEXT( hWnd ), len(cTitle) ) This wouldn't work if cTitle were contained inside the window caption. In the code I posted, I discovered that GETWINDOWMODULEFILENAME() is returning some strange results. ...
by Enrico Maria Giordano
Sat Nov 24, 2007 10:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Set Multiple
Replies: 25
Views: 5788

Enrico, It looks like your new code might solve the MDI-Child issue. Although this line: IF UPPER( cTitle ) $ UPPER( GETWINDOWTEXT( hWnd ) ) Might be safer done this way: IF UPPER( cTitle ) == left( UPPER( GETWINDOWTEXT( hWnd ), len(cTitle) ) In the code I posted, I discovered that ...
by James Bott
Fri Nov 23, 2007 11:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Set Multiple
Replies: 25
Views: 5788

... function FindWnd1( cTitle ) local hWnd := GetWindow( GetDesktopWindow(), GW_CHILD ) msginfo(cTitle ) while hWnd != 0 if Upper( cTitle ) $ Upper( GetWindowText( hWnd ) ) return hWnd endif hWnd = GetWindow( hWnd, GW_HWNDNEXT ) end return nil function FindWnd( cTitle ) local hWnd := GetWindow( GetDesktopWindow(), ...
by Otto
Fri Nov 23, 2007 8:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Set Multiple
Replies: 25
Views: 5788

... ) endif return nil function FindWnd( cTitle ) local hWnd := GetWindow( GetDesktopWindow(), GW_CHILD ) while hWnd != 0 if Upper( cTitle ) $ Upper( GetWindowText( hWnd ) ) return hWnd endif hWnd = GetWindow( hWnd, GW_HWNDNEXT ) end return nil
by Richard Chidiak
Fri Nov 23, 2007 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Set Multiple
Replies: 25
Views: 5788

... lo que deseo. El método al final queda: .../... case nMsg == WM_PASTE CallWindowProc( ::nOldProc, ::hWnd, WM_PASTE, 0, 0 ) ::oGet:buffer = Pad( GetWindowText( ::hWnd ), Len( ::oGet:buffer ) ) DEFINE CLIPBOARD oClp OF Self FORMAT TEXT ::oGet:Pos += Len( oClp:GetText() ) oClp:End() ::oGet:Assign() ...
by FiveWiDi
Mon Apr 16, 2007 5:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Métodos Cut y Paste de TGet y ::bpostkey.
Replies: 3
Views: 919
PreviousNext

Return to advanced search