Search found 31 matches: oclp

Return to advanced search

Re: CTRL+C+C

Enrico, in this way? oBtn:bAction = { || oClp:SetText( ALLTRIM(cNumero) ) , ; SetStateKey( VK_CONTROL, .T. ) , ; SetStateKey( ASC("C"), .T. ) , ; HB_IDLESLEEP(1) , ; SetStateKey( ASC("C"), .T. ) , ; SetStateKey( VK_CONTROL, ...
by MarcoBoschi
Tue Mar 09, 2010 10:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CTRL+C+C
Replies: 4
Views: 1027

Re: CTRL+C+C

... the phone call I have to restart the PC because the keypad locks. :? #include "Fivewin.ch" #define VK_LMENU 164 #define VK_A 65 STATIC oClp FUNCTION MAIN() LOCAL oDlg LOCAL oBtn LOCAL cNumber := SPACE(20) DEFINE DIALOG oDlg DEFINE CLIPBOARD oClp OF oDlg @ 1, 1 GET cNumero @ 2, 1 BUTTON ...
by MarcoBoschi
Tue Mar 09, 2010 10:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CTRL+C+C
Replies: 4
Views: 1027

Re: Copy / paste in spanish

... endif if ::lBlock MENUITEM "&Copy " ACTION ::Copy() else MENUITEM "&Copy" ACTION ::Copy() DISABLED endif if !Empty( oClp:GetText() ) .and. !::lReadOnly MENUITEM "&Paste " ACTION ::Paste() else MENUITEM "&Paste" ACTION ::Paste() DISABLED ...
by ukoenig
Wed Feb 17, 2010 5:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy / paste in spanish
Replies: 3
Views: 593

Re: Juan Planelles Lazaga

... local lFocus := .f. local cTextForm := "" local nCrLf := 0 local nCol := oGet:nLineCol + 1 local cLinea := oGet:GetTextLine( oLine ), oClp DEFAULT nVal := 1 oGet:GetDC() if oGet:lBlock cTextForm := oGet:GetBlock() nCrLf := At( CRLF, cTextForm ) lFocus := oGet:lFocusBlock cChars:= cTextForm ...
by Juan Planelles
Tue Dec 29, 2009 10:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Juan Planelles Lazaga
Replies: 9
Views: 6742

Re: Juan Planelles Lazaga

... lIt, nX, lChange := .f., cTextFormat := "" //static cTextFind := "", CFGAYUDA, bFnt, nAH := 1, nAV := 1, nPar := 1 //static oClp, oPrn, oFonSpec, lFile2 := .f. static nIndex := 1 static nAvance := 1 static aBmp := {} static aResources := {} Static oWnd, oGet, oMenu, oFont, ...
by Juan Planelles
Tue Dec 29, 2009 10:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Juan Planelles Lazaga
Replies: 9
Views: 6742

Re: Problemas con TRichEdit

... nil //----------------------------------------------------------------------------// static function SetChildBar( oWnd ) local oBar, oCursor, oClp, oBold, oItalic, oUnderline, oBullet, oNumber DEFINE CURSOR oCursor HAND DEFINE CLIPBOARD oClp OF oWnd FORMAT TEXT DEFINE BUTTONBAR oBar OF oWnd ...
by triumvirato
Fri Dec 11, 2009 7:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con TRichEdit
Replies: 13
Views: 4781

Re: fwh\samples\RE.prg - FiveWin Resources Editor underrated

... cFontName    local oDlg, cResource := "", cFirst, nControls := 0    local oFnt        //Otto start    local DialogName    local oClp    DEFINE CLIPBOARD oClp OF oWnd    //Otto end    if oItem == nil       return nil    endif    cText = oItem:Cargo    if Empty( cText )       return ...
by Otto
Sun Aug 30, 2009 6:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fwh\samples\RE.prg - FiveWin Resources Editor underrated
Replies: 38
Views: 11659

Antonio, if I open the area of transfer after using oClp:Clear(), this clean, but after a while the app not save the screen, this message: Shut one or more application to free up more memory and try again. But if you leave the app, and return back ...
by Dorneles
Sun Aug 31, 2008 9:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: clear the Clipboard
Replies: 13
Views: 2629

no I'm using FGet (with many modifications for our use)

with
oClp:SetText( cText )
oClp:GetText( )

I can see that only part of very long texts are copied.
I there a limit by Windows? (same results with xP and vista)

Thanks,
Dietmar
by Dietmar Jahnel
Sun Jun 22, 2008 9:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Clipboard size
Replies: 15
Views: 2967

Problem with Editor of Source

... //27/06/2005 #define WM_PASTE 770 // 0x302 STATIC FUNCTION InsText(cTxt) LOCAL oclp DEFINE CLIPBOARD oClp OF oMemo FORMAT TEXT oClp:SetText(cTxt) oMemo:SendMsg( WM_PASTE ) Eval( oMemo:bSetGet, cText ) oMemo:SetFocus() oClp:End() ...
by Vladimir Zorrilla
Wed Jun 18, 2008 10:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Editor of Source
Replies: 1
Views: 1526

Editor de Codigo con syntaxis coloreada interperte y texto i

... //27/06/2005 #define WM_PASTE 770 // 0x302 STATIC FUNCTION InsText(cTxt) LOCAL oclp DEFINE CLIPBOARD oClp OF oMemo FORMAT TEXT oClp:SetText(cTxt) oMemo:SendMsg( WM_PASTE ) Eval( oMemo:bSetGet, cText ) oMemo:SetFocus() oClp:End() ...
by Vladimir Zorrilla
Wed Jun 18, 2008 10:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editor de Codigo con syntaxis coloreada interperte y texto i
Replies: 1
Views: 2162

Create a Excel-Sheet of any DBF-File with AutoOle (Update)

... RETURN( NIL ) //---------- EXCEL Sheet cFile = DBF-Name / lOemAnsi .T. or .F. ------// STATIC FUNCTION EXP_RUN(oDlg7,oMeter,cFile1,lOemAnsi) LOCAL oClp LOCAL nSheets := 0 LOCAL n := 0 LOCAL nRow := 0 LOCAL nHeaderRow := 1 LOCAL nDataStart := nHeaderRow + 1 LOCAL FIELD_ARRAY := {} DBSELECTAREA(1) ...
by ukoenig
Mon Feb 04, 2008 7:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Excel-Sheet of any DBF-File with AutoOle (Update)
Replies: 4
Views: 1626

XBrowse creation – a small helptool

... func f_SaveState(oBrw) **************************************************** local oCol local cState local nFor, nLen local cdata local oClp nLen := Len( oBrw:aCols ) cState := "oBrw:nRowHeight := " + Ltrim( Str( oBrw:nRowHeight ) ) +CRLF cState += CRLF for nFor := 1 to nLen oCol := ...
by Otto
Wed Oct 31, 2007 10:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse creation – a small helptool
Replies: 0
Views: 678

... 100% OK Esta son las intrucciones, tal cual como tu me indicaste, que estoy usando para grabar el fichero en el Hard Disk: DEFINE CLIPBOARD oClp OF oWnd DibWrite( "screen.bmp", DibFromBitmap( oClp:GetBitmap() ) ) Pero solamente se salva un pequeño cuadrado blanco con una X roja en el medio ...
by George
Sat Jun 16, 2007 8:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase tGraph
Replies: 10
Views: 2117

... CallWindowProc( ::nOldProc, ::hWnd, WM_PASTE, 0, 0 ) ::oGet:buffer = Pad( GetWindowText( ::hWnd ), Len( ::oGet:buffer ) ) DEFINE CLIPBOARD oClp OF Self FORMAT TEXT ::oGet:Pos += Len( oClp:GetText() ) oClp:End() ::oGet:Assign() Eval( ::bPostKey, Self, ::oGet:Buffer ) // FWD 16/04/2007 return ...
by FiveWiDi
Mon Apr 16, 2007 5:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Métodos Cut y Paste de TGet y ::bpostkey.
Replies: 3
Views: 906
PreviousNext

Return to advanced search

cron