求教:一列中输入汉字,另一列中自动生成拼音码怎么实现?
http://www.foxtable.com/webhelp/topics/0625.htm、
http://www.foxtable.com/webhelp/topics/3279.htm
If e.DataCol.Name = "列1" Then
If e.DataRow.IsNull("列1") Then
e.DataRow("列2") = Nothing
Else
e.DataRow("列2") = PY.GetPY(e.DataRow("列1"))
End If
End If
老师:输入汉字,得到了完整的拼音,又怎么得到拼音的首拼大写呢。