Search found 310 matches

by Colin Haig
Wed Jan 21, 2015 10:49 am
Forum: FiveWin for Harbour/xHarbour
Topic: Introducing FiveTech's fivedit
Replies: 537
Views: 97080

Re: Introducing FiveTech's fivedit

Hi Antonio Do you think you could implement smart indenting and outdenting - the editor I have used for years does this and I have yet to find another editor that can do both. When you type do while something - the cursor is indented 3 or 4 spaces next line enddo - when you type enddo it is outdente...
by Colin Haig
Sun Dec 14, 2014 12:25 am
Forum: FiveWin for Harbour/xHarbour
Topic: pop up Outlook send email window
Replies: 17
Views: 3669

Re: pop up Outlook send email window

Hi Antonio This works fine with Harbour function fnEmail(cTo,cSentBy,cEmailHeader,cEmailNotes,cPdf) oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:Invoke("CreateItem", 0) oMailitem:to:=cTo oMailItem:Recipients:Add( "tdsperth@outlook.com" ) oMail...
by Colin Haig
Wed Dec 10, 2014 6:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: SQLOLEDB Problem
Replies: 5
Views: 815

Re: SQLOLEDB Problem

Try a system restore - then set updates to download but you select when to install them

Cheers

Colin
by Colin Haig
Wed Nov 12, 2014 6:57 am
Forum: FiveWin for Harbour/xHarbour
Topic: Off Topic Apache
Replies: 1
Views: 409

Off Topic Apache

Hi All I am trying to get Apache 2.4.10 to work on Windows 8.1 Pro - I am using a plain httpd.conf file - I can render a page from the htdocs folder but can not get any response from cgi-bin folder. I have installed apache into c:\Program Files\Apache Software Foundation\apache2.4 - the apache serve...
by Colin Haig
Mon Nov 03, 2014 8:20 am
Forum: FiveWin for Harbour/xHarbour
Topic: Valid firing twice
Replies: 5
Views: 999

Re: Valid firing twice

Thanks Antonio

I tried setting focus to a button on the buttonbar and this seemed to fix the issue - I will try the code you suggested.


Cheers

Colin
by Colin Haig
Sat Nov 01, 2014 11:40 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Valid firing twice
Replies: 5
Views: 999

Re: Valid firing twice

Hi Antonio I tried that but got the following error ime from start: 0 hours 0 mins 16 secs Error occurred at: 02/11/2014, 07:36:08 Error description: Error BASE/1003 Variable does not exist: ACONTROLS Stack Calls =========== Called from: input6.prg => (b)INPUT6( 372 ) Called from: .\source\classes\T...
by Colin Haig
Sat Nov 01, 2014 12:43 am
Forum: FiveWin for Harbour/xHarbour
Topic: Valid firing twice
Replies: 5
Views: 999

Valid firing twice

Hi All I have moved to harbour from xharbour but have found a problem with a valid firing twice - the problem does not occur with xharbour. The last valid after selecting YES in the MsgYesNo - saves the invoice but the MsgYesNo re appears    REDEFINE GET oInvc:subtotal ID EditSubTtl      of oDlg UPD...
by Colin Haig
Thu Aug 28, 2014 5:08 am
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWeb (FiveWin days are numbered)
Replies: 70
Views: 24610

Re: FiveWeb (FiveWin days are numbered)

Hi Darrell If you are looking to customers access to your software - have a look at TSPlus - it works like terminal server but users can login from a web browser. I have setup a Windows 7 Pro 64 bit computer and a five user license in my office ( you can select how many users you want to have access...
by Colin Haig
Tue Aug 26, 2014 12:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: json
Replies: 3
Views: 898

Re: json

Hi Daniel cJson = hb_JsonEncode(hJson) What should the valtype of cJson be. ? oHttp:hFields["Content-Type"] = "application/json" now you can post I presume cJson shoud be passed to the post method not hJson oHttp:Post(hJson,cUri) I am still having issues with the update METHOD Po...
by Colin Haig
Mon Aug 25, 2014 2:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: json
Replies: 3
Views: 898

json

Hi All I am working with an api for a accounting package - I can extract information from the accounting package if oHttp:open() cItems2 := oHttp:ReadAll() MEMOWRIT( "MYRESULT1.TXT", cItems2) this is what the text file shows { "UID": "17ef4d73-cfa7-43fb-afe6-5350cbffffa9&quo...
by Colin Haig
Thu Aug 07, 2014 5:45 am
Forum: FiveWin for Harbour/xHarbour
Topic: Fonts 14.07
Replies: 1
Views: 415

Fonts 14.07

Hi Antonio

I upgraded to 14.07 - I now have a problem with Fonts - I think this problem was reported in 14.06.

Regards

Colin
by Colin Haig
Thu Aug 07, 2014 2:48 am
Forum: FiveWin for Harbour/xHarbour
Topic: Touch Program
Replies: 3
Views: 639

Re: Touch Program

Hi Antonio

I have not modified any dialog.prg - I have only compiled the touch program that comes with FWH 14.04

Regards

Colin
by Colin Haig
Wed Aug 06, 2014 9:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: Touch Program
Replies: 3
Views: 639

Touch Program

Hi All I have compiled the touch.prg but whn I try to run the program I get the following error. Time from start: 0 hours 0 mins 2 secs Error occurred at: 08/06/14, 17:31:21 Error description: Error BASE/1004 Message not found: TBTNFLAT:DEFCONTROL Args: [ 1] = O TBTNFLAT Using FWH14.4 Harbour 3.2 MS...
by Colin Haig
Mon Jul 14, 2014 3:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: Habour - Restful API
Replies: 0
Views: 338

Habour - Restful API

Hi All

Can anyone tell me if the tip class cover all the requirements

Get
Post
Put
Delete

Has anyone used Harbour for Restful API's

Cheers

Colin
by Colin Haig
Sat Jul 12, 2014 12:45 am
Forum: FiveWin for Harbour/xHarbour
Topic: TipClientHttp
Replies: 2
Views: 593

Re: TipClientHttp

Hi Enrico Thanks I have it working. oUrl := TUrl():new( cUri ) oUrl:cUserid := 'user' oUrl:cPassword := 'pass' oHttp1:= TIpClientHttp():new( oUrl, .T. ) oHttp1:UseBasicAuth() if oHttp1:open() cItems2 := oHttp1:ReadAll() MEMOWRIT( "MYRESULT1.TXT", cItems2 ) else MsgInfo( "Connection er...