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
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,...
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 ...
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...
... 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...
... 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@...
Nov 2, 2001 2:09 am
... Haven't actually tried that Doyle but it certainly seems plausible....
... 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...
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...
... 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...
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 ...
... 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...
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@...
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@...
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...
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...
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...
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...
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...
... 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...
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...
... 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...
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...
... 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...
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...