Search the web
Sign In
New User? Sign Up
mmtut · Multi-Media Tutorials
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 220 - 249 of 421   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
220
Hello, I was wondering if anyone knows and could explain the do's and don'ts of using Functions and Subs? For example: CALL DoThis(A$,index1,index2) SUB...
John Jacques
johnj_01201
Offline Send Email
Aug 3, 2002
7:02 pm
221
John, My Aunt died last Sunday evening. The funeral was Wednesday evening. I no longer have power of attorney and am not yet the executor of her estate....
David Garner
dpgarner
Offline Send Email
Aug 3, 2002
9:30 pm
222
Hello Dave, I wish it did help, but I have to say no. Well, the one part about looking at the C source that BCX makes does, but I never EVER used subs and...
John Jacques
johnj_01201
Offline Send Email
Aug 3, 2002
10:22 pm
223
// User Global Variables static char A[2048]; static int d; static int e; // Standard Prototypes char*...
John Jacques
johnj_01201
Offline Send Email
Aug 3, 2002
10:33 pm
224
WOW Dave, I just found out that the previous example CHANGES depending on what variable names are used! YES YES YES!!!!! Thanks Dave! If I never looked at the...
John Jacques
johnj_01201
Offline Send Email
Aug 3, 2002
10:52 pm
225
John, ... and a and b ... Makes sense so far. Anything confuse you here? David Garner...
David Garner
dpgarner
Offline Send Email
Aug 3, 2002
10:59 pm
226
So, static means GLOBAL, but also tells the linker ONLY for this .obj file to use? subpopcorn(A,d,e); // call to SUB passing pointer to A$ So, what does this...
John Jacques
johnj_01201
Offline Send Email
Aug 3, 2002
11:12 pm
227
John, ... file to use? Yes. ... If the variable is and array, then the name is a pointer to the first element. It could have been written &A[0]. ... and a and...
David Garner
dpgarner
Offline Send Email
Aug 3, 2002
11:30 pm
228
Thanks Dave, here is 1 of the 3 last questions I have: CALL SUB Foo(A$) END SUB Foo(A$) END SUB The variable A$ cannot (is not suppose to be) used in both...
John Jacques
johnj_01201
Offline Send Email
Aug 3, 2002
11:49 pm
229
John, Gona make me work aren't you? ... Given this program : ' foo.bas dim A$ A$ = "test" Foo(A$) END SUB Foo(A$) ' test passing of string to routine print A$ ...
David Garner
dpgarner
Offline Send Email
Aug 4, 2002
12:32 am
230
Thanks Dave, I have searched the BCX archives for the messages that I previously posted and the responses. After reading them this 2nd time I realised that I...
John Jacques
johnj_01201
Offline Send Email
Aug 4, 2002
1:24 am
231
Hello, thought we could make a list of "rules" or whatever to add into a documentation for others? 1) Do not use a variable name in your program if that name...
John Jacques
johnj_01201
Offline Send Email
Aug 4, 2002
1:54 am
232
John, I think your understanding is the same as mine. At least I don't see anything below to correct. David Garner ... I ... going ... string$ ... THIS ... it...
David Garner
dpgarner
Offline Send Email
Aug 4, 2002
1:55 am
233
John, ... inside a ... Also ... local ... Given this program : ' foo.bas dim A$ A$ = "test" Foo() print A$ END SUB Foo() ' test of local vs global string...
David Garner
dpgarner
Offline Send Email
Aug 4, 2002
2:10 am
234
Thanks, this is how I use to program in C: char buffer[1024]; strcpy(buffer,"HELLO"); printf("%s",buffer); I was wondering if "buffer" in the strcpy line was a...
John Jacques
johnj_01201
Offline Send Email
Aug 4, 2002
2:18 am
235
I hate to keep bugging you Dave, but (last question) Does the variable declared in a sub/function get automatically freed when the sub/function closes or if...
John Jacques
johnj_01201
Offline Send Email
Aug 4, 2002
2:21 am
236
I have nothing to say about subs & functions, but thought I'd stop by and say Hello. Jim...
omnixus
Offline Send Email
Aug 4, 2002
2:28 am
237
i have nothing to say about the subs & funtions or even the Hello ;-) but i stop by to ask where everyone is on the tutorial stuff. us non-programmers would...
DrX
drx_rxp2000
Offline Send Email
Aug 4, 2002
2:40 am
238
Hi all, Kind of looks like we're up to Subs & Functions today. David Garner ... http://docs.yahoo.com/info/terms/...
David Garner
dpgarner
Offline Send Email
Aug 4, 2002
2:47 am
239
John, ... No it's not. ;) But, it's the last one I'm going to answer tonight - I'm off to bed. ... when ... 100 ... If the variable is declared in the...
David Garner
dpgarner
Offline Send Email
Aug 4, 2002
2:54 am
240
http://www.theregister.co.uk/content/4/26517.html...
DrX
drx_rxp2000
Offline Send Email
Aug 4, 2002
3:08 pm
241
That is bad, but I've already knew this. When you install the MSDN kit it tells you this and not to run, use, or accept it when you are not on the M$ web site ...
John Jacques
johnj_01201
Offline Send Email
Aug 4, 2002
3:57 pm
242
All of this is true, but what stoped m$ from doing this in the past was the legality of it all. now, when you install SP3, they make it (in their twisted...
DrX
drx_rxp2000
Offline Send Email
Aug 4, 2002
4:33 pm
243
Right, but if the company who does the actual hacking causes the end user to loose profit then the end user can sue for damages and the hacking is then ...
John Jacques
johnj_01201
Offline Send Email
Aug 4, 2002
4:40 pm
244
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the mmtut group. File : /Helps and...
mmtut@yahoogroups.com
Send Email
Aug 4, 2002
5:43 pm
245
Hello, I just uploaded a file that I use all the time. I just re-wrote the entire thing and this is it. The top portion is enclosed by the $COMMENT tags. If...
John Jacques
johnj_01201
Offline Send Email
Aug 4, 2002
7:03 pm
246
so, i'm sitting here scratching my head wondering what the heck i'm doing wrong. :-\ when it occured to me that this isn't just a problem with the program....
DrX
drx_rxp2000
Offline Send Email
Aug 4, 2002
8:24 pm
247
Dr.X, In the EZ-GUI directory in the BCX forum, I split the huge example Kevin created (the one in the BCX help file) into its component parts and made an...
David Garner
dpgarner
Offline Send Email
Aug 4, 2002
9:13 pm
248
Dr.X, I think this might be what you're seeking. It's in the BCX forum EZGUI area as well. David Garner...
David Garner
dpgarner
Offline Send Email
Aug 4, 2002
9:18 pm
249
David, ... if _i_ create it, it will be all wrong. ... i have that. i think it's a work of art. i use it to create the form then i just edit the heck out of...
DrX
drx_rxp2000
Offline Send Email
Aug 5, 2002
1:46 pm
Messages 220 - 249 of 421   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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