Search found 274 matches: sendmessage

Return to advanced search

Re: Get Multiline y Get

Gracias Karinha.
Funcionó con KeyChar(VK_BACK), y SendMessage(oGet1:hWnd, WM_KEYDOWN, VK_DELETE) )
Ahora lo que me queda es emular las teclas LEFT y RIGHT cuando se mantienen oprimidas, para que avance automaticamente, sin necesidad de oprimir tantas veces el botón.
Saludos.
by FranciscoA
Thu Oct 06, 2016 8:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Get Multiline y Get
Replies: 7
Views: 1096

Re: ADORDD FAQs

... .\source\classes\CONTROL.PRG => TBUTTON:HANDLEEVENT( 1687 ) Called from: .\source\classes\WINDOW.PRG => _FWH( 3278 ) Called from: => SENDMESSAGE( 0 ) Called from: .\source\classes\DIALOG.PRG => TDIALOG:COMMAND( 413 ) Called from: => TWINDOW:HANDLEEVENT( 0 ) Called from: .\source\classes\DIALOG.PRG ...
by gautxori
Tue May 10, 2016 7:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADORDD FAQs
Replies: 87
Views: 19690

Re: ADORDD FAQs

... .\source\classes\CONTROL.PRG => TBUTTON:HANDLEEVENT( 1687 ) Called from: .\source\classes\WINDOW.PRG => _FWH( 3278 ) Called from: => SENDMESSAGE( 0 ) Called from: .\source\classes\DIALOG.PRG => TDIALOG:COMMAND( 413 ) Called from: => TWINDOW:HANDLEEVENT( 0 ) Called from: .\source\classes\DIALOG.PRG ...
by gautxori
Sun May 08, 2016 5:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADORDD FAQs
Replies: 87
Views: 19690

Consulta Objetos y Argumentos‏

... from: .\source\classes\CONTROL.PRG => TBUTTON:HANDLEEVENT(1427) Called from: .\source\classes\WINDOW.PRG => _FWH(3353) Called from: => SENDMESSAGE(0) Called from: .\source\classes\DIALOG.PRG => TDIALOG:COMMAND(407) Called from: => TWINDOW:HANDLEEVENT(0) Called from: .\source\classes\DIALOG.PRG ...
by mterraz
Mon Feb 29, 2016 12:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta Objetos y Argumentos‏
Replies: 5
Views: 1877

Re: Duda con MDI y oWndClient

El detalle esta en la funcion SendMessage( hWnd, FM_OPENFILE ) , En este simple ejemplo no lanza el llamado FM_OPENFILE Que condiciones son necesarias en las funciones para que pueda ser reconocida, lo estoy haciendo mal..? No doy como poderlo ...
by cuatecatl82
Sun Dec 06, 2015 2:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda con MDI y oWndClient
Replies: 5
Views: 1105

Duracion de un mp3 ( SOLUCIONADO )

... Called from TBUTTONBMP:HANDLEEVENT(214) in .\source\classes\BUTTONB.PRG Called from _FWH(3553) in .\source\classes\WINDOW.PRG Called from SENDMESSAGE(0) Called from TDIALOG:COMMAND(413) in .\source\classes\DIALOG.PRG Called from TDIALOG:COMMAND(413) in .\source\classes\DIALOG.PRG Called ...
by cuatecatl82
Fri Nov 20, 2015 10:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duracion de un mp3 ( SOLUCIONADO )
Replies: 16
Views: 6435

Re: Mejoras para scintilla

... 23 ) Called from: scintila.prg => TSCINTILLA:HANDLEEVENT( 959 ) Called from: .\source\classes\WINDOW.PRG => _FWH( 3345 ) Called from: => SENDMESSAGE( 0 ) Called from: scintila.prg => TSCINTILLA:SEND( 207 ) Called from: scintila.prg => TSCINTILLA:SETUP( 747 ) Called from: fivedit.prg ...
by cuatecatl82
Fri Aug 14, 2015 11:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mejoras para scintilla
Replies: 1037
Views: 840508

Re: Mejoras para scintilla

... => TFIVEDITWND:NEW( 890 ) Called from: fivedit.prg => TFIVEDIT:NEW( 214 ) Called from: fivedit.prg => MAIN( 23 ) La llamada lo hace aqui: SendMessage( hWnd, FM_OPENFILE ), hay algun valor numerico que remplaze a FM_OPENFILE.? He buscado en Google sin resultados.. Saludos..
by cuatecatl82
Fri Aug 14, 2015 7:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mejoras para scintilla
Replies: 1037
Views: 840508

Re: How to keep a appl. on top of the dialog on resize ?

... ) // Title !!! IF hWnd != NIL IF ISICONIC( hWnd ) SHOWWINDOW( hWnd, SW_RESTORE ) ENDIF IF nType = 1 SETFOREGROUNDWINDOW( hWnd ) ENDIF IF nType = 2 SENDMESSAGE( hWnd, WM_CLOSE ) ENDIF ELSE MsgAlert( "COLORPICKER is not running !", "Attention" ) ENDIF RETURN NIL // ---------- ...
by ukoenig
Sat Aug 01, 2015 1:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to keep a appl. on top of the dlg on resize ? (solved)
Replies: 5
Views: 2438

Re: How to keep a appl. on top of the dialog on resize ?

... oSBtn[16] OF oDlg ; ID 580 PIXEL 2007 ; NOBORDER ; PROMPT "&Exit RGB-colors" ; FILENAME c_path1 + "Exit.Bmp" ; ACTION ( SendMessage( FindWindow( 0, "COLORPICK" ), WM_CLOSE ), oDlg:End() ) ; FONT oFont1 ; LEFT the defined Line in RGB.prg, to keep the colorpicker ...
by ukoenig
Sat Aug 01, 2015 7:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to keep a appl. on top of the dlg on resize ? (solved)
Replies: 5
Views: 2438

Re: ToolTip con Imagen

Paco,

Comprueba que el hBitmap sea correcto:

hBitmap := ReadBitmap( 0, "\video.bmp")
MsgInfo( hBitmap )
SendMessage( hWnd, STM_SETIMAGE, 0, hBitmap )
by Antonio Linares
Thu Jul 23, 2015 6:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ToolTip con Imagen
Replies: 27
Views: 4966

Re: ToolTip con Imagen

Por lo visto se le podría asignar un bitmap a un tooltip de esta forma:

#define STM_SETIMAGE 0x0172

SendMessage( oToolTip:hWnd, STM_SETIMAGE, 0, hBitmap )

Ahora se trata de ver en donde se podría implementar
by Antonio Linares
Thu Jul 23, 2015 4:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ToolTip con Imagen
Replies: 27
Views: 4966

TGet y SetMargins

... oDlg ON INIT oGet:SetMargins( oGet:nHeight, 1 ) funciona bien. ¿Como hago para que funcione en la clase? He visto que el SetMargin es un SendMessage(...) ¿Tendrá algo que ver?
by Carlos Mora
Tue Mar 24, 2015 11:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TGet y SetMargins
Replies: 11
Views: 1007

GPF con RichEdit

Hola Antonio: Al copiar un texto en un RichEdit con control y V, se produce un GPF. El contenido de hb_out.log es: Called from SENDMESSAGE(0) Called from (b)TWINDOW(571) in .\source\classes\WINDOW.PRG Called from TRICHEDIT:SENDMSG(0) in .\source\classes\WINDOW.PRG Called from TRICHEDIT:PASTE(943) ...
by MOISES
Tue Jan 27, 2015 2:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: GPF con RichEdit
Replies: 4
Views: 664

EXCESS RELEASE OF FONT

... <-TGET:DESTROY(766) <-TWINDOW:HANDLEEVENT(0) <-TCONTROL:HANDLEEVENT(1733) <-TGET:HANDLEEVENT(575) <-_FWH(3464) <-SENDMESSAGE(0) <-(b)TWINDOW(573) ------------------------------------------------------------ con la ultima versión de fwh ( 15.01 ) . ¿ Es un problema ...
by mastintin
Mon Jan 19, 2015 4:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: EXCESS RELEASE OF FONT
Replies: 28
Views: 6985
PreviousNext

Return to advanced search