Search the web
Sign In
New User? Sign Up
GPCP · Gardens Point Component Pascal
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 269 - 304 of 437   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
269
... using ... No need to worry about this one any more. I am happy with the solution that I have as it is fairly straightforward and conveniently kills *four*...
cfbsoftware1
Offline Send Email
Nov 4, 2006
6:26 am
270
Nice one Chris! This is one to add to the doco maybe. John ... From: GPCP@yahoogroups.com [mailto:GPCP@yahoogroups.com] On Behalf Of cfbsoftware1 Sent:...
K John Gough
john@...
Send Email
Nov 4, 2006
6:50 am
271
... Hmmm, this doesn't sound like something that should be embraced by the GPCP compiler documentation. What you're saying is, "to fix this shortcoming in our...
Marc Martin
marcmartin2
Offline Send Email
Nov 4, 2006
5:06 pm
272
Well, Marc's point has some merit, but the real issue is that this particular .NET funtionality is hung off the custom attribute mechanism. From the point of...
K John Gough
john@...
Send Email
Nov 6, 2006
2:52 am
273
With my 'theoretical' hat on I would probably agree with Marc. However, while it would be nice, with my 'pragmatic' hat on I would rather you (John) spend your...
cfbsoftware1
Offline Send Email
Nov 6, 2006
4:07 am
274
... As far as I remember in CP MAX(INTEGER) is = 07FFFFFFFH so 0FFFF0000H is too big for an INTEGER and compiler correctly intepret it as a LONGINT. Regards...
oberonguy
Offline Send Email
Nov 6, 2006
1:10 pm
275
... That works for me... as long as someone doesn't have to go write little bits of C# code... it seems like having the ability of using Edit->cut/paste/copy...
Marc Martin
marcmartin2
Offline Send Email
Nov 6, 2006
6:27 pm
276
Hi Folks there is a recent flurry of excitement about Hex constants, including some bug reports to gpcp@... So here is my take on the situation, and a...
K John Gough
john@...
Send Email
Nov 7, 2006
1:26 am
277
... Huh? What about negative integers? From the Component Pascal Language Report: The suffix 'H' is used to specify 32-bit constants in the range -2147483648...
cfbsoftware1
Offline Send Email
Nov 7, 2006
2:19 am
278
Hi All Chris is right. Hex constants marked with "H" should be converted to INTEGER internally. Long hex constants *must* have a trailing "L". gpcp has always...
K John Gough
john@...
Send Email
Nov 7, 2006
6:19 am
279
After much extremely helpful feedback on the beta-test version from members of this group, CPIde, the lightweight Windows development environment for Gardens...
cfbsoftware1
Offline Send Email
Nov 21, 2006
11:40 pm
280
Hello Chris, I have a problem with the trial version: it does not let me open any file ... "Regsitration information is missing" when opening first file. ...
koen_desaeger
Offline Send Email
Nov 23, 2006
4:11 pm
281
Hi Koen, Oops - sorry! Thank you for letting me know - it has now been fixed. Download v1.0.4 from: http://www.cfbsoftware.com/cpide/download.htm Regards, ...
cfbsoftware1
Offline Send Email
Nov 23, 2006
11:45 pm
282
Even after nearly 30 years, I can still clearly recall how useful I found the 'railroad diagrams' in Jensen & Wirth's Pascal User Manual and Report when first...
cfbsoftware1
Offline Send Email
Nov 27, 2006
3:02 am
283
I've just released the .NET version of P2O, my Pascal to Oberon translator. It is intended to be used to translate J&W or ISO 7185 Standard Pascal source code...
cfbsoftware1
Offline Send Email
Nov 29, 2006
6:34 am
284
Hi Chris, well done job. I'm sticking to linux ... so i cant/wont make use of it right now. Perhaps it will run using MONO at some time? ... -- mit...
Werner Braun
wb@...
Send Email
Dec 1, 2006
12:40 pm
285
... Hi Werner, Thank you! I hope so. Mono is still some way off implementing all the new controls introduced in .NET 2.0 Looking at the Mono roadmap they...
cfbsoftware1
Offline Send Email
Dec 1, 2006
1:02 pm
286
I've just done a quick test of GPCP V1.3.4 for .NET on Windows Vista and it seems to all work OK. The only problem I had was that the installer refused to...
cfbsoftware1
Offline Send Email
Mar 29, 2007
5:39 am
293
Thanks to Chris for checking this out. It is possible that our version of InstallShield needs to be updated to work with Vista. I shall check it out soon, as...
K John Gough
john@...
Send Email
Mar 29, 2007
1:22 pm
294
1. nProf If you need a Profiler to identify time-based bottlenecks in your GPCP code, I can recommend this one as being simple and easy to use: ...
cfbsoftware1
Offline Send Email
Apr 18, 2007
3:20 am
295
Hello, The compiler seems to use a locale dependent way to convert reals to strings and vice versa. Here in Belgium we would write: pi = 3,1415 with a comma,...
koen_desaeger
Offline Send Email
Apr 23, 2007
8:16 am
296
Hi All I think Koen is right. The compiler should always use the invariant locale for output when writing for another tool to read. Originally GPCP only used...
John Gough
j.gough@...
Send Email
Apr 26, 2007
5:28 am
297
I'm currently preparing v2.0, a freeware release of the Component Pascal IDE for .NET 2.0 If anybody would like to try it out and let me know if there are any ...
cfbsoftware1
Offline Send Email
Apr 30, 2007
7:36 am
298
When generating a CP symbol file from Microsoft.VisualBasic.dll so I could access the SpecialDirectories Class (to access the path of 'My Documents' etc.) I...
cfbsoftware1
Offline Send Email
May 18, 2007
6:18 am
299
... Follow up: I don't need a fix in a hurry. I've just discovered the VB libraries are not actually needed. The special folders can be accessed via the...
cfbsoftware1
Offline Send Email
May 18, 2007
6:37 am
300
Thanks to Chris for the bug report. I'll check it out and post an update. John...
John Gough
j.gough@...
Send Email
May 18, 2007
4:54 pm
301
... accessed ... Oops! I spoke to soon - I now have a different problem. The following test code: MODULE SpecialFolders; IMPORT Sys := mscorlib_System, CPmain;...
cfbsoftware1
Offline Send Email
May 22, 2007
3:18 am
302
Hi All I am in Redmond for the rest of this week. I will try to find a diagnosis for Chris' problem when I get back. It all looks very mysterious. John...
John Gough
j.gough@...
Send Email
May 22, 2007
5:30 am
303
If you are converting some existing Win32 code to use with GPCP on .NET the 'Microsoft Win32 to Microsoft .NET Framework API Map' is useful when trying to...
cfbsoftware1
Offline Send Email
Jul 5, 2007
1:00 am
304
... Thanks Chris! Not much activity here on GPCP... is anyone (besides Chris) here actively using GPCP? And if so, are you using the .NET version or JVM...
Marc Martin
marcmartin2
Offline Send Email
Jul 5, 2007
10:42 pm
Messages 269 - 304 of 437   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help