FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index mod_harbour modharbour Patcher
Posts: 6984
Joined: Fri Oct 07, 2005 07:07 PM
modharbour Patcher
Posted: Sat Sep 28, 2019 05:12 PM
ODHarbour Patcher

The MODHarbour Patcher runs as an *.exe on the server in c:\xampp\htdocs\

It allows you to split code into several pieces/prgs to take out complexity.
This is especially for beginners and newbies really usefull and helps to overcome sticking points at the entry.

Best regards
Otto

Posts: 38
Joined: Fri Apr 22, 2016 10:19 PM
Re: modharbour Patcher
Posted: Sat Sep 28, 2019 10:32 PM

Great job! Thank you for the video!

Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
Re: modharbour Patcher
Posted: Sun Sep 29, 2019 05:33 AM

Dear Otto,

very creative!

You are always discovering new possibilities

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 6984
Joined: Fri Oct 07, 2005 07:07 PM
Re: modharbour Patcher
Posted: Mon Oct 07, 2019 08:27 AM
Hello,
now it is possible to use mod harbour include files also inside an include file.
mod harbour patcher supports:
|- for comments
-> link to include file
&- start line
-& end of line



Best regards,
Otto

sample
Code (fw): Select all Collapse
 &-
    |- row wird in tablegebuchtezimmer angehängt
    
    $(".data-gebuchtTbl tbody").append( "
    <tr data-menge='" + MengeAuswahl  +"' data-beschreibung='"+cBeschreibung+"' data-preis='"+preis+"' data-summe='"+summe+"' data-id='"+id+"'>
        <td  style='visibility:hidden;'>" + id + "</td>
        |- alle 3 Werte sind in einer Spalte
        <td>"+cmenge+"</td><td><b>"+cZiBezeichnung +"</b><br> "+ cBeschreibung+"</td>
        
        <td>"+email+"</td>
        <td><button class='btn btn-info btn-xs btn-deletebooking'>Buchung entfernen</button></td>
    </tr>");
    
    -&

is automatically patched to this.
Code (fw): Select all Collapse
$(".data-gebuchtTbl tbody").append( "<tr data-menge='" + MengeAuswahl  +"' data-beschreibung='"+cBeschreibung+"' data-preis='"+preis+"' data-summe='"+summe+"' data-id='"+id+"'><td  style='visibility:hidden;'>" + id + "</td><td>"+cmenge+"</td><td><b>"+cZiBezeichnung +"</b><br> "+ cBeschreibung+"</td><td>"+email+"</td><td><button class='btn btn-info btn-xs btn-deletebooking'>Buchung entfernen</button></td></tr>");


Continue the discussion