Search found 310 matches

by Colin Haig
Wed Aug 07, 2013 8:45 am
Forum: FiveWin for Harbour/xHarbour
Topic: GIT
Replies: 6
Views: 1486

GIT

Hi All

Is anyone using GIT for source control - are you deleting all cdx's ,ppo's ,c and obj files before creating a repository.

Any other things to look out for.

Colin
by Colin Haig
Sun Jul 14, 2013 10:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Close ADO-connection
Replies: 34
Views: 9249

Re: Close ADO-connection

Hi Marc

ferase requires the full path of the filename it may not be a sql issue.

Cheers

Colin
by Colin Haig
Tue Jul 09, 2013 11:45 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADO and MySql
Replies: 3
Views: 772

Re: ADO and MySql

Thanks Rick - much appreciated.

Colin
by Colin Haig
Tue Jul 09, 2013 9:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADO and MySql
Replies: 3
Views: 772

ADO and MySql

Hi All I a trying to use MySQL and ADO - I have a connection to the database and can open a table but not sure what code to use to add records - according to a wiki page I found called ado-related stuff I can do the following oRs:AddNew() oRs:Fields('code'):Value := 'Test') oRs:Update() That code do...
by Colin Haig
Tue Jul 02, 2013 3:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: UnHilite/Hilite Popup Menu Option
Replies: 7
Views: 1044

Re: UnHilite/Hilite Popup Menu Option

Hi Antonio

I was trying to hilite/unhilite an option depending on a on change event with xbrowse - if not possible I can
use a another button on the buttonbar to do what I want.

Cheers

Colin
by Colin Haig
Tue Jul 02, 2013 12:10 pm
Forum: FiveWin for Harbour/xHarbour
Topic: UnHilite/Hilite Popup Menu Option
Replies: 7
Views: 1044

Re: UnHilite/Hilite Popup Menu Option

Hi Antonio

I had tried oWnd:oMenuAddClient:UnHilite(3) before I posted the first message.

Cheers

Colin
by Colin Haig
Tue Jul 02, 2013 7:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: UnHilite/Hilite Popup Menu Option
Replies: 7
Views: 1044

Re: UnHilite/Hilite Popup Menu Option

Hi Antonio

I tried that code - but it is a popup menu.

This is the error

Error description: Warning BASE/1004 Message not found: TMDICHILD:MENUADDCLIENT

Cheers

Colin
by Colin Haig
Tue Jul 02, 2013 5:04 am
Forum: FiveWin for Harbour/xHarbour
Topic: UnHilite/Hilite Popup Menu Option
Replies: 7
Views: 1044

UnHilite/Hilite Popup Menu Option

Hi All I have a popup menu activated by a button how can you hilite/unhilite a menu option - there is sample code for a normal menu bit not a popup I have tried oWnd:oMenuAddClient:UnHilite(3) MENU oMenuAddClient POPUP   MENUITEM "Add New Customer" ;       ACTION(oCode:blank(),cOldCode := ...
by Colin Haig
Thu Jun 20, 2013 11:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Fivedroid on Qt
Replies: 135
Views: 35405

Re: Fivedroid on Qt

Hi Randal

Use there mobile phone as a hotspot or 3G enabled tablet.

Colin
by Colin Haig
Thu May 30, 2013 12:29 am
Forum: FiveWin for Harbour/xHarbour
Topic: For Each Syntax Like VBScript
Replies: 1
Views: 339

Re: For Each Syntax Like VBScript

Antonio helped me with this a while ago - hope it helps for each oItem In oCMSFolder:Items    nItem++    dMail    := oItem:ReceivedTime    cSender  := oItem:sendername    cSubject := oItem:subject    cBody    := oItem:body    for each oAttach In oItem:Attachments       cAttach := oAttach:filename   ...
by Colin Haig
Thu May 16, 2013 10:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: Numeric Data in SQL insert
Replies: 4
Views: 586

Re: Numeric Data in SQL insert

Hi Enrico

Thank you very much !!!!!

Cheers

Colin
by Colin Haig
Thu May 16, 2013 9:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: Numeric Data in SQL insert
Replies: 4
Views: 586

Numeric Data in SQL insert

Hi All I am interfacing my software with QuickBooks - in my SQL insert statements I do the following do while cInvcNo == oInvItms:invcno .and. ! oInvItms:eof() aadd(aInvItems,{cClient,cInvcNo,nQty,nAmount}) oInvItms:skip() enddo for I := 1 to len(aInvData) cSql :='' cSql+= "INSERT INTO InvoiceL...
by Colin Haig
Fri May 03, 2013 11:51 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - Jump to a specific column
Replies: 2
Views: 597

Re: xBrowse - Jump to a specific column

Hi Don

oLbx:SelectCol(10)
oLbx:Refresh()

Hope that is what you meant.

Cheers

Colin
by Colin Haig
Wed Apr 10, 2013 10:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: BUG: COMBOBOX with style CBS_DROPDOWN
Replies: 45
Views: 6555

Re: BUG: COMBOBOX with style CBS_DROPDOWN

Hi Marco I had the same problem with comboboxes - not showing the correct value METHOD Set( cNewItem ) CLASS TComboBox    local nAt          if ValType( cNewItem ) == "N"       nAt = cNewItem       if nAt == 0          nAt = 1       endif    else       nAt = AScan( ::aItems,;              ...
by Colin Haig
Sun Apr 07, 2013 10:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: gmail
Replies: 3
Views: 568

Re: gmail

Hi Ariel and James

I do need to read and save emails/attachments but also to send emails - so thanks for the code Ariel.

Regards

Colin