<off topic>

> char TempCode[5] = "0000\0";

Correct me if I'm wrong, but don't you assign arrays in this fashion?

// Assuming that the \0 was a NUL terminator
char TempCode[] = "0000";
// or
char TempCode[5] = {'0', '0', '0', '0', '\0'};

</off topic>

Sincerely,

Timothy D. Astle

People on Jolt cola write the funniest things.

                                     A-10 Obedience Guide,
                                     Kitty Hawk Studios





-- 
For information on using the ACCESS Developer Forums, or to unsubscribe, please 
see http://www.access-company.com/developers/forums/

Reply via email to