Search found 85 matches

by MaxP
Thu Nov 17, 2011 10:24 am
Forum: All products support
Topic: GetLine() & RTF
Replies: 4
Views: 1271

Re: GetLine() & RTF

Salve, non so se è quello che cerchi però prova queste funzioni negli eventuali bottoni Copia/Incolla. FUNCTION CopiaRiga( oRTF )         LOCAL   nLine         LOCAL   nGetSel   := oRTF:SendMsg( EM_GETSEL )         LOCAL   nStartCur := nLoWord( nGetSel )         LOCAL   nEndCur   := nHiWord( nGetSel...
by MaxP
Fri Oct 21, 2011 10:17 am
Forum: All products support
Topic: BUTTON vs BTNBMP
Replies: 9
Views: 2006

Re: BUTTON vs BTNBMP

Prova ad aggiungere questa riga dopo il controllo BTNBMP

Code: Select all

        @90,10 BTNBMP obtn prompt "Uscita: qui non esce con BTNBMP" OF oDlg ;
        ACTION oDlg:End() pixel size 100,20
        oBtn:lCancel := .T.
Ciao
Massimo :wink:
by MaxP
Fri Oct 21, 2011 9:55 am
Forum: All products support
Topic: PDF in BMP
Replies: 2
Views: 929

Re: PDF in BMP

Mi sono imbattuto in questo problema proprio in questi giorni. Se installi GhostScript (che è freeware) puoi utilizzare questo comando: WinExec( "C:\\Programmi\\gs\\gs8.63\\bin\\gswin32c -dBATCH -dNOPAUSE -sDEVICE=bmp16m -r200 -sOutputFile=p%03d.bmp Prova.pdf" ) dove si deve sostituire il ...
by MaxP
Mon Jul 04, 2011 4:40 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Auto selectable menu.
Replies: 5
Views: 803

Re: Auto selectable menu.

Add to source keybrd.c the function CLIPPER __PUTACCKEY( PARAMS ) {    int vKeyAcc = _parni( 1 ), vKey = _parni( 2 );        PostVirtualKeyEvent( vKeyAcc, FALSE );    PostVirtualKeyEvent( vKey, FALSE );    PostVirtualKeyEvent( vKey, TRUE );    PostVirtualKeyEvent( vKeyAcc, TRUE );    SysRefresh(); }...
by MaxP
Fri Jul 01, 2011 4:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Word and Windows 7
Replies: 8
Views: 1795

Re: Word and Windows 7

In EXCEL you can try this source:

Code: Select all

hProp := OleGetProperty( oExcel:hObj, "Hwnd" )
IF hProp <> NIL
    SetWindowPos( oExcel:Hwnd, -2, 0, 0, 0, 0, 3 )
ENDIF

 
Best regards,
Massimo :wink:
by MaxP
Thu Jun 09, 2011 3:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Word and Windows 7
Replies: 8
Views: 1795

Re: Word and Windows 7

You can try with this source Best regards, Massimo :wink: #include "fivewin.ch" function Main() LOCAL oDlg, oButton DEFINE DIALOG oDLg FROM 10 , 10 TO 800 , 800 PIXEL @ 1 , 1 BUTTON oButton OF oDlg ACTION CREATEWORD() ACTIVATE DIALOG oDlg CENTER RETURN NIL FUNCTION CREATEWORD() LOCAL oWord...
by MaxP
Fri Dec 05, 2008 8:33 am
Forum: FiveWin for Harbour/xHarbour
Topic: Class TOleAuto and HARBOUR 7.01
Replies: 5
Views: 958

Class TOleAuto and HARBOUR 7.01 - happy end

Many thanks for your help

in order of "appearance"
Toninho, James and Enrico

I've solved my problem :D
by MaxP
Thu Dec 04, 2008 3:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Class TOleAuto and HARBOUR 7.01
Replies: 5
Views: 958

Class TOleAuto and HARBOUR 7.01 - continued

Thank you Toninho

you say "In Harbour, from contrib\hbwin"
could you give me another little help
telling me how can I find "contrib\hbwin" ?

Sorry, but my had is made of wood :(

Massimo
by MaxP
Thu Dec 04, 2008 11:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: Class TOleAuto and HARBOUR 7.01
Replies: 5
Views: 958

Class TOleAuto and HARBOUR 7.01

HARBOUR 7.01 2007 build.

Is there anybody who knows where I could find a library
with the class TOleAuto ? :cry:

Ciao a tutti
by MaxP
Thu Jul 12, 2007 3:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: A little big problem with command SORT on DBT files
Replies: 1
Views: 588

A little big problem with command SORT on DBT files

HARBOUR 7.01 2007 build. I have a problem with command SORT on DBT files. After execution of command SORT, the file DBT loose data. Is it my fault or is this a real BUG ? Ciao and thanks Massimo #include "Fivewin.ch" FUNCTION MAIN() LOCAL cNameD := "BEGSORT.DBF" LOCAL cNameM := &...