Search found 24 matches: getdlgitem

Return to advanced search

Re: Fwh 23.10 TGet another problem (UNSOLVED)

... "Initiate - c1",IsWindowUnicode(::hWnd), PROCNAME()        ENDIF   if( ( ::hWnd := GetDlgItem( hDlg, ::nId ) ) != 0 )  <------------------- This line.        IF ::ClassName()="TGET"  ...
by Horizon
Sun Feb 04, 2024 3:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 54154

Re: Ayuda DLL

Antonio buenos dias, gracias por la ayuda Agrego la VM.LIB (xharbour), y me manda estos errorres :( :( Proyecto: Kept5, Entorno: BorlandDLL: [1]:Harbour.Exe Source\Tseguro.prg /m /n /es2 /ki /iP:\32bits\xharbour\include;P:\32bits\FWH\INCLUDE /i /oObj\Tseguro.c xHarbour Compiler build 1.2.1 (SimpLex)...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6329

Re: xHarbour 1.2.3 build 20141106

This is the changelog for November and December: 2014-12-02 20:00 UTC-300 Luiz Rafael Culik <luiz/AT/xharbour/com/br> * include/hbdefs.h ! minor fix for double defined HB_SYMBOL_USED 2014-12-02 14:35 UTC+0200 Saulius Zrelskis <labitas/AT/gmail/com> * source/rtl/win32ole.prg ! add missing...
by Enrico Maria Giordano
Thu Dec 04, 2014 5:09 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour 1.2.3 build 20141106
Replies: 16
Views: 5820

Re: FWH 14.09 y xHarbour Compilation errors

From Mel Smith website: Hi: We have available individual builds for 10044 for the following Compilers. BCC 5.5.1, BCC 5.8.2, BCC 6.8, BCC 6.9, MSVC 10, and MinGW Version 4.8.2 To examine and download these builds, please visit: whosaway.com (Password: 'XHB') A current fragment of the Changelog is sh...
by Enrico Maria Giordano
Tue Nov 18, 2014 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 14.09 y xHarbour Compilation errors (Solved)
Replies: 14
Views: 4692

Retrieve the text from a SAY over his ID

Hello all!
I want to retrieve the text from a say-object over his ID.
With GetDlgItem( oDlg:hWnd, nID ) i become the handle from the control but not his value.
by byte-one
Sat May 17, 2014 9:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Retrieve the text from a SAY over his ID
Replies: 1
Views: 342

Re: "Snap" for Clipper

...  2540  2962 GETDEVICECAPS()        (function  in ?)    WINDOW.PRG      896   901 GETDLGCODE()           (function  in ?)    WINDOW.PRG      614 GETDLGITEM()           (function  in ?)    WINDOW.PRG     1528 GETDRAWITEM()          (function  in ?)    WINDOW.PRG     1496  1504 GETDRAWMENU()   ...
by Antonio Linares
Sat Oct 26, 2013 9:44 am
 
Forum: Off Topic / Otros temas
Topic: "Snap" for Clipper
Replies: 7
Views: 6690

Re: Force a left mouse click

HI Rick

Try this

SendMessage(GetDlgItem(oDlg:hWnd,BtnStckAdd),FM_CLICK,0,0))


Cheers

Colin
by Colin Haig
Tue Oct 01, 2013 11:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Force a left mouse click
Replies: 1
Views: 318

Re: Un control en un TPanel

... de pasar por DefControl() pasa por AddControl() que es de TWINDOW, común a todo y todos. Lo que no llego a entender es porque ahora si funciona GetDlgItem() y antes no, pues hDlg no venía como 0 y se refería al mismo TPANEL. Pero bueno, lo importante es que funciona y que me has sacado de un ...
by antolin
Mon May 27, 2013 9:35 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Un control en un TPanel
Replies: 11
Views: 2592

Re: Un control en un TPanel

... Pero aparece otro problema. El flujo del programa, efectivamente, intienta incializar el TSAY, pero cuando llega a: IF( ( ::hWnd := GetDlgItem( hDlg, ::nId ) ) # 0 ) falla porque GetDlgItem( hDlg, ::nId ) devuelve 0 y se corta. Seguramente porque TPANEL no es un dialogo. ...
by antolin
Mon May 27, 2013 8:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Un control en un TPanel
Replies: 11
Views: 2592

Re: Un contrl en un TPanel

... recurso, sino a mano con @ 10,10 .... . Segundo lo que falla es el TSAY que no se asocia con el panel. La línea del INITiATE: IF( ( ::hWnd := GetDlgItem( hDlg,::nId ) ) # 0 ) me devuelve 0 y creo que es porque no reconoce ::nId como item del panel. Seguramente tendrá algo que ver que no viene ...
by antolin
Thu May 23, 2013 3:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Un control en un TPanel
Replies: 11
Views: 2592

Re: Check if ID exist in resource

Antonio,

GetDlgItem( hDlg, nID ) allways returned 0 but oDlg:getitem(nID) is working fine.
The only problem I have now is to redefine a control in the function called in the ON INIT,it doesn't work.
Is it an other syntax I have to use?

Regards,
Marc
by Marc Vanzegbroeck
Sun Jan 15, 2012 7:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Check if ID exist in resource
Replies: 5
Views: 960

Re: Check if ID exist in resource

Marc, You could use: GetDlgItem( hDlg, nID ) --> hControl hControl will be zero if such control does not exist. The problem with this function is that you can not use it until you have the hWnd of the dialog, in other words: it will ...
by Antonio Linares
Sun Jan 15, 2012 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Check if ID exist in resource
Replies: 5
Views: 960

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: 2558

Re: Se necesita ayuda en el wiki !

... GetCpuSpeed() GetCtrlId() Getcurdir() GetCursorPos() GetDatas() GetDC() GetDesktopWindow() GetDeviceCaps() GetDialogBaseUnits() GetDlgBase() GetDlgItem() GetDrawIte() GetDrawMenu() GetDropInfo() GetFirstInZip() GetFocus() GetFontInfo() GetFrameProc() GetFreeFil() GetFreeSpace() GetFTime() ...
by Cgallegoa
Sun Feb 21, 2010 10:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se necesita ayuda en el wiki !
Replies: 12
Views: 5500

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: 2558
Next

Return to advanced search