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
modharbour Patcher
modharbour Patcher
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
- Iris Gesser
- Posts: 32
- Joined: Fri Apr 22, 2016 10:19 pm
Re: modharbour Patcher
Great job! Thank you for the video!
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: modharbour Patcher
Dear Otto,
very creative!
You are always discovering new possibilities
very creative!
You are always discovering new possibilities
Re: modharbour Patcher
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
is automatically patched to this.
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: Select all
&-
|- 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>");
-&
Code: Select all
$(".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>");
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************