Search found 113 matches

by jdsoft
Fri Nov 09, 2012 12:26 pm
Forum: User Contributions
Topic: Simple RTF controll
Replies: 0
Views: 7583

Simple RTF controll

Hello, Attached you find a simple RTF control. Screenshot.jpg This can easy be included in your Express application. However, it can be inproved visualy (especialy the toolbar), re-size and drag-drop is not supported. The code can be improved. /* Sample programm for a RTF edit control in express++ I...
by jdsoft
Thu Nov 08, 2012 1:21 pm
Forum: eXpress++ Support
Topic: How to attach a datablock to DCACTIVEXCONTROL
Replies: 8
Views: 13379

Re: How to attach a datablock to DCACTIVEXCONTROL

OOPS!! A error in the sourcecode main.prg @ nLine , 1 DCACTIVEXCONTROL oHtml SIZE 120,15 CLSID "rmpHTML.HTMLed" SUBCLASS "DCHtmlEdit" WHEN {||oHtml:EditorEnabled := lEdit} DATA {|c|iif(ValType(c) = "C",oHtml:DocumentHTML := c,nil),oHtml:DocumentHTML} Should be @ nLine , 1 DCACTIVEXCONTROL oHtml SIZE...
by jdsoft
Thu Nov 08, 2012 1:14 pm
Forum: eXpress++ Support
Topic: How to attach a datablock to DCACTIVEXCONTROL
Replies: 8
Views: 13379

Re: How to attach a datablock to DCACTIVEXCONTROL

Hello Roger,

Please tel me how to create a datalink to a activexcontrol.

You can download a demo from http://nbit.net.au.
Attached also the code i use to create this window.
sample.jpg
sample.jpg (46.17 KiB) Viewed 13369 times
Jack
by jdsoft
Thu Nov 08, 2012 10:31 am
Forum: eXpress++ Support
Topic: How to attach a datablock to DCACTIVEXCONTROL
Replies: 8
Views: 13379

How to attach a datablock to DCACTIVEXCONTROL

Hello, I am experimenting with a active X Html editor from nBit (http://nbit.net.au/). I want this to use this for memo-edit. A regular field edit of my database looks like @ 1 ,1 DCMULTILINE oDb:memo SIZE 94,7 The memo field is linked to the DCMULTILINE . (oDb:memo) When skipping thru the database,...
by jdsoft
Thu Nov 01, 2012 1:02 am
Forum: eXpress++ Support
Topic: How to tooltip DcBrowse
Replies: 2
Views: 6345

Re: How to tooltip DcBrowse

Hello,

Thank you for the tip.
I read the help a few times, but i missed this option.

Regards,
Jack Duijf
by jdsoft
Wed Oct 31, 2012 5:35 pm
Forum: eXpress++ Support
Topic: How to tooltip DcBrowse
Replies: 2
Views: 6345

How to tooltip DcBrowse

Hello,

How to create a tooltip in a DCBROWSE.
The tooltip should po-up when mousepointer is located on cell, not on header.
I Tryed DCBROWCOL ... TOOLTIP, but that just works for the header.

Suggestions are welcome.

Jack Duijf
by jdsoft
Fri Oct 05, 2012 9:41 am
Forum: eXpress++ Support
Topic: DCHTMLVIEWER Different behaviour
Replies: 0
Views: 5464

DCHTMLVIEWER Different behaviour

Hello, Below you see 2 images: The first one is from Windows-XP. The second from Win-7. The code is exactly the same. (working sample code is attached) cDocMap := "C:\Apps_test\HtmlViewer" @ 1 , 1 DCHTMLVIEWER oView SIZE 120,22 NAVIGATE cDocMap How can i get the same appearance in Win-7 as shown in ...
by jdsoft
Sat Aug 04, 2012 6:19 am
Forum: eXpress++ Support
Topic: Program correction of variables of the environment in Alaska
Replies: 5
Views: 10701

Re: Program correction of variables of the environment in Al

Hello,

If i read correctly, you are looking forcode to update/read the windows registry.

Try http://www.software-braun.de/articles/2 ... stry-class this.

Regards,
Jack Duijf
by jdsoft
Fri Jul 27, 2012 2:29 pm
Forum: eXpress++ Support
Topic: Go to next field using ENTER
Replies: 2
Views: 6225

Re: Go to next field using ENTER

Hello Roger,

Thank you for the reply.
This does what i need,
thank you,

Regards,
Jack Duijf
by jdsoft
Fri Jul 27, 2012 1:11 pm
Forum: eXpress++ Support
Topic: Go to next field using ENTER
Replies: 2
Views: 6225

Go to next field using ENTER

Hello, My customer wants a GUI app the behaves like a clipper app. The main window has DCGET , DCGROUP and DCTABPAGE (having browses and DCGET). If i use ENTER to go to the next field, it all goes well until ther is a groupbox or tab-page. Then the focus goes back to the first field in the dialog. W...