Search found 147 matches

by Zdeno Bielik
Tue Apr 21, 2015 9:14 am
Forum: Xbase++ 2.0
Topic: echo example
Replies: 14
Views: 28475

Re: echo example

super, many thanks!
I will try it.
by Zdeno Bielik
Tue Apr 21, 2015 1:25 am
Forum: eXpress++ Support
Topic: Centered modal window
Replies: 5
Views: 12549

Re: Centered modal window

Hi Piotr,

try this:

DCGETOPTIONS HIDE

DCREAD GUI OPTIONS DCGETOPTIONS ;
EVAL { |o| SetAppWindow(o), ;
DC_CenterObject(..........), ;
o:show() ;
}

Hope this helps you

Zdeno
by Zdeno Bielik
Mon Apr 20, 2015 11:41 pm
Forum: Xbase++ 2.0
Topic: echo example
Replies: 14
Views: 28475

echo example

Hi Roger, I want in your test Test:Echo example save and then show e.g. all previously passed strings and time when it was called. But when I call this modified example in webbrowser, next error is saved in error.log file: = Donnay Software Web Server Error ========== Date: 20150421, Time: 08:16:16 ...
by Zdeno Bielik
Mon Apr 20, 2015 9:51 am
Forum: Xbase++ 2.0
Topic: CxpHttpServer
Replies: 6
Views: 15876

Re: CxpHttpServer

next images
by Zdeno Bielik
Mon Apr 20, 2015 9:48 am
Forum: Xbase++ 2.0
Topic: CxpHttpServer
Replies: 6
Views: 15876

Re: CxpHttpServer

Which of these is correct? #1 or #2 #1 is OK When I bring your test06b.html into Multiedit, it shows characters as in #2. When I open created/generated html file from cHtml in any program or web-browser or in direct in CxpHttpServer, it is OK, just see also attached images test06b-04---OK.png and t...
by Zdeno Bielik
Mon Apr 20, 2015 9:43 am
Forum: Announcements
Topic: CXP / HTTP Samples
Replies: 15
Views: 37149

Re: CXP / HTTP Samples

Roger,

ok, many thanks for this info.
I hope, fix and documentation too will be available soon...

Zdeno
by Zdeno Bielik
Mon Apr 20, 2015 4:47 am
Forum: eXpress++ Support
Topic: DCBROWSE refresh SIZE
Replies: 6
Views: 13167

Re: DCBROWSE refresh SIZE

ooops,

actual positions
x := oBrowse:currentPos()[1], ;
y := oBrowse:currentPos()[2], ;

actual sizes
x := oBrowse:currentSize()[1], ;
y := oBrowse:currentSize()[2], ;
by Zdeno Bielik
Mon Apr 20, 2015 4:41 am
Forum: eXpress++ Support
Topic: DCBROWSE refresh SIZE
Replies: 6
Views: 13167

Re: DCBROWSE refresh SIZE

Hi Viktor,

try something like this:

x := oBrowse:currentPos()[1], ;
y := oBrowse:currentPos()[2], ;
oBrowse:Hide(), ;
; && oBrowse:SetSize( { x/2, y/2} ), ; && half size
oBrowse:SetSize( { 400, 200 } ), ;
oBrowse:Configure(), ;
oBrowse:Show(), ;

HTH
Zdeno
by Zdeno Bielik
Sun Apr 19, 2015 2:16 am
Forum: Announcements
Topic: CXP / HTTP Samples
Replies: 15
Views: 37149

Re: CXP / HTTP Samples

Roger, ok, I understand, I will wait. here is some next info, may be it will helps you solve this problem: when I changed POST method to GET method, it started work, but now all sended data are included in url address and are visible for all... is: cHtml += '<form action="/MyTest02/Form01?submit" me...
by Zdeno Bielik
Sat Apr 18, 2015 2:55 am
Forum: Announcements
Topic: CXP / HTTP Samples
Replies: 15
Views: 37149

Re: CXP / HTTP Samples

Roger, ok, CxpHttpServer now shows my test-form, but it is any problem with its validating, when I press on Submit button. aVars is still empty. I don’t know, if it is any my mistake in format of calling code (I did try more httpRequest/getForm() combinations without success) or if Submit method doe...