Search found 60 matches

by TWolfe
Tue Oct 27, 2015 9:05 pm
Forum: Xbase++ 2.0
Topic: C language and Xbase
Replies: 20
Views: 38565

Re: C language and Xbase

A couple of more ideas -- Your Code: cBuffer=chr(znak) * zápis znaku do výstupného retazca cTargetString := cTargetstring+cBuffer Note: I changed YOUR -> cTargetString=cTargetstring+cBuffer TO -> cTargetString := cTargetstring+cBuffer The ":=" assignment operator is preferred over the ambiguous "=" ...
by TWolfe
Mon Oct 26, 2015 10:00 pm
Forum: Xbase++ 2.0
Topic: C language and Xbase
Replies: 20
Views: 38565

Re: C language and Xbase

Code: Select all

for j=0 to pomznak-1
.
.
next
It appears that 'j' is just a counter. Try:

Code: Select all

for j:=1 to pomznak
.
.
next


If this code is executed a million times or so it may save you another second depending on your machine speed.

HTH,
Terry
by TWolfe
Tue Oct 06, 2015 1:41 pm
Forum: eXpress++ Support
Topic: Popup jump option
Replies: 6
Views: 8757

Re: Popup jump option

POPUP {|c|{bookship(@c,.t.,"S"),IIF(c=0,oMiscShip,Dateship)}} ; Pass c to bookship() by reference. From the docs: "Code block parameters are LOCAL variables which exist when the code block is executed and are only visible within the code block." As locals, they must be passed by reference if you wa...
by TWolfe
Tue Aug 04, 2015 8:57 am
Forum: Zen and the art of Software Maintenance
Topic: Michael Rudrich
Replies: 11
Views: 26836

Re: Michael Rudrich

News of Michael’s death has saddened me deeply. Michael was a good person and always ready to go out of his way to be friendly. He will be deeply missed. Four years ago, my wife and I visited Germany and Michael met our boat on the Rhine River and drove us to Weiden. His famous black BMW made the 13...
by TWolfe
Wed Apr 29, 2015 9:55 pm
Forum: Announcements
Topic: 2015 Spring Conference in Idaho, USA
Replies: 60
Views: 122114

Re: 2015 Spring Conference in Idaho, USA

Tom,
I'm arriving late on thursday (10.11 pm) and will look for a cab at the airport.
Are you on United flight 4965?

If so I am on the same flight. Hope to see you tonight.

Terry
by TWolfe
Tue Apr 14, 2015 8:47 pm
Forum: eXpress++ Support
Topic: removing registry entries
Replies: 1
Views: 4931

Re: removing registry entries

Hi Brian,

Try:

Code: Select all

DC_RegDelete(HKEY_CURRENT_USER,'Software\Sei\Windows')
Where 'Software\Sei\Windows' is the registry key where you saved the window position and size metrics.

Terry
by TWolfe
Mon Mar 30, 2015 1:13 pm
Forum: eXpress++ Support
Topic: SFTP 3rd party software
Replies: 1
Views: 4431

SFTP 3rd party software

Does anyone know of a third party .DLL that will enable SFTP file transfers?

xb2net will handle FTP, but I don't think Boris ever added support for SFTP..

Thanks,
Terry
by TWolfe
Mon Feb 23, 2015 11:42 am
Forum: Announcements
Topic: 2015 Spring Conference in Idaho, USA
Replies: 60
Views: 122114

Re: 2015 Spring Conference in Idaho, USA

Tickets are purchased. I will be there along with one of my new programmers.

Sounds like fun,
Terry
by TWolfe
Fri Sep 12, 2014 1:26 pm
Forum: eXpress++ Support
Topic: Tabs not resizing properly
Replies: 6
Views: 8178

Re: Tabs not resizing properly

The sample program did not use 'STATICAREA' As soon as you add 'STATICAREA' the system fails. #include "dcdialog.ch" PROCEDURE MAIN() LOCAL oDlg, oDraw:={}, GetOptions, GetList:={}, oTabPage1, oTabPage2, bAction, ; bResize, oT1, oT2, cc1, cc2, cc3 cc1:=cc2:=cc3 := "Just some Text " @ 6,1 DCTABPAGE o...
by TWolfe
Fri Sep 12, 2014 11:02 am
Forum: eXpress++ Support
Topic: Tabs not resizing properly
Replies: 6
Views: 8178

Re: Tabs not resizing properly

Roger, there appears to be a problem with this fix.
I will do more testing and let you know what I find.

Error is object has no method 'ANGLE'.

Funny, it works perfectly on the sample program I sent you, but does not work in my application???

Terry