Search found 310 matches

by Colin Haig
Tue Jun 26, 2018 10:12 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Backup / Restore Mysql *Solved*
Replies: 10
Views: 1181

Re: Backup / Restore Mysql

Hi Dutch

You need to use MySql to backup and restore

backup mysqldump -u username -p database > backup.sql

restore mysql -u username -p database < backup.sql

This is a sample from doing it from a shell or command line - you are prompted for the password.

Regards

Colin
by Colin Haig
Mon May 28, 2018 10:36 am
Forum: FiveWin for Harbour/xHarbour
Topic: Word OLE
Replies: 2
Views: 844

Re: Word OLE

Hi Anserkk

Thanks for your reply.

Cheers

Colin
by Colin Haig
Mon May 28, 2018 5:20 am
Forum: FiveWin for Harbour/xHarbour
Topic: Word OLE
Replies: 2
Views: 844

Word OLE

Hi All

Is it possible to get the text from a table cell in word using OLE - I know you can replace text in a cell.

Cheers

Colin
by Colin Haig
Wed Jan 17, 2018 1:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: Office 365 and OLE
Replies: 3
Views: 822

Office 365 and OLE

Hi All

I have a client that has swapped to office 365 ( in the cloud ) and it appears OLE does not work - is there a way to overcome this.

Regards

Colin
by Colin Haig
Fri May 05, 2017 10:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: Email
Replies: 5
Views: 770

Re: Email

Hi Antonio

Thanks for the help - I will look at the html option.

Cheers

Colin
by Colin Haig
Fri May 05, 2017 10:17 am
Forum: FiveWin for Harbour/xHarbour
Topic: Email
Replies: 5
Views: 770

Re: Email

Hi Antonio

I checked the testsmtp.prg in the samples folder but it only showed attachments - I need to embed a document in the body of the email.

Regards

Colin
by Colin Haig
Fri May 05, 2017 5:41 am
Forum: FiveWin for Harbour/xHarbour
Topic: Email
Replies: 5
Views: 770

Email

Hi All

I would like to embed a word document/ pdf into an email for a newsletter mail out - I am using an
older version of xHarbour and have linked in the tsmtp.prg

Regards

Colin
by Colin Haig
Tue Mar 07, 2017 11:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Proposal .. 'just not xBase any more'
Replies: 9
Views: 5054

Re: Proposal .. 'just not xBase any more'

Hi Rick The younger generation have grown up with the internet and now these younger people are the people starting business's. The reason there is no younger developers choosing xBase or any other desktop app tool is because the market has shifted - and new developers have to program for these mark...
by Colin Haig
Mon Mar 06, 2017 11:55 am
Forum: FiveWin for Harbour/xHarbour
Topic: Google Address Lookup
Replies: 0
Views: 6394

Google Address Lookup

Hi All

Is it possible to have a predictive address search in Fivewin - I have used it on a web page but that was using python/javascript and the google places API.

Any ideas appreciated.

Cheers

Colin
by Colin Haig
Tue Feb 21, 2017 10:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin & web
Replies: 63
Views: 14228

Re: Fivewin & web

Hi Romeo

Go to Mysql bin folder and start Mysql.exe and type the following with your settings


GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;
FLUSH PRIVILEGES;

or download HeidiSql application and there is a option to do this.

Colin
by Colin Haig
Wed Feb 08, 2017 9:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New xbase publication on Medium
Replies: 6
Views: 2318

Re: New xbase publication on Medium

Tim

In chrome right click on page and translate into English - nice article.

Cheers

Colin
by Colin Haig
Wed Jan 18, 2017 8:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Me Again : MySQL FW help.. Trying to find the right Syntax
Replies: 5
Views: 1303

Re: Me Again : MySQL FW help.. Trying to find the right Syntax

Hi

"select * from tablename where userid = '"+cUserId+"'"
if tablename.rowcount > 0
fnCheckPassword()
else
MsgInfo('User Not Found')
endif

Hope this is what you meant.

Colin
by Colin Haig
Wed Sep 07, 2016 3:28 am
Forum: FiveWin for Harbour/xHarbour
Topic: dBase V7 and indexes
Replies: 1
Views: 707

dBase V7 and indexes

Hi All

Is there a way I can open a dBase V7 table/memo and index files using harbour and fivewin - these tables have more field types than the standard
dBase tables.

Cheers

Colin
by Colin Haig
Tue Jun 21, 2016 3:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: Sublime Text 2
Replies: 1
Views: 533

Sublime Text 2

Hi All

Recently I have been using Sublime Text 2 to write some python web apps and would like to use it with Fivewin/Harbour - I have
seen there is a site but not sure what packages to download - any advice appreciated.

Cheers

Colin
by Colin Haig
Mon Dec 14, 2015 1:59 am
Forum: FiveWin for Harbour/xHarbour
Topic: JsonEncode, JsonDecode Lib
Replies: 1
Views: 517

Re: JsonEncode, JsonDecode Lib

Hi Byron

I have used hb_jsonencode, hb_jsondecode and TIpClientHttp() with harbour and fivewin ( with help from Daniel Garcia Gil) to connect
to a accounting package restful API - you can contact me by email colin at techdata dot net dot au

Colin