Search found 811 matches

by fraxzi
Tue Sep 22, 2009 5:21 am
Forum: FiveWin for Harbour/xHarbour
Topic: COMBOBOX odd behavior on themed app
Replies: 0
Views: 173

COMBOBOX odd behavior on themed app

Hello!

redefine combobox items doesn't show if .rc commented this line:

Code: Select all

   //1 24 "WindowsXP.Manifest"
 
with:

Code: Select all

   1 24 "WindowsXP.Manifest"
 
combobox properly shows.

Any idea why?

..Using xHB1.21 + FWH9.08
by fraxzi
Sat Sep 12, 2009 2:46 am
Forum: FiveWin for Harbour/xHarbour
Topic: DIALOG inside WINDOW
Replies: 12
Views: 1614

Re: DIALOG inside WINDOW

Hello Otto,

Sorry I cant help you with RibbonBar... My FWH is only 9.01...


Regards,
-Frances
by fraxzi
Fri Sep 11, 2009 7:12 am
Forum: FiveWin for Harbour/xHarbour
Topic: Another ADS issue
Replies: 7
Views: 1365

Re: Another ADS issue

I have my own version of that ADS issue... :?: There's no record on my created temp table when I xbrowse it.. no error. all successful execution. Anyone sharing idea? :wink:        ...                 cSQL := "CREATE TABLE #TEMP ( [FName] CHAR(50) ); "+;                             "...
by fraxzi
Fri Sep 11, 2009 6:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: Another ADS issue
Replies: 7
Views: 1365

Re: Another ADS issue

I have my own version of that ADS issue... :?: There's no record on my created temp table when I xbrowse it.. no error. all successful execution. Anyone sharing idea? :wink:        ...                 cSQL := "CREATE TABLE #TEMP ( [FName] CHAR(50) ); "+;                             "I...
by fraxzi
Fri Sep 11, 2009 1:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: XMate and Libs
Replies: 6
Views: 744

Re: XMate and Libs

Guys,

I just want to say that kudus to xMake developer...

I am using xMate as my primary project manager. The best 'free' tools for me.


Regards!
by fraxzi
Fri Sep 11, 2009 12:15 am
Forum: FiveWin for Harbour/xHarbour
Topic: Another ADS issue
Replies: 7
Views: 1365

Re: Another ADS issue

Antonio, thanks for your attention, this was a rare behavior that I found when I tryed to use the last RDDADS and temporary tables Fraxzi OK, thanks for your test, this mean that I have hope, because I exposed the same question in the xharbour's google group and they didn't have an logical answer f...
by fraxzi
Thu Sep 10, 2009 8:56 am
Forum: FiveWin for Harbour/xHarbour
Topic: DIALOG inside WINDOW
Replies: 12
Views: 1614

Re: DIALOG inside WINDOW

Sir, Here an example:       ...       DEFINE WINDOW oWnd TITLE "mdi window or just window" MDICHILD;              OF oMDIFrame PIXEL                DEFINE DIALOG oDlg RESOURCE 'DLG_TEST';                     OF oWnd PIXEL;                     STYLE nOr( WS_VSCROLL, WS_HSCROLL )            ...
by fraxzi
Thu Sep 10, 2009 8:31 am
Forum: FiveWin for Harbour/xHarbour
Topic: Another ADS issue
Replies: 7
Views: 1365

Re: Another ADS issue

Hello to all, I am testing the FWH9.06 + xH from this distribution ADS Local 9.1 When I use temporary table, per example: SELECT clients.*, 0.0 as salary INTO #temp FROM clients with previus version of RDD, like ADS 7.1 was possible to modify the salary column like (alias) -> salary := <value> but ...
by fraxzi
Wed Sep 09, 2009 3:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: Variables ( Solved )
Replies: 16
Views: 1808

Re: Variables ( Solved )

Dear James,

No apology needed :)

xHarbour's FOR TO is much faster than the old one. At least to my experience.


My best regards!

-Frances



PS. I need sleep too... LOL!
by fraxzi
Tue Sep 08, 2009 3:26 am
Forum: FiveWin for Harbour/xHarbour
Topic: Variables ( Solved )
Replies: 16
Views: 1808

Re: Variables

James Bott wrote:Frances,

That may work but assigning value to PUBLICs inside a class is not good OOP practice. It kind of defeats the purpose of having a class. The data should be stored inside the class.

Regards,
James

Thanks for the Idea. Best solution.
by fraxzi
Tue Sep 08, 2009 12:57 am
Forum: FiveWin for Harbour/xHarbour
Topic: Variables ( Solved )
Replies: 16
Views: 1808

Re: Variables

MyArray:={ {'campo1', 30}, {'campo2', 50}} for n = 1 to len(MyArray) // How make it ? // #define MyArray[n][1] MyArray[n][2] next n msginfo(campo2) // need return 50 i maked it // it´s OK more is define campo2 as 50 only inside this function when i try msginfo(campo2) in other function // give me e...
by fraxzi
Tue Sep 08, 2009 12:38 am
Forum: FiveWin for Harbour/xHarbour
Topic: Multi-user software
Replies: 12
Views: 1802

Re: Multi-user software

Sir, 1) If your application is WAN (or using ADS as client/server), the .exe and some runtime should be on client side. 2) If your application is LAN (or using ADS as client/server or standalone this is what I do: 1. Compress the .exe using upx 2. on your client side, create a batch file (if using w...
by fraxzi
Sat Jan 31, 2009 3:36 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse multiheaders
Replies: 8
Views: 2185

Re: Problem with xBrowse multiheaders

How to center the superheader?
Image

Regards,
by fraxzi
Wed Jan 28, 2009 9:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse multiheaders
Replies: 8
Views: 2185

Re: Problem with xBrowse multiheaders

I got it :oops: Thanks :lol:

Code: Select all

...
             oCBSList:aCols[ 1]:nHeaderType   := 2
             oCBSList:aCols[ 2]:nHeaderType   := 1
             oCBSList:aCols[ 3]:nHeaderType   := 1
             oCBSList:aCols[ 4]:nHeaderType   := 3
...
Thanks for the explanations.

Regards,
by fraxzi
Wed Jan 28, 2009 3:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse multiheaders
Replies: 8
Views: 2185

Re: Problem with xBrowse multiheaders

Hi there Silvio! I replaced oBrw:bClrHeader := { || { nRGB( 0, 0, 0 ), nRGB( 203, 225, 252 )} } with this (to eliminate bound array error) oBrw:bClrHeader := { || { nRGB( 0, 0, 0 ), nRGB( 203, 225, 252 ), nRGB( 255, 255, 220 ), nRGB( 247, 192, 91 ) } } I followed the nHeaderType := 2 ... 1 but I can...