FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour show line number in memo edit
Posts: 107
Joined: Tue Apr 11, 2006 04:36 PM
show line number in memo edit
Posted: Fri Jan 12, 2007 01:31 PM

hi, i need show line and columm with an memoedit, i already make this in format get, but in memo normal i dont know, someone can help me?

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: show line number in memo edit
Posted: Fri Jan 12, 2007 02:40 PM
Nop wrote:hi, i need show line and columm with an memoedit, i already make this in format get, but in memo normal i dont know, someone can help me?


Try

oGet:GetRow()
oGet:GetCol()


EMG
Posts: 107
Joined: Tue Apr 11, 2006 04:36 PM
show line number in memo edit
Posted: Fri Jan 12, 2007 03:13 PM

Enrico, thanks, in format use i use:

oFGet:bLocate := {| nRow, nCol | oMsgItem:SetText( "Lin: " + Str( nRow, 4 ) + " " + "Col: " + Str( nCol, 4 ) ) }

this is can adapted to memo get? thanks

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
show line number in memo edit
Posted: Fri Jan 12, 2007 03:35 PM
Nop wrote:Enrico, thanks, in format use i use:

oFGet:bLocate := {| nRow, nCol | oMsgItem:SetText( "Lin: " + Str( nRow, 4 ) + " " + "Col: " + Str( nCol, 4 ) ) }

this is can adapted to memo get? thanks


What is locate event?

EMG
Posts: 107
Joined: Tue Apr 11, 2006 04:36 PM
show line number in memo edit
Posted: Fri Jan 12, 2007 03:43 PM

i dont know, i see in a sample of format get, i need an way to show line , and columm when user movimente the cursor in memo. like an notepad. thanks again

Posts: 107
Joined: Tue Apr 11, 2006 04:36 PM
show line number in memo edit
Posted: Fri Jan 12, 2007 03:45 PM

or maybe, use richedit in memofields, this is possible? i need like an notepad im memo files, showing the line and columm of cursor. thanks

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
show line number in memo edit
Posted: Fri Jan 12, 2007 04:53 PM
This is a sample but it is not working properly. Antonio?

#include "Fivewin.ch"


FUNCTION MAIN()

    LOCAL oDlg

    LOCAL oGet, cVar := "This is a test"

    LOCAL oRow, oCol

    DEFINE DIALOG oDlg;
           SIZE 400, 400

    @ 0, 0 GET oGet VAR cVar MEMO;
           SIZE 100, 100

    oGet:bKeyDown = { || ShowRowPos( oGet, oRow, oCol ) }

    @ 10, 0 SAY oRow PROMPT "nRow = " + LTrim( Str( oGet:GetRow() ) )
    @ 11, 0 SAY oCol PROMPT "nCol = " + LTrim( Str( oGet:GetCol() ) )

    oDlg:bStart = { || oGet:SetPos( 0 ) }

    ACTIVATE DIALOG oDlg;
             CENTER

    RETURN NIL


STATIC FUNCTION SHOWROWPOS( oGet, oRow, oCol )

    oRow:SetText( "nRow = " + LTrim( Str( oGet:GetRow() ) ) )
    oCol:SetText( "nCol = " + LTrim( Str( oGet:GetCol() ) ) )

    RETURN NIL


EMG
Posts: 107
Joined: Tue Apr 11, 2006 04:36 PM
show line number in memo edit
Posted: Fri Jan 12, 2007 10:05 PM

Enrico, this is my problem... dont work...

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
show line number in memo edit
Posted: Fri Jan 12, 2007 10:43 PM
Nop wrote:Enrico, this is my problem... dont work...


Did you try my sample? It works... almost. :-)

EMG

Continue the discussion