Search found 1176 matches

by Tom
Mon Mar 22, 2010 3:01 pm
Forum: eXpress++ Support
Topic: DC_Dot suggestion
Replies: 1
Views: 5869

DC_Dot suggestion

DC_Dot called via hotkey inside an app is extremely useful, especially for debugging. But whenever I want to access the objects on the dialog calling DC_Dot, I have to make at least one of those PRIVATE (in most cases the dialog itself - but I don't want to do this). Would it be possible to have the...
by Tom
Mon Mar 22, 2010 2:57 pm
Forum: eXpress++ Support
Topic: DCREADGUI and AddButtons with dcbuttonxp-buttons
Replies: 4
Views: 9522

Re: DCREADGUI and AddButtons with dcbuttonxp-buttons

BTW. I use the BUTTONS-clause of DCGET OPTIONS heavily (DCREAD ... BUTTONS DCGUI_BUTTON_CUSTOM). Really nice would be to have a WHEN-clause for those buttons - and maybe (for the future) the option to use CJbuttons there. Comfort like in a "Holiday Inn" would be an option to place those buttons at t...
by Tom
Mon Mar 22, 2010 7:55 am
Forum: XCodeJock Support
Topic: ShortCutBar sample
Replies: 2
Views: 11238

Re: ShortCutBar sample

Thanks! :D
by Tom
Mon Mar 22, 2010 3:31 am
Forum: XCodeJock Support
Topic: ShortCutBar sample
Replies: 2
Views: 11238

ShortCutBar sample

Hi, Roger. Although I can run "ShortCutBar.EXE" from the samples, I can't recompile it - it gives an error at line 124: CJShortcutBarItem oItem CAPTION "Red Window" ID BITMAP_DESIGN_M WINDOW aWindows[4,2] TOOLTIP 'The Red Window' PARENT oShortcutBar The actual XCODEJOCK.CH does not contain a "WINDOW...
by Tom
Thu Mar 18, 2010 8:36 am
Forum: eXpress++ Support
Topic: New feature for DCGET KEYBLOCK
Replies: 4
Views: 9604

Re: New feature for DCGET KEYBLOCK

Hi, Markus.

What about using DC_MergeBlocks (oXbp:KeyBoard := DC_MergeBlocks(bMyKeyBoardBlock,oXbp:Keyboard)?
by Tom
Wed Mar 17, 2010 5:27 am
Forum: eXpress++ Support
Topic: Fun with DCBROWSE, FREEZELEFT and InsColumn()
Replies: 6
Views: 12661

Re: Fun with DCBROWSE, FREEZELEFT and InsColumn()

This did the job:

Code: Select all

FUNCTION ReInsertColumns(oBrowse,nInsPos,oColumn)
LOCAL aFrozen := oBrowse:SetLeftFrozen()
oBrowse:SetLeftFrozen({})
oBrowse:Configure()
oBrowse:InsColumn(nInsPos,oColumn)
oBrowse:SetLeftFrozen(aFrozen)
oBrowse:Configure()
oBrowse:RefreshAll()
RETURN nil
by Tom
Tue Mar 16, 2010 7:51 am
Forum: eXpress++ Support
Topic: Fun with DCBROWSE, FREEZELEFT and InsColumn()
Replies: 6
Views: 12661

Re: Fun with DCBROWSE, FREEZELEFT and InsColumn()

Hi, Roger. I will first check if this behaviour vanishes if I set oBrowse:SetLeftFrozen({})/oBrowse:Configure() before inserting the column and restore the frozen columns afterwards. If this doesn't help, I will try to create a sample. I already use this technique (SetFrozen/Configure) to force the ...
by Tom
Tue Mar 16, 2010 4:00 am
Forum: eXpress++ Support
Topic: Fun with DCBROWSE, FREEZELEFT and InsColumn()
Replies: 6
Views: 12661

Re: Fun with DCBROWSE, FREEZELEFT and InsColumn()

Hi, Regan. I already tried this idea, but it has two problems. If the option is off, the data-codeblocks of those columns become invalid, since the data inside those columns is not retrieved anymore if they are off. Okay, I could react inside the codeblock on this {||IF(!lColumnOptionIsSet,'',Column...
by Tom
Mon Mar 15, 2010 12:58 pm
Forum: eXpress++ Support
Topic: Fun with DCBROWSE, FREEZELEFT and InsColumn()
Replies: 6
Views: 12661

Fun with DCBROWSE, FREEZELEFT and InsColumn()

I have a big DCBROWSE with 5 frozen columns on the left and 31-x (depending on the daycount of the month) non-frozen-columns on the right. Two of the five frozen columns on the left are optional; therefore, I create the browse WITH all five columns (the dialog is hidden) and delete those two optiona...
by Tom
Thu Mar 11, 2010 4:00 am
Forum: eXpress++ Support
Topic: DC_SetPos(), DC_SetSize(), DC_CurrentSize()
Replies: 15
Views: 25606

Re: DC_SetPos(), DC_SetSize(), DC_CurrentSize()

Hi, Roger. I just want to resize/move objects created with DC-commands using the DC-coordinates. It does not have to be a method. @ 1,1 DCBROWSE oBrowse ... SIZE 100,25 This may position oBrowse at 7,580 (bottomleft, pixel coordinates). The size of the browse is 700,550 (pixel). CurrentPos() and Cur...