Moderator: 2ffat
rajesh wrote:I had Simply C++ Builder 6 Form Project , Even it is not loading in the version 10,3
denville wrote:Beware the t-str() - apparently it alters the underlying string!
denville wrote:
- Code: Select all
static char* C_STR( AnsiString s ) { return s.c_str(); }
static char* C_STR( AnsiString &s ) { return s.c_str(); }
denville wrote:
- Code: Select all
static char* C_STR( String s ) { return AnsiString(s).c_str(); }
denville wrote:One other thing to remember - unfortunately it is not possible to share the same form unit between CPB6 and later versions as the later ones add properties to the form that CPB does not then understand. Bit of a pity that.
Users browsing this forum: Google [Bot] and 17 guests