Search found 18 matches

by WernerSt
Tue Dec 11, 2018 8:15 am
Forum: eXpress++ Support
Topic: DCGET
Replies: 4
Views: 8614

DCGET

Roger, I ask for support because I have a Problem shown in the following test program I prepared for presentation: Please write in: Last Name: write in test and press enter Amount: write in 345.45 and press enter Street: write in test and press enter (until this Point everything is fine) After last ...
by WernerSt
Sat Nov 10, 2018 9:37 am
Forum: eXpress++ Support
Topic: dc_popcalc
Replies: 2
Views: 6342

Re: dc_popcalc

Roger,
Thank you for your quick support. It works now as expected!
Regards, Werner
by WernerSt
Sat Nov 10, 2018 8:24 am
Forum: eXpress++ Support
Topic: dc_popcalc
Replies: 2
Views: 6342

dc_popcalc

Roger,
If I write: 55 * 10 % the result is 550 instead of 5,5.
The calculator obviously ignores the percentage comand.
I use express++ 2.0.266.
Regards, Werner
by WernerSt
Sat Oct 29, 2016 4:04 am
Forum: Xbase++ Support
Topic: Need a PING function
Replies: 4
Views: 14161

Re: Need a PING function

Roger, I use this function to check the internet to my internet address for example. I think this dll performs a ping: function isDBFIBU return InternetCheckConnectionA( "HTTP://WWW.DBFIBU.DE" + c_NULL, 1, 0 ) > 0 DLLFUNCTION InternetCheckConnectionA(Url,dwFlags,nSize) using STDCALL from WININET.DLL
by WernerSt
Sat Mar 15, 2014 7:22 am
Forum: eXpress++ Support
Topic: DCGET
Replies: 4
Views: 5623

Re: DCGET

I tried oget: confirm:= .T. and it works as expected.
Thank you very much for your help!
Werner
by WernerSt
Thu Mar 13, 2014 9:29 am
Forum: eXpress++ Support
Topic: DCGET
Replies: 4
Views: 5623

Re: DCGET

Yes, I used the CONFIRM clause:

dcget cVar ;
object oGet ;
CONFIRM
......
dcread gui

Now I want to Change the confirm status of the created object to NOCONFIRM ( without new creation of the object)

Werner
by WernerSt
Tue Mar 04, 2014 1:13 pm
Forum: eXpress++ Support
Topic: DCGET
Replies: 4
Views: 5623

DCGET

Roger,
how can I Change the NOCONFIRM-property (clause NOCONFIRM) of a created dcget-object to CONFIRM ?
I would be glad if there ist a solution.
Werner
by WernerSt
Sun Jan 22, 2012 5:35 am
Forum: eXpress++ Support
Topic: Dc_XMLNode
Replies: 1
Views: 4700

Dc_XMLNode

Roger, Using asString() I had to change following line 422 in _dcxml.prg, because the original line produced an CRLF between label and content not accepted from the receiver of the XML-String: My program line: aLabel:= {{"id", "F" } } oHead: addNode( DC_XMLNode():new("Empfaenger", "2729", aLabel ) )...