getAt

1  从编辑框将字符串一个字符一个字符的取进数组 

     使用cstring 的 getAt()函数。


15.   for(inti=0; i<64 ; i++) 
16. { 
17.   if(i <= (m_strTx.GetLength()-1) ) 
18. ucTxBuffer[i] = m_strTx.GetAt(i); 
19.   else 
20. ucTxBuffer[i] = 0; 

21. } 



你可能感兴趣的:(getAt)