Search found 397 matches: simpler

Return to advanced search

Re: Compiler with MSVC y HARBOUR

... yesterday, I was dealing with your mod harbour installation. I am always weighing whether it makes sense to use WebView2, or whether it might be simpler to use a localhost server everywhere. That's why I am creating a distribution for our users. Perhaps you would be so kind as to explain your ...
by Otto
Fri Apr 19, 2024 6:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiler with MSVC y HARBOUR
Replies: 3
Views: 130

Re: Digital signing a document

Much simpler :-)

Use this function:
Code: Select all  Expand view
#include "FiveWin.ch"

function Main()

    MsgInfo( IsSigned( "fwintro.pdf" ) )

return nil

function IsSigned( cPDFFileName )

return At( "/SigFlags", hb_memoRead( cPDFFileName ) ) != 0
by Antonio Linares
Sun Apr 14, 2024 9:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Digitally signing a document
Replies: 14
Views: 395

Re: Centrar texto VERTICALMENTE

... cText, oFont ) / 2 Thank you again, I can only comment on FWH classes. What all you want to do, I am sure we can do with FWH classes in a far simpler way. To print text vertically and horizontally centered on the page. No calculations required. The command is very simple: @ 0, 0 PRINT TO oPrn ...
by nageswaragunupudi
Tue Apr 09, 2024 4:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Centrar texto VERTICALMENTE
Replies: 12
Views: 473

New FTDN February 2024 (FWH 24.02)

... that gets the hWebView as the first parameter { | hWebView | ... } * New: samples\webview\sidebar.prg shows how to use Class TWebView in a simpler and more FWH syntax alike way. * Enhancement: Added missing METHOD Redefine() in CLASS TSwitch: https://forums.fivetechsupport.com/viewtopic.php?p=267661#p267661 ...
by Antonio Linares
Sat Mar 02, 2024 8:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 202

Re: Cambio de imagen a 1 boton

This can be achieved with far simpler code: function BarBtnToggle()   local oWnd, oBar, oBtn   local nBmp  := 1   DEFINE WINDOW oWnd   DEFINE BUTTONBAR oBar OF oWnd SIZE 64,64 2007  ...
by nageswaragunupudi
Wed Feb 14, 2024 1:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambio de imagen a 1 boton
Replies: 10
Views: 286

Re: Error: FWH2206 Parte1

... 0x50000000, 4294967293, 4294967295, 257, 96, 0x00000000 Advantages of using TXImage over TImage 1. No need for freeimage.dll 2. Simpler program code 3. Better image quality
by nageswaragunupudi
Sun Feb 11, 2024 2:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error: FWH2206 Parte1
Replies: 30
Views: 986

Re: JSON2DBF adapter

... column with the correct value. Regarding the function `FW_DbfToJson()`, it is perfect for a test when programming with html. However, we need a simpler function only to create the array strings for the json. When preparing a JSON for HTML, there can be styling, etc., as well. For example, if ...
by Otto
Sun Feb 04, 2024 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: JSON2DBF adapter
Replies: 3
Views: 504

Re: SAPI : change Voice

Simpler fix thanks to Bruno Cantero:         lOleError = HB_VTBL( pDisp )->Invoke( HB_THIS_(pDisp) dispid, HB_ID_REF(IID_NULL),              ...
by Antonio Linares
Wed Jan 31, 2024 3:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3549

Re: show a string into xbrowse

Simpler way is: oCol:cEditPicture := "###gg" run only the last element https://i.postimg.cc/jqckNKDN/kio.png sample cstring:= "30/60/90" aData := hb_ATokens(cString,"/") @ 10, ...
by Silvio.Falconi
Tue Dec 12, 2023 10:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: show a string into xbrowse
Replies: 4
Views: 410

Re: show a string into xbrowse

Simpler way is:
Code: Select all  Expand view
oCol:cEditPicture := "###gg"
by nageswaragunupudi
Thu Dec 07, 2023 12:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: show a string into xbrowse
Replies: 4
Views: 410

Re: Convert a print to Rtf or doc

Otto,
do you think that when Microsoft Access allows you to create a report it actually creates a word (RTF) in parallel or
when you have the preview and click on export RTF it does something different maybe simpler?

good lunch to all
by MarcoBoschi
Thu Nov 30, 2023 12:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert a print to Rtf or doc
Replies: 33
Views: 3467

Re: Help splitting up a character address string

... tool used to create graphical user interfaces for Harbour applications. In this context, Harbourino helps in breaking down complex functions into simpler, more manageable modules. This modular approach, as indicated in the FiveTech Software tech support forums, allows for easier management of ...
by Otto
Wed Nov 15, 2023 7:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602

Interesting discussion with ChtGPT

... discussion with ChtGPT. This was the starting point: User (I): The weaknesses you mention are fixed with FiveWin. Could it be that in principle simpler - in terms of syntax - languages will experience a revival in the future, because AI with its fast answers makes many libraries and frameworks ...
by Otto
Mon Nov 06, 2023 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1243

Re: Xbase++ :lockUpdate() -> Fivewin ?

This seems a simpler version: Jimmy could you please try it with your code ? No need to supply a parameter METHOD LockUpdate() INLINE LockWindowUpdate( ::hWnd ) HB_FUNC( LOCKWINDOWUPDATE ){   if( ! LockWindowUpdate( ...
by Antonio Linares
Fri Nov 03, 2023 10:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbase++ :lockUpdate() -> Fivewin ?
Replies: 10
Views: 760

Re: cGetFile()

OFT.
Just a casual discussion.
...
Another simpler alternative appears to be:
Code: Select all  Expand view
TrueName( "." ) // --> c:\fwh\samples
TrueName( ".\") // --> c:\fwh\samples\
by nageswaragunupudi
Sat Sep 16, 2023 1:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cGetFile()
Replies: 10
Views: 687
Next

Return to advanced search