Search found 98 matches: opposite

Return to advanced search

Re: Imprimir grafico insertado en tRichEdit5

While it is not possible to print RichText transparently over an Image, the opposite is possible. We can print an image translucently (using alphalevel) over richtext. Sample: function test()   local oPrn   PRINT oPrn PREVIEW  ...
by nageswaragunupudi
Wed Jan 10, 2024 4:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir grafico insertado en tRichEdit5
Replies: 4
Views: 389

Re: opposite of HB_FUNC( REGISTERDRAGDROP ) ?

hi Antonio,
Antonio Linares wrote:Next is to properly use it from FWH and Harbour:

GREAT
it would be nice when include in next FWH Version
by Jimmy
Wed Dec 20, 2023 9:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: opposite of HB_FUNC( REGISTERDRAGDROP ) ?
Replies: 5
Views: 465

Re: opposite of HB_FUNC( REGISTERDRAGDROP ) ?

Dear Jimmy, As a first approach I have taken all C++ code out of main.c (previously main.cpp) and created a new file builddrop.cpp This way we can simply compile the cpp files and use them from Harbour. I am building it from Visual Studio and it properly builds :-) Next is to properly use it from FW...
by Antonio Linares
Wed Dec 20, 2023 10:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: opposite of HB_FUNC( REGISTERDRAGDROP ) ?
Replies: 5
Views: 465

Re: opposite of HB_FUNC( REGISTERDRAGDROP ) ?

hi Antonio, thx for Answer it seems me that Sample is to react on DragEnter DragOver DragLeave Drop to receive in "my App" when use "as Target" but i like to Dragdrop Data from "my App" and send to external App e.g. Picture to Outlook Email --- i have read at https://ww...
by Jimmy
Wed Dec 13, 2023 10:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: opposite of HB_FUNC( REGISTERDRAGDROP ) ?
Replies: 5
Views: 465

Re: opposite of HB_FUNC( REGISTERDRAGDROP ) ?

Dear Jimmy, Is this what you are looking for ? #include <windows.h>#include <ole2.h>#include <shlobj.h>// Definir una estructura para almacenar los datos del destino de arrastretypedef struct {  IDropTargetVtbl *lpVtbl; // Puntero a la tabla de funciones virtuales  DWORD refCo...
by Antonio Linares
Wed Dec 13, 2023 9:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: opposite of HB_FUNC( REGISTERDRAGDROP ) ?
Replies: 5
Views: 465

opposite of HB_FUNC( REGISTERDRAGDROP ) ?

hi,

Fivewin can use REGISTERDRAGDROP() to use App "as Target" where i can drop to
i´m searching how to use App "as Source" to drag Data to "external" App, how :?:
by Jimmy
Wed Dec 13, 2023 9:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: opposite of HB_FUNC( REGISTERDRAGDROP ) ?
Replies: 5
Views: 465

Re: function to create a string

I was convinced there was a function that did the opposite but I really didn't remember, thanks everyone for the help
by Silvio.Falconi
Tue Dec 12, 2023 4:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to create a string
Replies: 6
Views: 429

Re: create a desktop shortcut directly from the program

...        ENDIF      ENDIF      oShellLink := NIL      oStorageFolder := NIL      oFolder := NIL      oShell := NIL   ENDIFRETURN lSuccess btw. here opposite Function FUNCTION DXE_ResolveLink( cFull )LOCAL oShellLOCAL oFolderLOCAL oStorageFolderLOCAL oShellLinkLOCAL cPath          := ""LOCAL ...
by Jimmy
Mon May 08, 2023 12:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: create a desktop shortcut directly from the program
Replies: 11
Views: 2193

Re: cFileExt

Enrico Maria Giordano wrote:
cpheraclio wrote:? cExt == cExt2
? cExt != cExt2


!= is the opposite of =
!= is not the opposite of ==
!( == ) is the opposite of ==


Gracias por responder.

? cExt == cExt2 FALSO
? cExt != cExt2 FALSO

? cExt2 == cExt FALSO
? cExt2 != cExt VERDADERO
by cpheraclio
Thu May 04, 2023 1:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: cFileExt
Replies: 3
Views: 308

Re: cFileExt

cpheraclio wrote:? cExt == cExt2
? cExt != cExt2


!= is the opposite of =
!= is not the opposite of ==
!( == ) is the opposite of ==
by Enrico Maria Giordano
Thu May 04, 2023 7:50 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: cFileExt
Replies: 3
Views: 308

Re: Help with ascan

... { |a| If( a[ nPos ] == numero, nCount++, nil ) } )return nCount Nages, run ok thanks a question....to calculate the delay of a number it is the opposite in the sense that you start from the bottom of the archive and go backwards until you find the number how I translate it i try to make oRit:= ...
by Silvio.Falconi
Fri May 13, 2022 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help with ascan
Replies: 16
Views: 906

Re: Browse and lower case keys

https://vivaclipper.wordpress.com/2014/01/19/asc/ Karinha, its the opposite... ASC returns the numeric code of a character string and Browses bKeyDown gives me a numeric code of a typed character. But in the browse, this code is the same for A and a ...
by concentra
Wed Mar 30, 2022 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Browse and lower case keys
Replies: 5
Views: 240

Re: Su ayuda con este código

As I wrote, "Text" <> "" is the opposite of "Text" = "", so ? "Text" <> "" gives .F. because it is the opposite of "Text" = "" that gives .T. because "Text" ...
by Enrico Maria Giordano
Sat Mar 12, 2022 3:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Su ayuda con este código
Replies: 9
Views: 424

Re: Su ayuda con este código

The opposite of

Code: Select all  Expand view
? "Texto" <> ""


is

Code: Select all  Expand view
? "Texto" = ""


EMG
by Enrico Maria Giordano
Sat Mar 12, 2022 9:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Su ayuda con este código
Replies: 9
Views: 424
Next

Return to advanced search