摘要:
=============================== VB Code ===============================Public Function SaveFile(FileName As Variant, strFileBody As Variant) As Boolean Dim ADO_Stream As Object Set ADO_Stream = Create... 阅读全文
摘要:
This code sample shows how to convert UTF-8 byte sequences (aka code page 65001) into unicode strings and back again in Visual Basic 6 instead of .Net like most of the examples I could find. What's mo... 阅读全文
摘要:
范例 select cust_id,SUM(pay1) AS pay11 from pay_list GROUP BY pay1 WITH CUBE go 以上代码导致错误因为在SUM汇总函数所指定的字段名称pay1与CUBE关键词一并使用所导致发生的错误消息 修改 SELECT cust_id,SUM(pay1) as pay11 FROM pay_list GROUP BY cust_id W... 阅读全文