FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index mod_harbour QRCode APP
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
QRCode APP
Posted: Fri May 14, 2021 08:17 PM
Hello friends,

Here you can see some design and size examples of our multi-dynamic QR codes.


The QR codes lead to a landing page. There is also a maintenance tool.
The site is made with mod harbor.


Best regards,
Otto


Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: QRCode APP
Posted: Fri May 14, 2021 08:49 PM
Setup for landing page withmod harbour and DBF

Posts: 179
Joined: Fri Dec 07, 2007 01:26 PM
Re: QRCode APP
Posted: Thu Jul 29, 2021 09:27 AM
dear friends,

i try to find the difference between
Code (fw): Select all Collapse
function cFileNoPath( cPathMask )  // returns just the filename no path

   local n := RAt( "\", cPathMask )

return If( n > 0 .and. n < Len( cPathMask ),;
          Right( cPathMask, Len( cPathMask ) - n ),;
          If( ( n := At( ":", cPathMask ) ) > 0,;
          Right( cPathMask, Len( cPathMask ) - n ),;
          cPathMask ) )


and
Code (fw): Select all Collapse
 cEnv := HB_GETENV( 'PRGPATH' )                        //  Obtains a system environmental setting
   cPrgWithPath :=  AP_FileName()                        // returns the filename.prg provided to Apache by the client inclusive path   
   cProgram := '"'+STRTRAN( cPrgWithPath, cEnv + "/" )+'"'


are these two ways to the same outcome and would you prefer one of them because of speed maybe?

many thanks in advance and kind regards
ruth

Continue the discussion