| | Dumb VB question Ben Erwin
| | | If using the constants OUTPUT_A, OUTPUT_B, OUTPUT_C instead of "012" ... how can you refer to multiple outputs in one command? "OUTPUT_AOUTPUT_BOUTPUT_C" certainly doesn't work, and neither do "OUTPUT_A,OUTPUT_B,OUTPUT_C" or "OUTPUT_A OUTPUT_B (...) (24 years ago, 21-Jun-00, to lugnet.robotics.rcx)
| | | | | | | | Re: Dumb VB question Michael Gasperi
| | | | | "Ben Erwin" <ben@alum.mit.edu> wrote in message news:FwHKu9.2I1@lugnet.com... (...) how (...) "OUTPUT_AOUTPUT_BOUTPUT_C" (...) This is just a guess, but how about OUTPUT_A + OUTPUT_B + OUTPUT_C . (24 years ago, 21-Jun-00, to lugnet.robotics.rcx)
| | | | | | | | | | Re: Dumb VB question Reinis Kanders
| | | | | In manual it says that input has to be string, then activeX control parses it and searches for numbers 0,1,2. So perhaps you should define those constants explicitly as strings instead of using variants. "Ben Erwin" <ben@alum.mit.edu> wrote in (...) (24 years ago, 21-Jun-00, to lugnet.robotics.rcx)
| | | | | | |