Zuo Baoquan

Results 5 comments of Zuo Baoquan

It is not really a floating window, the idea is just a try to use whitespace and reduce distance between object inspector and components. Now I switch between Left and...

ok. let's forget about widestring. although there are potential solutions, I can live with that. UTF8String is more useful. Your idea is very brilliant :-)

btw. depends on your idea, when parsing a UTF8Stream, will be underlying data UTF8String or a managed memory buffer? in former case, will be the underlying utf8string always freed when...

Just an idea, an option to specify default string encoding might be helpful. e.g. when read/write json with utf-8 encoding (widely used), object properties maybe just string, in this case,...

I'm with you. I think DOM parser is fine. What I suggested is actually more like a json string builder. e.g. writer := TJsonWriter.Create(stream, TEncoding.UTF8); // sample writer.StartObject; writer.WritePropertyName('name'); writer.WriteValue('Paul');...