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
How can I do this? I know I could make a sort of "switcher" function using select case to do this, but then I have to have all the functions listed in the...
... Here's a rewrite of what I think you want to do along with an additional way. $typedef char * (__cdecl *STF_TYPE)(char *) SET pfStringFunctions[] AS...
Mr. Halsdorf - thank you! Now I shall have to understand what is happening. I shall need to add parameters to the "do" functions too. I think, maybe, in...
I think I understand something. (__cdecl *STF_TYPE2) --> is the function name (char*) or (char*, char*) --> are the parameters $typedef char* --> is where we...
This seems funny to me. ... (I shouldn't need to write a function for reverse$ when BCX already has it...) $typedef char * (__cdecl *STF_TYPE)(char *) dim...
Since BCX is compiled and not interupted, the c code will only include commands that you have used. I suggest you make a dummy function or sub that uses...
Well, I found this in BCX help: BCX is able to correctly translate a parameter formed from a call to a FUNCTION or SUB as in this example. SUB WalkDir(szPath$,...
Okay, I understand that. That makes sense to me - that it would have to be included in the BCX code in order for it to appear in C. We are, after all, sort...
... Close, you missed the needed function to make it work. Compare the two. $typedef char * (__cdecl *STF_TYPE)(char *) dim sentence$ sentence$ = "This bud's...
Uh, that gives me a compile error: test1.c(240): warning #2154: Unreachable code. test1.c(265): error #2140: Type error in argument 1 to 'strlen'; expected...
I got it to work in Pelles by using what Wayne gave us. Created my own farproc command with typedef. If you use commands other than reverse you need to make...
Kevin & Doyle: I have a copy of BCXIDE on a thumbdrive. It works OK except that when it runs, it always looks for the BCX directory on my PC's hard drive, not...
Mr. Magic, that works like a charm. It looks like we are declaring a type like Mr. Halsdorf offered us, then, instead of including every bcx function...
... Hi Don: From the thumbdrive folder holding the BCX .exe type bc.exe -r When you want to change it back, type bc.exe from whatever folder is holding the...
... dim a$[15][10] dynamic b$[20] print sizeof(a$)/sizeof(a$[0]) print sizeof(a$)/sizeof(a$[0][0]) dim i i = 0 while b[i++] : wend print i-1 redim preserve...
Hey, you all, the source of the help file, are more than helpful! If I am able to add anything to BCX, if in the least, by finding little things like this,...
... See : UBOUND will return the largest value of an array subscript. This only works with single dimensioned, static arrays. Also, is there no way to create...
Yes, I was looking at UPBOUND - but I don't need the largest value of any of the elements - I just need the total number of elements. Am I misunderstanding...
Okay, I already know about redim. Consider this - I want to run a string through a split command, but I don't know beforehand how many elements the split will...
... I feel your pain with languages that require pre-dimensioning. I used SPLITA in the word count code challenge and it created an array of every word in the...