Search found 142 matches

by Frank Demont
Wed Oct 26, 2005 2:32 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Array of gets
Replies: 11
Views: 4398

Why not using hash arrays ? They are very usefull for building dialog's , also afterwards when they must be referenced in another get LOCAL oGets := Hash() LOCAL aPct := Hash() for nGt := 1 to len( aFlds ) cFld := aFlds[ nGt ] @ nRw, nCol GET oGets[ cFld ] VAR aGets[ nGt ] PICTURE aPct[ cFld ] PIXEL...
by Frank Demont
Wed Oct 19, 2005 12:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: GPF With FWH SEPTEMBER 2005
Replies: 1
Views: 967

GPF With FWH SEPTEMBER 2005

Hello,

I tryed to recompile a big aplication with the september release , but had to return to the previous release , due to a gpf (xbrowse)

Frank
by Frank Demont
Tue Oct 18, 2005 6:43 am
Forum: FiveWin for Harbour/xHarbour
Topic: Combobox , changing aitems dynimacaly
Replies: 1
Views: 1381

Combobox , changing aitems dynimacaly

Hello, I try to use comboxes , and change oCombox:aItems in the dialog. I started with samples/Combox.prg , and try to change oCbx2:aItems (second combobox) 1)oCbx2:bGotFocus := ; {|| oCbx2:aItems := { "1:One", "2:CHANGED", "3:Three" } } The second combobox receives no ...
by Frank Demont
Sat Oct 15, 2005 1:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling Close Button (Style Sysmenu)
Replies: 1
Views: 999

Disabling Close Button (Style Sysmenu)

Hello,

When a dialog is opened with style sysmenu , can this turned off (and on)dynamically ?

Is there an example ?



Frank
by Frank Demont
Fri Oct 14, 2005 6:21 am
Forum: FiveWin for Harbour/xHarbour
Topic: Using fonts
Replies: 1
Views: 1136

Using fonts

Hello, I try to define 3 sizes of fonts : DEFINE FONT Fnt[1] NAME "MS Sans Serif" SIZE 9 , 12 DEFINE FONT Fnt[2] NAME "MS Sans Serif" SIZE 0 , 10 DEFINE FONT Fnt[3] NAME "MS Sans Serif" SIZE 0 , 8 DEFINE DIALOG oDlg @ 1 , 1 SAY "SIZE 12" OF oDlg FONT Fnt[1] @ ...
by Frank Demont
Tue Oct 11, 2005 4:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Dtepicker
Replies: 1
Views: 1273

Dtepicker

Hello,

When i jump to the pick routine , on returning NO FOCUS OBJECT is visible. I have to press the TAB button to see the next object in focus

It is very confusing and frustrating for a user to see no focus !!!!!
by Frank Demont
Sun Oct 09, 2005 6:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Radio button's , focus not visible
Replies: 5
Views: 2622

Antonio Tomorrow , i will try , but i did some test's : Unvisible focus from radiobuttons are frequent. In mine first thread , it was produced EVERY time the dialog was opened and the second object received focus , not when it received focus a second time Now , i changed the second object in a drop ...