Search found 105 matches

by Andy Edward
Mon Jun 29, 2015 1:22 am
Forum: eXpress++ Support
Topic: Buttons under a new window
Replies: 14
Views: 18569

Re: Buttons under a new window

I need to see your FORM_BOX command. I think the issue may be the TEXTOBJ clause. This may not be actually creating a proper pointer to the object, which would cause the buttons to be children of the dialog drawingArea rather than the FORM_BOX. To insure that this is correct you can use the DC_Arra...
by Andy Edward
Sun Jun 28, 2015 7:46 pm
Forum: eXpress++ Support
Topic: Buttons under a new window
Replies: 14
Views: 18569

Re: Buttons under a new window

HI Roger,

My Timezone is GMT+8. it's 10:45 AM here. I'll pm you my Skype contact

Best Regards,

Andy
by Andy Edward
Sun Jun 28, 2015 6:44 pm
Forum: eXpress++ Support
Topic: Buttons under a new window
Replies: 14
Views: 18569

Re: Buttons under a new window

Hi Roger, /* CUSTOM BOX */ #xtranslate @ <nSRow>,<nSCol> TO <nERow>,<nECol> ; FORM_BOX [HEADER <cHeader>] ; [TEXT <cText>] ; [HEADALIGN <nHdAlign>] ; [HEADHEIGHT <nHdHeight>] ; [HEADFONT <nHdFont>] ; [HEADCOLOR <ncHdFgC> [,<ncHdBgC>]] ; [HEADOBJ <oHdObj>] ; [TEXTALIGN <nTxAlign>] ; [TEXTFONT <nTxFon...
by Andy Edward
Thu Jun 25, 2015 9:34 pm
Forum: eXpress++ Support
Topic: Buttons under a new window
Replies: 14
Views: 18569

Re: Buttons under a new window

I can't paste the full code because of a lot of data driven stuff, so I'll just give the flow of the code I'll just paste the code for the top right side of the screen: // TOP PART OF RIGHT SIDE @ 10,nSidebarWidth+15.7 DCSTATIC TYPE XBPSTATIC_TYPE_TEXT; SIZE nWIDTH-nSidebarWidth, (nHEIGHT/2) PIXEL; ...
by Andy Edward
Thu Jun 25, 2015 6:05 pm
Forum: eXpress++ Support
Topic: Buttons under a new window
Replies: 14
Views: 18569

Re: Buttons under a new window

Hi Wolfgang,

The blue bordered boxes are actually already STATICS which I took the sample from /Samples/Static/FormBox.prg

I didn't create the blue bordered boxes using DCGROUP. Should I have done that?

Regards,

Andy
by Andy Edward
Thu Jun 25, 2015 2:22 am
Forum: eXpress++ Support
Topic: Buttons under a new window
Replies: 14
Views: 18569

Re: Buttons under a new window

continuing from the questions above (can only attach 3 attachments per post)

if I move the window to almost where the buttons are,
Untitled-3.gif
Untitled-3.gif (48.24 KiB) Viewed 12545 times

and close the window. The buttons are cut.
Untitled-4.gif
Untitled-4.gif (34.96 KiB) Viewed 12545 times
Any ideas?
by Andy Edward
Thu Jun 25, 2015 2:19 am
Forum: eXpress++ Support
Topic: Buttons under a new window
Replies: 14
Views: 18569

Buttons under a new window

Hi all, I have a screen like so: Untitled-1.gif When I click one of the buttons, I will open up a new window. But when I drag the new window, the buttons below which are on the path of my dragging movement disappear. Even the static that says 'Favorite Shortcuts' also gone. Untitled-2.gif Can someon...
by Andy Edward
Mon Jun 08, 2015 11:55 pm
Forum: eXpress++ Support
Topic: Command to set text color when highlighted
Replies: 6
Views: 9998

Re: Command to set text color when highlighted

Wolfgang Ciriack wrote:I am setting the colors for background of columns with COLOR {nil, GRA_CLR_....}, that do not change the hilitecolor in DCBROWSE.
So whenever there is a color set for the row/column in browse, hilitecolor for the FG (foreground) setting is ignored?

Regards,

Andy
by Andy Edward
Mon Jun 08, 2015 9:41 pm
Forum: eXpress++ Support
Topic: Command to set text color when highlighted
Replies: 6
Views: 9998

Re: Command to set text color when highlighted

Add these lines to your source: // Datalines highlite // Aadd(aBrwPres ,{XBP_PP_COL_DA_HILITE_FGCLR,GRA_CLR_WHITE}) // Hilite FG color Aadd(aBrwPres ,{XBP_PP_COL_DA_HILITE_BGCLR,GRA_CLR_BLUE}) // Hilite BG color // Hi Leon, I've already have those in the source, but it's still not working. I'm usin...
by Andy Edward
Mon Jun 08, 2015 2:56 am
Forum: eXpress++ Support
Topic: Command to set text color when highlighted
Replies: 6
Views: 9998

Command to set text color when highlighted

Hi Roger, brow1.png brow2.png in the first browse, the text in the blue line (highlighted line) is white, while the rest is black. Currently in the second browse, the text color never change when highlighted with the blue line (it stays black). What setting should I use, so that in the second browse...