Search found 4768 matches

by rdonnay
Mon Nov 22, 2010 8:22 am
Forum: eXpress++ Support
Topic: Sometimes error in dcread 2
Replies: 3
Views: 7272

Re: Sometimes error in dcread 2

Which version of eXpress++ are you using?
by rdonnay
Mon Nov 22, 2010 8:21 am
Forum: eXpress++ Support
Topic: Import XML
Replies: 12
Views: 19602

Re: Import XML

I do not understand your question.

Please clarify what it is that you want.
by rdonnay
Fri Nov 19, 2010 12:47 pm
Forum: eXpress++ Support
Topic: dc_dot format
Replies: 1
Views: 5157

Re: dc_dot format

Dian -

I have been looking at my code to try to figure out why this could happen.
It doesn't seem possible.

I'll keep trying.

Roger
by rdonnay
Fri Nov 19, 2010 9:33 am
Forum: Xbase++ Support
Topic: Printscreen on Windows 7
Replies: 29
Views: 46371

Re: Printscreen on Windows 7

Chris - Try this. I tested it on XP. I don't have my Win 7 computer here at the moment, but I suspect it will work. Roger FUNCTION Main() SaveScreen2Clipboard() RETURN nil PROC appsys ; return FUNCTION SaveScreen2ClipBoard() LOCAL oBitmap, oXbp, oSourcePS, oClipBoard oXbp := AppDeskTop() oSourcePS :...
by rdonnay
Fri Nov 19, 2010 9:25 am
Forum: eXpress++ Support
Topic: Change Taskbar Icon
Replies: 2
Views: 6889

Re: Change Taskbar Icon

Did you try this?

Code: Select all

oTaskBar:ChangeIcon( 1, ICON_SYNC2 , "UNIFLEX SYNC2" + Chr(13) + 'Rechts Click für das Menü' )
by rdonnay
Thu Nov 18, 2010 11:09 am
Forum: eXpress++ Support
Topic: A simple DCSAY queston
Replies: 5
Views: 9758

Re: A simple DCSAY queston

DCSAY objects are inherited from the XbpStatic class. These are basically the same as Labels in Windows. The & character follows this rule for menus and labels because the & character is used to underline the "hot key" of a label or menu item because it is a user prompt. DCGETs and DCBROWSEs are dis...
by rdonnay
Thu Nov 18, 2010 11:06 am
Forum: eXpress++ Support
Topic: eXpress++ build 253
Replies: 4
Views: 9652

Re: eXpress++ build 253

Altiy - I sent you a private email with download instructions for the full version of eXpress++. I no longer support a demo version because I think it is too difficult to evaluate this kind of product without seeing exactly what you will receive in the package including source code. I am probably th...
by rdonnay
Thu Nov 18, 2010 10:51 am
Forum: eXpress++ Support
Topic: Conflict with radiogroups and dcget
Replies: 1
Views: 5492

Re: Conflict with radiogroups and dcget

Kurt - Radio buttons are group by having a common parent. Your 3 groups will interfere with each other because they all have the same parent. You need to insure that each radio group has a different parent. Roger #INCLUDE "dcdialog.CH" FUNCTION Main() LOCAL GetList[0] LOCAL nRadio1, nRadio2, nRadio3...
by rdonnay
Wed Nov 17, 2010 1:45 pm
Forum: eXpress++ Support
Topic: A simple DCSAY queston
Replies: 5
Views: 9758

Re: A simple DCSAY queston

The standard Windows convention is to use two & characters.

Your code should look like this:

Code: Select all

cName := Strtran(cName,'&','&&')

@ x,y DCSAY cName
by rdonnay
Wed Nov 17, 2010 8:47 am
Forum: eXpress++ Support
Topic: dc_setrelation question
Replies: 10
Views: 17797

Re: dc_setrelation question

Sometimes "automated" just doesn't cut it and a little programming is required.

Rick Dalzell's solution looks pretty "slick" to me.