Hi, DIM a as integer,b as integer,c as integer is equivalent to DIM a as integer DIM b as integer DIM c as integer
DIM a,b,c as integer is equivalent to DIM a as variant DIM b as variant DIM c as integer Paul -----Original Message----- From: HouseDad [mailto:[EMAIL PROTECTED] Sent: Friday, July 16, 2004 8:33 AM To: [EMAIL PROTECTED] Subject: [vbhelp] Re: new line character Oh I got so frustrated when I first loaded VB and started a program and couldn't figure out how to get line feeds in the text box. I flipped through three or four books before I finally found it! If I had read through more than one of those books I probably wouldn't have so many questions for the group though. I know that we have discussed issues of scope and such here, but I am not seeing behavior in my programs that correlate with what I think I know. The first issue is trying to use .BAS modules instead of copying and pasting routines from program to program. They never seem to work that way. I think it might be because of argument types, which also could be the culprit causing my other issues. Shouldn't "DIM a,b,c as integer" be the exact equivalent to DIM a as integer DIM b as integer DIM c as integer ? I recently had a case where I had to do this for it to function properly. I will do some more reading before I bother you all with scope again. [C] '// ======================================================= Rules : http://ReliableAnswers.com/List/Rules.asp Home : http://groups.yahoo.com/group/vbHelp/ ======================================================= Post : [EMAIL PROTECTED] Join : [EMAIL PROTECTED] Leave : [EMAIL PROTECTED] '// ======================================================= Yahoo! Groups Links --- Incoming mail is certified Virus Free(1). Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.719 / Virus Database: 475 - Release Date: 7/12/2004 ------------------------ Yahoo! Groups Sponsor --------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/k7folB/TM --------------------------------------------------------------------~-> '// ======================================================= Rules : http://ReliableAnswers.com/List/Rules.asp Home : http://groups.yahoo.com/group/vbHelp/ ======================================================= Post : [EMAIL PROTECTED] Join : [EMAIL PROTECTED] Leave : [EMAIL PROTECTED] '// ======================================================= Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/vbhelp/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
