Skip to search.

(*) Scheduled Maintenance: We are undertaking some essential, but extensive maintenance to improve Yahoo! Calendar. Your Group Calendar is being migrated to a much improved version of Yahoo! Calendar. During the maintenance period, you may not have access to your Groups Calendar. We sincerely apologize for this inconvenience. Your Groups Calendar is in great shape and we are working to have it available again as quickly as possible - Yahoo! Groups & Yahoo! Calendar Team

BCX · The Open Source BASIC to C Translator

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.
Click here for the latest updates on Groups Message search

Messages

  Messages Help
Advanced
Messages 3358 - 3387 of 42818   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3358 Theo Hollenberg
thollenberg Offline Send Email
Nov 1, 2001
8:25 am
That might be because not only you issued a faulty URL but also you point to a commercial product which, in my opinion, has nothing to do with the idea of BCX,...
3359 Robert Wishlaw
rwishlaw Offline Send Email
Nov 1, 2001
9:01 am
Kevin: Thanks for BCX271. A suggestion. It would be handy if the GUI code could be expanded to handle the optional properties and styles available for ...
3360 g68_se@...
g68_se Offline Send Email
Nov 1, 2001
11:04 am
I like the suggestion Robert. Button-styles etc. ... 40, 15 ) ... 40, 15, BS_BITMAP etc...) ... now, and ... default...
3361 Doyle Whisenant
mechanicjenn Offline Send Email
Nov 1, 2001
11:13 am
... Yes, this is amazing Kevin! Thanks! ... I agree, this would be nice. :) -- Doyle Whisenant mechanic@... http://www.mechanic.0catch.com/...
3362 GSAC3@...
gsac3 Offline Send Email
Nov 1, 2001
11:31 pm
To DL: The WEDIT example included with DS 1.1 works fine, but when I try to use DS 1.1 with a simple dialog file created with WEDITRES, the C compile gives the...
3363 dl
dl_programmer Offline Send Email
Nov 2, 2001
12:09 am
... to ... I guess I added "wedit.h" manually in the .dlg file and didn't catch this. The problem is weditres doesn't automatically insert the header file...
3364 GSAC3@...
gsac3 Offline Send Email
Nov 2, 2001
12:20 am
... Thanks a-bunch DL. Will be looking forward for you'r update....
3365 Kevin Diggins
kdiggins@... Send Email
Nov 2, 2001
12:28 am
... Until then, this might help a little bit ... SUB SET_WINDOW_STYLE (hWnd AS HWND, Style) SetWindowLong(hWnd,GWL_STYLE,Style) END SUB...
3366 Doyle Whisenant
mechanicjenn Offline Send Email
Nov 2, 2001
2:00 am
... Thanks Kevin. Just wondering if there is a way to subtract a style? Maybe using "AND" as below. If we have: WS_HSCROLL OR WS_VISIBLE OR WS_VSCROLL and we...
3367 Kevin Diggins
kdiggins@... Send Email
Nov 2, 2001
2:09 am
... Haven't actually tried that Doyle but it certainly seems plausible....
3368 Doyle Whisenant
mechanicjenn Offline Send Email
Nov 2, 2001
4:02 am
... OK, I tried it and here are the results: FPRINT Outfile, str$(WS_HSCROLL OR WS_VISIBLE OR WS_VSCROLL) FPRINT Outfile, str$(WS_HSCROLL OR WS_VISIBLE) FPRINT...
3369 David Garner
dpgarner Offline Send Email
Nov 2, 2001
4:41 am
Doyle, Just a thought. At the risk of stating the obvious, if you would set the bits with OR, you need to ones complement and then AND to clear the bits. In C...
3370 Doyle Whisenant
mechanicjenn Offline Send Email
Nov 2, 2001
2:07 pm
... I forgot about complement! Jeezz... it's been a long time since I studied this stuff. ... True. I have seen this done (removing styles) in some C code...
3371 Robert Wishlaw
rwishlaw Offline Send Email
Nov 3, 2001
12:54 am
I've just had a problem with LCCWin32 which caused the linker to complain that it couldn't find lcccrt0s.obj. I uninstalled then reinstalled LCC and the ...
3372 dl
dl_programmer Offline Send Email
Nov 3, 2001
1:19 am
... That just happened to me... I have no idea why it happened though, because lccw32 has been installed for months. I didn't uninstall or anything like that...
3373 studenti_99@...
studenti_99 Offline Send Email
Nov 3, 2001
10:31 am
Are there any options or switch to be setted? I can't properly compile neither version 2.68 neither 2.71 on my system: perhaps I need some help. Wich functions...
3374 Kevin Diggins
kdiggins@... Send Email
Nov 3, 2001
12:02 pm
... I've never experienced that problem. If you can identify a reproducible cause then it could be reported to Jacob Navia....
3375 Kevin Diggins
kdiggins@... Send Email
Nov 3, 2001
12:18 pm
... I use : lcc.exe -O bc.c lcclnk.exe -o bc.exe -subsystem console -s ... There are several that use optional arguments: off the top of my head, they...
3376 patkelly@...
pkelly987 Offline Send Email
Nov 3, 2001
12:57 pm
I had a similar problem when I installed PureBasic. PureBasic uses Lcclnk so it changes the lib path in the registry (HKEY_CURRENT_USER\Software\lcc\lcclnk) to...
3377 patkelly@...
pkelly987 Offline Send Email
Nov 3, 2001
1:02 pm
Make sure you have the latest version of Lcc-win32. Some older versions cannot compile BC.BAS. ... by...
3378 studenti_99@...
studenti_99 Offline Send Email
Nov 3, 2001
2:44 pm
Really I can't explain why this function takes 1 sec per 10k parsed: Function tmail (b$) dim a$ dim limit% dim count% dim i,j as long dim inizio% dim buona dim...
3379 John Jacques
johnj_01201 Offline Send Email
Nov 3, 2001
3:02 pm
Hello, this should help a little: Function isgood%(y$*1) dim i as integer function=0 i=asc(y$) if i >= 45 AND i <= 57 then function=1 : goto [endf] if i >= 64...
3380 David Garner
dpgarner Offline Send Email
Nov 3, 2001
3:11 pm
John, Your function is faster, but probably does not do what you think it does. Note: function=0 translates to: return 0; so all code after that point is...
3381 John Jacques
johnj_01201 Offline Send Email
Nov 3, 2001
3:15 pm
Ha, nope I didn't know that. Thanks! John...
3382 Kevin Diggins
mrbcx Offline Send Email
Nov 3, 2001
3:54 pm
... John, Not that this function will help our italian student very much but I thought it worth noting that YOUR function would perhaps be better written in...
3383 David Garner
dpgarner Offline Send Email
Nov 3, 2001
4:02 pm
Kevin, I was thinking that also (and also thinking it was probably not going to help the original poster a lot. Small question: Is the function=0 implied some...
3384 Kevin Diggins
mrbcx Offline Send Email
Nov 3, 2001
6:50 pm
... Short Answer: Yes FUNCTION = 123 EXIT FUNCTION ' <<< results in FUNCTION = 0 If you need a bivalent ( value or NOT value ) then best to use a construct...
3385 dl
dl_programmer Offline Send Email
Nov 3, 2001
7:44 pm
There probabaly isn't any major speed increases in here... Also for the flag, I suppose you can use XOR to invert it from 0 to 1. flag% = flag% XOR 1 FUNCTION...
3386 Peter Nilsson
nilpets Offline Send Email
Nov 4, 2001
8:05 am
... Unlike BASIC, C does not store the length of a string in advance. This means when BCX translates your code into C, for each len(x$) it generates a...
3387 studenti_99@...
studenti_99 Offline Send Email
Nov 4, 2001
10:31 am
Peter you are really the Guru: the speed improvment is incredible in the code. Now it can scan more than 200 000 characters in a second really incredible. So...
Messages 3358 - 3387 of 42818   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