Search found 84 matches: postmsg

Return to advanced search

... FUNCTION Teclado(oDlg,nKey,nVeces) LOCAL nVez DEFAULT nVeces := 1 oDlg:SETFOCUS() FOR nVez := 1 TO nVeces oDlg:POSTMSG(WM_KEYDOWN,nKey,0) NEXT RETURN (NIL) Mira que primero hago activo el Diálogo al que envío la tecla, despues con un FOR - NEXT ...
by Armando
Tue Sep 30, 2008 5:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: KeyBoard() ERROR
Replies: 10
Views: 2868

... ElseIf lRecall ( cAlias )->( DbRecall() ) ( cAlias )->( DbUnlock() ) EndIf If ::lCanAppend .and. ::nLen == 0 ::nRowPos := ::nColPos := 1 ::PostMsg( WM_KEYDOWN, VK_DOWN, nMakeLong( 0, 0 ) ) EndIf If ::bPostDel != Nil Eval( ::bPostDel , Self ) EndIf ::lHasChanged := .T. Case ::oDbf != Nil ...
by Natter
Mon Sep 08, 2008 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bChange
Replies: 9
Views: 5602

... en el siguiente codigo METHOD Mensaje( nKey ) CLASS TMBrowse If nKey != NIL .and. nKey != 0 ::SetFocus() ::PostMsg( WM_KEYDOWN, nKey, nMakeLong( 0, 0 ) ) EndIf RETURN 0 Desde el principio, para controlar la navegación por el browse le enviaba ...
by miarcod
Tue Jul 01, 2008 9:47 pm
 
Forum: FiveWin para CA-Clipper
Topic: Antonio Problema con TCBROWSE desde la actualización
Replies: 13
Views: 3574

Texto encontrado

... function SkipLines( nLines, oGet, nAt ) local n for n = 1 to nLines oGet:PostMsg( WM_VSCROLL, 1 ) next return nil //************************************************* Cordialmente Jairo Barbosa
by jaba
Mon Jun 23, 2008 3:08 pm
 
Forum: FiveWin para CA-Clipper
Topic: Texto encontrado
Replies: 1
Views: 771

8.04 and oWnd:end( )

... message, but it was an intentional close and thus it should not appear. This is a new behavior in 8.04. It worked fine in 8.03. I did try the oWnd:PostMsg(WM_CLOSE) suggestion but that also generates the same error message from Vista Tim
by TimStone
Thu Apr 17, 2008 7:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 8.04 and oWnd:end( )
Replies: 29
Views: 4661

Richard Chidiak wrote:Robert
Do you have the problem on a main mdi, mdichild or a sdi window ?
Richard


Main mdi

oWND:PostMsg(WM_CLOSE) generates GPF
by Robert Frank
Tue Apr 15, 2008 5:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: rebuild and found error fwh 8.04 & xHb.com
Replies: 42
Views: 5854

Robert

In my case on a main mdi window i also had a gpf calling ownd:end()

This was fixed by replacing with

oWND:PostMsg(WM_CLOSE)
oWND := NIL

Do you have the problem on a main mdi, mdichild or a sdi window ?

HTH

Richard
by Richard Chidiak
Tue Apr 15, 2008 4:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: rebuild and found error fwh 8.04 & xHb.com
Replies: 42
Views: 5854

Richard Chidiak wrote:Robert

instead of ownd:end() , try ownd:PostMsg(WM_CLOSE)

HTH

Richard


Thanks Richard for your idea, but I got the same error.
by Robert Frank
Tue Apr 15, 2008 4:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: rebuild and found error fwh 8.04 & xHb.com
Replies: 42
Views: 5854

Robert

instead of ownd:end() , try ownd:PostMsg(WM_CLOSE)

HTH

Richard
by Richard Chidiak
Tue Apr 15, 2008 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: rebuild and found error fwh 8.04 & xHb.com
Replies: 42
Views: 5854

... oWnd, VK_INSERT ) a ver si tienes suerte. Saludos Carlos G. /* *************************** */ FUNCTION FWKEYBOARD(OWND,NKEY) OWND:SETFOCUS() OWND:POSTMSG( WM_KEYDOWN, NKEY, 0) RETURN NIL /* *************************** */
by FiveWiDi
Wed Feb 13, 2008 9:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Enviar caracteres a varias ventanas a la vez
Replies: 13
Views: 3916

Hola,

prueba con lbCapMvs:PostMsg( WM_RBUTTONDOWN)

saludos

Marcelo
by Marcelo Via Giglio
Fri Feb 09, 2007 6:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciona el SetFocus() ???? a veces si a veces no......
Replies: 7
Views: 1470

Mr.Antonio

Thank you very much for your reply.

After spending some time on this, I could get the
required effect with the following statement.

oGet1:PostMsg( WM_RBUTTONDOWN )


Regards to you

- Ramesh Babu P
by RAMESHBABU
Tue Nov 14, 2006 2:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: :SetFocus problem with WHEN clause in Gets and Pushbuttons
Replies: 10
Views: 3097

Ramesh,

Try this:

oGet1:PostMsg( WM_SETFOCUS )
oBtn1:oJump = oGet1
by Antonio Linares
Fri Nov 10, 2006 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: :SetFocus problem with WHEN clause in Gets and Pushbuttons
Replies: 10
Views: 3097

Hi Mr.Antonio Once the focus is passed on to a get with oGet1:PostMsg(EM_SETFOCUS) and when I click on any other controls or press tab, the blinking cursor is still showing on old control (oGet1) and bLostFocus is also not working properly. Just add the ...
by RAMESHBABU
Fri Nov 10, 2006 1:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: :SetFocus problem with WHEN clause in Gets and Pushbuttons
Replies: 10
Views: 3097

Ramesh,

Try this:

oGet1:PostMsg( WM_SETFOCUS ) instead of oGet1:SetFocus()
by Antonio Linares
Fri Nov 10, 2006 12:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: :SetFocus problem with WHEN clause in Gets and Pushbuttons
Replies: 10
Views: 3097
PreviousNext

Return to advanced search