Search found 48 matches

by obelix
Tue Nov 18, 2014 11:30 pm
Forum: eXpress++ Support
Topic: xbp Menu in my program causes a black non-modal window
Replies: 8
Views: 12361

Re: xbp Menu in my program causes a black non-modal window

Roger, the menu system shown in the code and the attachement was designed for a crt program. As I'm transforming this program into a modal version, I would like to use a menu system the clients know from the crt version. It would be okay to use the express++ menu system, but I didn't find a way to c...
by obelix
Tue Nov 18, 2014 2:02 pm
Forum: eXpress++ Support
Topic: xbp Menu in my program causes a black non-modal window
Replies: 8
Views: 12361

xbp Menu in my program causes a black non-modal window

I want to use a menu system I used in a Clipper-Version with express++ If I use the procedure erzeugemenusystem() like below, the menu system runs in a black non-modal windows (see attachment) If I add the procedure appsys(), teh program breaks with the comment: unknown method for this object operat...
by obelix
Mon Nov 10, 2014 3:02 am
Forum: eXpress++ Support
Topic: Editing a cell in dcbrowse
Replies: 1
Views: 4427

Re: Editing a cell in dcbrowse

Hi Roger, what's wrong with my code? cAlias=alias() //ITEMSELECTED {||dblclickvorein(),oBrowse:RefreshAll()} ; //EDIT xbeK_CTRL_E MODE DCGUI_BROWSE_EDITEXIT ; @ 3,2 DCBROWSE oBrowse DATA cAlias SIZE wcol,wrow FONT feldfont ; EDIT xbeBRW_ItemSelected MODE DCGUI_BROWSE_EDITACROSSDOWN ; DELETE xbeK_DEL...
by obelix
Tue Oct 07, 2014 6:31 am
Forum: eXpress++ Support
Topic: Editing a cell in dcbrowse
Replies: 1
Views: 4427

Editing a cell in dcbrowse

Hi everybody I want to edit a cell, using @ 3,2 DCBROWSE oBrowse DATA cAlias SIZE wcol,wrow FONT feldfont ; ITEMSELECTED {||dblclickvorein(),oBrowse:RefreshAll()} EDIT xbeK_CTRL_E MODE DCGUI_BROWSE_EDITDOWN Clicking into the cell I can change the content but after leaving the cell with ENTER , the o...
by obelix
Fri Aug 29, 2014 7:53 am
Forum: eXpress++ Support
Topic: Merging a child window in a parent window
Replies: 2
Views: 6293

Re: Merging a child window in a parent window

Wow I couldn't believe it. It really works! Good advice for my second problem.
Thank you Chris!
by obelix
Thu Aug 28, 2014 11:37 pm
Forum: eXpress++ Support
Topic: Merging a child window in a parent window
Replies: 2
Views: 6293

Merging a child window in a parent window

:eusa-hand: Hi everybody I need your help to dissolve two similar problems: 1. I read from a text file to a database by a fread() operation. The content of the every record should be shown in the window without building a new window after every record (preventing a flickering window) 2. I want to sh...
by obelix
Thu Jun 12, 2014 5:22 am
Forum: eXpress++ Support
Topic: use of memoedit doesn't work correctly
Replies: 4
Views: 6634

Re: use of memoedit doesn't work correctly

Thank you Tom,
again and again it's you to give me the decisive advice.
DCMULTILINE is even more flexible and convenient to my problem.

Peter
by obelix
Thu Jun 12, 2014 1:37 am
Forum: eXpress++ Support
Topic: use of memoedit doesn't work correctly
Replies: 4
Views: 6634

use of memoedit doesn't work correctly

Hi everybody, I'm using the following code: m_baustein:="example" cmemo:=MemoRead(m_baustein) //cmemo is "" instead of "example" cmemo:=DC_GuiMemoEdit(cmemo,7,3,tiefe,weite+3) // cmemo is the edited text ok=MemoWrit(m_baustein,cmemo) // of ist false, m_baustein is "example" instead of the text edite...
by obelix
Fri May 02, 2014 12:21 pm
Forum: eXpress++ Support
Topic: exit form dcbrows-object with double click
Replies: 2
Views: 4756

Re: exit form dcbrows-object with double click

Danke Tom :D
Precisely that what I needed, and not the first time.
Are there questions you can't bring to a successfil end ? I think, the next weeks I will try to bring you in troubles with my foolish problems.
Thanks for your help.
by obelix
Fri May 02, 2014 1:36 am
Forum: eXpress++ Support
Topic: exit form dcbrows-object with double click
Replies: 2
Views: 4756

exit form dcbrows-object with double click

hi everybody i want to leave a DCBROwSE object. If I use the ENTER-key it works but not with a mouse double click. @ 3,2 DCBROWSE oVBrowse; DATA cAlias SIZE wcol,wrow FONT feldfont DATALINK {||oVbrowse:doppelklick()} Unfortunely I only found the following hint: DATALINK <bDataLink> is an optional co...