Page 1 of 1

Runner XBase (RX)

PostPosted: Tue Feb 20, 2024 6:25 pm
by Carles
Hello everyone,

Here’s a link to download Runner XBase (RX). If you’re interested in quickly testing Harbour code, this system is ideal. It has been designed with the purpose of facilitating testing, building, or prototyping web applications.

Start comfortably testing your first pages, forms, and assembling all the pieces, giving logic to the entire process.

Runner XBase (RX) is freeware and aims to assist those who, for one reason or another, have always found it challenging to take this step.
If you have any questions or need clarification, feel free to ask. :D

You can download the runner from here -> https://runnerxbase.app/


Regards.
C.

Re: Runner XBase (RX)

PostPosted: Wed Apr 03, 2024 8:28 am
by fred2088
How to test run ?

Thanks

Re: Runner XBase (RX)

PostPosted: Wed Apr 03, 2024 4:23 pm
by Carles
Hi,

When you run the installation you can read the readme.en file

Once inside the program, if you press the help there is a step by step in english and spanish

Regards.
C.

Re: Runner XBase (RX)

PostPosted: Tue Apr 09, 2024 11:42 am
by fred2088
Thx a lot , Got it run ! great ...

how can edit config to codepage 950 or not listed ?

Thanks

Re: Runner XBase (RX)

PostPosted: Thu Apr 11, 2024 5:41 am
by Carles
Hi,

Code: Select all  Expand view
    do case
        case cLang == 'EN' 
            HB_LANGSELECT('EN')        
        case cLang == 'ES'     
            HB_LANGSELECT('ES')        
            HB_SetCodePage ( "ESWIN" )             
            SET( _SET_DBCODEPAGE, 'ESWIN' )    
        case cLang == 'PT'             
            HB_LANGSELECT('PT')        
            HB_SetCodePage ( "PT850" ) 
            SET( _SET_DBCODEPAGE, 'PT850' )    
        case cLang == 'IT'             
            HB_LANGSELECT('IT')        
            HB_SetCodePage ( "ITWIN" ) 
        case cLang == 'DE'                         
            HB_LANGSELECT('DE')        
            HB_SetCodePage ( "DEWIN" ) 
            SET( _SET_DBCODEPAGE, 'DEWIN' )    
        otherwise   
            HB_LANGSELECT('EN')            
            SET( _SET_DBCODEPAGE, 'EN' )       
    endcase 


If u need a codepage, I can put it in without problems. At the moment there are only these loaded.

Regards.
C.

Re: Runner XBase (RX)

PostPosted: Sat Apr 13, 2024 5:02 am
by fred2088
Thanks
Chinese - Big5 need only set from <html> since it's using eng codepage from harbour/xharbour

Re: Runner XBase (RX)

PostPosted: Sat Apr 13, 2024 5:33 am
by Carles
Hi,

I don't understand exactly what you're saying. Do you need any special codepage?

C.

Re: Runner XBase (RX)

PostPosted: Sat Apr 20, 2024 5:01 pm
by Carles
Hello !

Version RunnerXbase 1.5 ready! --> https://runnerxbase.app

New console method: If you just want to try small routines, then go in, paste code and run. You can run routines in PRG mode (you can try a simple Harbor routine) or you can run HTML code (with the possibility of embedding prg code like php does).

viewtopic.php?f=46&t=44414&p=269525#p269525

Regards.
C.

Re: Runner XBase (RX)

PostPosted: Wed May 01, 2024 8:39 am
by Carles
Hello,

RunnerXbase 1.6 version ready! --> https://runnerxbase.app

WDO running in console: dbf, mysql, sqlite3

Quickly execute queries of your databases remotely with the internet browser!

Image

Harbour, no limits...

C.

Re: Runner XBase (RX)

PostPosted: Wed May 01, 2024 2:35 pm
by richard-service
fred2088 wrote:Thanks
Chinese - Big5 need only set from <html> since it's using eng codepage from harbour/xharbour


I use UTF8 within harbour. <html> should be support UTF8

Re: Runner XBase (RX)

PostPosted: Wed May 01, 2024 2:44 pm
by Carles
Richard,

I use UTF8 within harbour. <html> should be support UTF8


have you tried runner with utf-8 ? If you have any example that doesn't work well, please put it here.

Thanks

C.