Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

BCX · The Open Source BASIC to C Translator

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1003
  • Category: Basic
  • Founded: Jul 9, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 42783 - 42812 of 43454   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
42783 David
yajeed2000 Send Email
Apr 5, 2012
7:02 am
First of all I'd like to thank everyone who has read and replied to my many recent posts. I'm finding BCX and this forum very helpful. I will have many more...
42784 Doyle Whisenant
mecsoftware Send Email
Apr 5, 2012
10:08 am
... The first example in the help file under "COPYFILE"; shows how to move a file by copying it to a different folder. Then just KILL the file in the original...
42785 Ad Rienks
kwibus2002 Send Email
Apr 5, 2012
10:12 am
The example on the FINDFIRST$ function page shows how to copy a set of files. Simply add a KILL statement in the WHILE ... WEND loop, and you're done! 2012/4/5...
42786 wmhalsdorf Send Email Apr 5, 2012
6:14 pm
... Support for the MoveFile function in windows wasn't added till Windows XP. If you want to directly use it just do something like this. ...
42787 David
yajeed2000 Send Email
Apr 7, 2012
2:37 pm
... I've tried this DIM F$ DIM CurrentDirectory$ DIM NetworkUsername$ DIM NewDirectory$ DIM NewDirectoryPath$ DIM SourceDirectory$ DIM DestinationDirectory$ ...
42788 Ad Rienks
kwibus2002 Send Email
Apr 7, 2012
3:30 pm
SourceDirectory$ = CurrentDirectory$ + "\" DestinationDirectory$ = NewDirectoryPath$ + "\" 2012/4/7 David <david@...>...
42789 David
yajeed2000 Send Email
Apr 7, 2012
5:37 pm
... Thanks....
42790 Frank
f_la_f Send Email
Apr 8, 2012
1:40 pm
I receive the Pellesc messages : error #2039 Illegal expression, and, error #2001 Syntax error: expected `}' but found `string constant' arising from a BCX...
42791 David
yajeed2000 Send Email
Apr 8, 2012
2:22 pm
Hi, I've been struggling all afternoon trying to use the FINDFIRST and FINDNEXT functions to count how many times a filename/string is repeated in an array....
42792 Doyle Whisenant
mecsoftware Send Email
Apr 8, 2012
2:55 pm
... Use this as your FOR-NEXT loop. FOR I = 0 TO 9 IF A$ = D$[I] THEN PRINT D$[I] + " is a duplicate and I don't need it in my set" ELSE PRINT D$[I] END IF A$...
42793 wmhalsdorf Send Email Apr 8, 2012
6:22 pm
... The only way a surplus comma can occur is if the data statement ends in a comma....
42794 Frank
f_la_f Send Email
Apr 9, 2012
6:10 am
You are right, in fact there were four instants of a commas at the end of line, perhaps not too bad a record out of 548 cases. What threw me was that the...
42795 David
yajeed2000 Send Email
Apr 9, 2012
8:49 am
... Thanks, David....
42796 David
yajeed2000 Send Email
Apr 10, 2012
10:16 am
Hi, I'm having problems counting how many of each UNIQUE string (filename) are in the array below. The duplicates have been found but I need to count how many...
42797 wmhalsdorf Send Email Apr 10, 2012
3:36 pm
... CLS GLOBAL I DIM A$ DIM B% DIM C% DIM FileSpec$ DIM szDelayPrintOfGroup$ FileSpec$ = "000.txt" $REMS PRINT SET D$[10] "004", "001", "001", "005", "002", ...
42798 David
yajeed2000 Send Email
Apr 10, 2012
4:21 pm
... Wayne, This doesnt seem to do anymore than my last example. I've found some examples in C on this page (but just using integers) in an array ...
42799 David
yajeed2000 Send Email
Apr 10, 2012
4:25 pm
... All I need is a program that says (for example) There are 3 files named 001 There are 1 files named 005 etc Simple really (once I've figured it out). ...
42800 wmhalsdorf Send Email Apr 10, 2012
8:32 pm
... CLS GLOBAL I DIM A$ DIM HowMany DIM FileSpec$ DIM szDelayPrintOfGroup$ FileSpec$ = "000.txt" $REMS PRINT SET D$[10] "004", "001", "001", "005", "002", ...
42801 David
yajeed2000 Send Email
Apr 11, 2012
8:16 am
... Thanks Wayne much appreciated. David....
42802 David
yajeed2000 Send Email
Apr 11, 2012
6:56 pm
How can results be returned from functions such as this example? DIM DYNAMIC Buf$ [10] Buf$[0] = "Zero" Buf$[1] = "One" Buf$[2] = "Two" Buf$[5] = "Five" CALL...
42803 mrbcx Send Email Apr 16, 2012
11:10 pm
Pelles C version 7.00, Release Candidate #1, is now available for download: http://www.smorgasbordet.com/pellesc/download.htm Changes: ...
42804 John Spikowski
johnspikowski Send Email
Apr 17, 2012
12:12 am
... Thanks Kevin for the links. FWIW: Version 7 seems to work fine under Wine. (limited testing in IDE)...
42805 David
yajeed2000 Send Email
Apr 21, 2012
9:53 am
Hello, Is there an example I can use (editdemo does not compile without errors) that I can use to sent PRINT messages to and that echo's keyboard entries? I...
42806 vmars316 Send Email Apr 21, 2012
5:52 pm
Greets, Can I conclude that bcx can use Pelles-C , and not only gcc? Thanks...vm...
42807 mrbcx Send Email Apr 21, 2012
6:00 pm
Greetings and welcome. Yes - Pelles-C works GREAT with BCX. I keep several compilers installed and generally use batch files to compile my BCX apps. Pelles...
42808 vmars316 Send Email Apr 21, 2012
7:42 pm
Greetings, I normally use Pelles-C, llc is new to me. I downloaded http://www.cs.virginia.edu/~lcc-win32/ . I need some help to know where to install stuff. ...
42809 vmars316 Send Email Apr 22, 2012
12:35 am
Ah, nevermind, I found the "BCX Getting Started Guide"....
42810 Ian Casey
ian_casey03 Send Email
Apr 22, 2012
4:04 pm
This will only work for languages that use characters 0-255 LanguageDemoASCII.zip <http://iancaseycode.99k.org/programs/LanguageDemoAscii.zip>. There is 1...
42811 vmars316 Send Email Apr 22, 2012
10:26 pm
Greets, I have installed BCX, and now i am "Building the BCX Runtime Libraries ", according to the "BCX Help Version 6.1.6". Help says: <<DO THIS FIRST From...
42812 Ian Casey
ian_casey03 Send Email
Apr 23, 2012
6:11 pm
I got the problem backwards, MessageBox on his computer displays "Ja" en "Nee" (Yes & No) in Dutch no matter what language he displays in my program. At least...
Messages 42783 - 42812 of 43454   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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