Hi [C], > 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'll echo the others' "no, it's not" - but follow up with a way to still have shorter lines in your code. I almost NEVER use full names for base variable types (string, integer, long, double,...) anymore. I use the 'shorthand' type notation in order to group variables together on the same line and still have it readable: ! = single # = double & = long $ = string @ = currency % = integer Here's your a, b, c as integer: Dim a%, b%, c% And here's a as string, b as long, c as integer and d as currency: Dim a$, b&, c%, d@ Regards, Shawn K. Hall http://ReliableAnswers.com/ '// ======================================================== This employee should go far - and the sooner he starts, the better. ------------------------ Yahoo! Groups Sponsor --------------------~--> Yahoo! Domains - Claim yours for only $14.70 http://us.click.yahoo.com/Z1wmxD/DREIAA/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/
