Search found 116 matches

by Roberto Parisi
Fri Jan 05, 2007 9:29 am
Forum: FiveWin for Harbour/xHarbour
Topic: Vista compatibility
Replies: 2
Views: 872

Vista compatibility

as subject.

Regards,
Roberto Parisi
by Roberto Parisi
Fri Dec 01, 2006 7:17 am
Forum: FiveWin for Harbour/xHarbour
Topic: Web based interface for FWH
Replies: 44
Views: 11295

I agree with you.

I'm wondering about a fivewin on an ajax layer... Antonio, what about it?
by Roberto Parisi
Wed Nov 29, 2006 8:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: VtaskBar (Explorer Bar) now available for sale
Replies: 11
Views: 3079

I too.

I haven't got reply from Rene.

Regards,
Roberto Parisi
by Roberto Parisi
Tue Oct 31, 2006 5:22 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Create and Email PDF's from FWH
Replies: 24
Views: 10408

Bought!

Excellent.

Regards.
by Roberto Parisi
Fri Sep 29, 2006 4:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Activex and enumerators
Replies: 5
Views: 1094

Activex and enumerators

Many thx Antonio. Ok... my problem is that with complex activex with tens of enumrations i don't know what number I must use. Is there a way to get a list (like an array) of enumrations? Reading many commercial activex docs I see they give for an activex the following groups: - Properties - Methods ...
by Roberto Parisi
Fri Sep 29, 2006 4:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Activex and enumerators
Replies: 5
Views: 1094

Activex and enumerators

oObj := TActiveX():New(...)

oObj:SetProp("Alignment", taRight)

taRight is a numeric enumerator, but I don't know what number is, how to get it?

I hope you understand my bad english.

Regards,
Roberto
by Roberto Parisi
Fri Sep 29, 2006 1:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Activex and enumerators
Replies: 5
Views: 1094

Activex and enumerators

is it possibile to use string enumrators with fw activex?

I don't know how to find the correspondent numeric of a string enumerator.

Regards,
Roberto Parisi
by Roberto Parisi
Fri Jul 28, 2006 6:36 am
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX parameters
Replies: 8
Views: 1752

I'm using voiceangel activex for tapi support

Regards
by Roberto Parisi
Thu Jul 27, 2006 10:06 am
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX parameters
Replies: 8
Views: 1752

To be clear: I buyed FWH27 only for activex events support and my 2 free upgrade months expired on 30/06/2006. In the May version activex events worked but in June version they don't work anymore. About my fix: I simply process parameters array deleting invalid elements and passing the right array t...
by Roberto Parisi
Thu Jul 27, 2006 9:15 am
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX parameters
Replies: 8
Views: 1752

Ok... but activex parameters was working in my FWH26.

I patched activex.prg by myself.

Regards
by Roberto Parisi
Thu Jul 27, 2006 6:49 am
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX parameters
Replies: 8
Views: 1752

Should I buy the newest version to keep updated with this fix?

Regards
by Roberto Parisi
Tue Jul 25, 2006 12:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX parameters
Replies: 8
Views: 1752

ActiveX parameters

I use FWH 2.7 Build June 2006... and I get activex parameters twice on events.
This doesn't happened with FWH 2.6.

May I change this behaviour?

Thx in advance,
Roberto Parisi
by Roberto Parisi
Fri Apr 28, 2006 1:30 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH and List & Label
Replies: 8
Views: 1913

Thx Enrico, I modified the sample according to L&L VB calling docs. DOCS ON Calling the Designer Once the data link is made, a single call is enough to bring up the Designer. The Design method takes a number of parameters which enable you to customize its behavior. These are described in detail ...
by Roberto Parisi
Fri Apr 28, 2006 1:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH and List & Label
Replies: 8
Views: 1913

Ok, the memory error has gone away. Now I get another error. This is the code: #include "fivewin.ch" function main() local oObj, oWnd define window oWnd from 0,0 to 800, 800 pixel oObj := CreateObject( "L11.List-Label11_Ctrl_32.1" ) @0,0 button "Test" action oObj:Design...
by Roberto Parisi
Fri Apr 28, 2006 12:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH and List & Label
Replies: 8
Views: 1913

FWH and List & Label

i'm unsuccesfully trying with this: function main() local oObj, oWnd define window oWnd from 0,0 to 800, 800 pixel oObj := CreateObject( "L11.List-Label11_Ctrl_32.1" ) @0,0 button "Test" action oObj:Desing(0, oWnd:hWnd, 'Design reports', 2, 'simple.lst', 1) activate window oWnd r...