Hi Guidance, please, correct the wrong example in Appendix A: QSTRINGLIST, where is mistake in last line:
PRINT StringList.Build(0,StringList.Count-1,",")
Right code line is:
PRINT StringList.Build(0,StringList.ItemCount-1,",")
COUNT is not property of QStringList, but ITEMCOUNT yes. Thanx. Slavo |