Hello y'all! I have program called TreasureCalc which I have not worked on for many months. When I left off, it compiled perfectly. But now I get this...
40498
wmhalsdorf
May 1, 2010 10:18 pm
... It would help if you supplied the line of BCX code since the following translates/compiles correctly with 6.0.3 PRINT ASC("A") PAUSE...
40499
Michael S. Sanders
ms79065
May 1, 2010 10:50 pm
Both the online version of the help file, & my local copy of the CHM, has a small error for the example in BCX_SET_TEXT: BCX_SET_TEXT ID_EDITBOX1, a$ ...
40500
Edwin Knoppert
ebknoppert
May 2, 2010 9:18 am
Hello, I wonder if there is some interest that someone creates a portable version of BCX with Pelles included? It would be nice for brief tests as well. ...
40501
Robert
rwishlaw
May 3, 2010 2:11 am
... Hi Mike: I have replaced the example with one that is complete. There are many function and procedure pages with incomplete or missing examples. If you...
40502
Michael S. Sanders
ms79065
May 3, 2010 5:12 pm
... Sure enough Robert, I'll keep my eyes peeled & see if I can submit a few. -- later on, Mike http://topcat.hypermart.net/...
40503
Brother Gabriel-Marie
brother.gabriel
May 5, 2010 8:41 pm
... Mr. Halsdorf, here is the sub. I am running PellesC 5. Like I said, it compiles with BCX 20090802. Sub InitKeys() Set sAccel[] As ACCEL FVIRTKEY,...
40504
wmhalsdorf
May 6, 2010 12:09 am
... You are making a call to a function from within a set statement which is not possible. That is why there is no translation to a call. You might consider...
40505
wmhalsdorf
May 6, 2010 12:56 am
... ENUM ASC_A = 65 ASC_B ASC_C ..... ASC_Z ASC_a = 97 ASC_z END ENUM Replace the ASC("A") with ASC_A etc....
40506
Michael
mikehg_67
May 6, 2010 1:23 am
... Hi Wayne, I made using ASC within a SET legal back when I changed ASC to formulate at translate time instead of run time. I'll have to do a comparison on...
40507
John Spikowski
johnspikowski
May 6, 2010 8:02 am
... Nice to see you posting to the list again. James Fuller has some momentum going with a cross platform converter using wxWidigets on the forum if your ...
40508
James Fuller
james_c_fuller
May 6, 2010 1:54 pm
Bcx meets wxWidgets on Windows and Linux. http://basic-compiler.com/forum/index.php?PHPSESSID=7cp52e7og55oq9631sjv2evdp5&board=38.0 James [Non-text portions of...
40509
wmhalsdorf
May 6, 2010 7:14 pm
... I disabled it since it was translating more than just ASC(). Will have to come up with something else....
40510
Michael
mikehg_67
May 7, 2010 3:49 am
... Thanks John, I'm still quite busy still with work but I'm glad to see there is still some activity. Mike H....
40511
John Spikowski
johnspikowski
May 7, 2010 4:01 am
... While you were gone, Armando and JohnJ made great progress giving James a rolling start with the BcxWx version....
40512
Michael
mikehg_67
May 7, 2010 4:39 am
... It's a shame they went with C++. I figured that abomination would have faded out years ago but it just keeps hanging around :-) Thanks, Mike H....
40513
John Spikowski
johnspikowski
May 7, 2010 4:52 am
... + 1 Prevents me from using wxWidgets with ScriptBasic. (ANSI C centric) I think the OOP craze must have given C++ a second life....
40514
mrbcx
May 7, 2010 12:55 pm
As continues to be demonstrated, BCX can be shaped to target various platforms and operating systems. I'm like to know your thoughts on the usefulness of a...
40515
mrbcx
May 8, 2010 2:00 pm
... The silence is deafening ... Guess I'll shelve that idea ......
40516
IW
indianwww
May 8, 2010 2:48 pm
________________________________ From: Michael <mikehg_67@...> To: BCX@yahoogroups.com Sent: Fri, May 7, 2010 12:38:46 AM Subject: [BCX] Re: Bcx...
40517
IW
indianwww
May 8, 2010 2:54 pm
________________________________ From: mrbcx <kdiggins@...> To: BCX@yahoogroups.com Sent: Sat, May 8, 2010 9:56:13 AM Subject: [BCX] Re: 31 flavors I...
40518
James Fuller
james_c_fuller
May 8, 2010 3:14 pm
Kevin, The list may not be the place to ask [?]. Try a dotnet forum . touting c++ functionality with basic syntax. James ... [Non-text portions of this...
40519
John Spikowski
johnspikowski
May 8, 2010 6:02 pm
... May take is if folks are going .NET route, they are going to use MS products to get there. (VB.NET, C#, ...) PowerBASIC seems to be struggling with sales...
40520
mrbcx
May 8, 2010 7:23 pm
... I regard BCX (the original for Win32) like being a very well built hammer. There comes a point where we don't need to improve the hammer anymore, instead...
40521
Michael
mikehg_67
May 8, 2010 7:42 pm
... I have not messed with dotnet much. Whatever language used is mostly behind the scenes to the user, so I would say whatever the slimmest and fastest...
40522
John Spikowski
johnspikowski
May 8, 2010 8:03 pm
... Sounds like a 'AE Gold Card' moment. ;-)...
40523
mrbcx
May 8, 2010 8:25 pm
... Nothing says congratulations, happy birthday, and Happy Mother's Day quite like one of these: ...
40524
BCX@yahoogroups.com
May 10, 2010 6:03 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the BCX group. File : /BCX_Files -...
40525
Brother Gabriel-Marie
brother.gabriel
May 10, 2010 10:52 pm
... But I have been doing this for quite awhile and it always compiled and worked before. I may be doing something wrong, but it does seem possible to do so a...
40526
wmhalsdorf
May 11, 2010 1:39 am
... If you put any of BCX's reserved words inside of a SET/END SET you will see that some of them will be translated into something other than what was...