Search found 116 matches

by Roberto Parisi
Sat Mar 25, 2006 1:59 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX properties
Replies: 3
Views: 972

Thx Antonio, now it works.

What about a more simple access to propertyies and methods like xHarbour Activex?

oObj := TActiveX():New(oWnd, "MyControl")
oObj:Panels:Add("Item1")
oObj:Panels:Add("Item2")
...

Regards,
Roberto Parisi
by Roberto Parisi
Sat Mar 25, 2006 9:38 am
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX properties
Replies: 3
Views: 972

ActiveX properties

...
oObj := TActiveX():New(oWnd, "MyControl")
oPanels := oObj:GetProp("Panels")
oPanels:Do("Add", "Item 1")
oPanels:Do("Add", "Item 2")
...

Can I access to activex properties like this?

Regards
by Roberto Parisi
Tue Mar 21, 2006 8:58 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Does someone know what's happened to CanalFive?
Replies: 5
Views: 1217

Thx Antonio, but www.canalfive.com no more exists :(
by Roberto Parisi
Tue Mar 21, 2006 2:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: The best compiler: bcc vs msvc
Replies: 1
Views: 679

The best compiler: bcc vs msvc

What's the best compiler for [x]Harbour and FWH?

Now I use bcc without problems, but I'm wondering if msvc give me more performances and more activex compatibility.

Thx
by Roberto Parisi
Tue Feb 14, 2006 7:43 am
Forum: FiveWin for Harbour/xHarbour
Topic: Events support on Class TActiveX !
Replies: 2
Views: 725

Great!
by Roberto Parisi
Wed Jan 25, 2006 6:51 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour handles ActiveX events, and FWH?
Replies: 1
Views: 606

xHarbour handles ActiveX events, and FWH?

as subject

Roberto Parisi
by Roberto Parisi
Mon Nov 07, 2005 5:59 pm
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Themed TGet on windows (fixed)
Replies: 14
Views: 8752

Ok, it works. CLIPPER declaration in my mgetcreate.c was dropping the underscore, with HB_FUNC it works.

Many thx to you and Herman Diego

Roberto Parisi
by Roberto Parisi
Mon Nov 07, 2005 11:33 am
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Themed TGet on windows (fixed)
Replies: 14
Views: 8752

Thx Antonio but with your changes the result is an editbox without border!

Regards,
Roberto Parisi
by Roberto Parisi
Sat Nov 05, 2005 3:18 pm
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Themed TGet on windows (fixed)
Replies: 14
Views: 8752

Thx Antonio,

I tried it by myself with no luck after 4 hours. :( (I'm curious how XChangeProc works)

Now I'm trying with non client area painting. I hope to find a trick for this problem.

Regards,
Roberto Parisi
by Roberto Parisi
Mon Oct 31, 2005 9:58 am
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Themed TGet on windows (fixed)
Replies: 14
Views: 8752

Themed TGet on windows (fixed)

I can't obtain themed edit box on windows. See the code below: #include "fivewin.ch" procedure main() local oDlg, cText := Space(30) define window oDlg title "Test" from 10,10 to 300,300 pixel @1,1 get cText of oDlg size 200,20 activate window oDlg return The edit box has a black...