visited 13 states (5.77%)
Create your own visited map of The World or Triposo world travel guide for Android

2012-04-17

BCB AnsiString and Char type transformation

From AnsiString to char

AnsiString s1 = "data";
char *c1;
c1 = s1.c_str();

From char to AnsiString

char *c1 = "data";
AnsiString s1;
s1 = StrPas(c1);

這些也是同標籤文章 :

沒有留言: