全部博文(1293)
发布时间:2015-03-13 18:31:30
最近在客户机器上出现了无法导出报表的问题,错误提示为: System.InvalidCastException: Unable to cast COM object of type 'Microsoft.Office.Interop.Excel.ApplicationClass' to interface type 'Microsoft.Office.Interop.Excel._Application'. This operation failed because the QueryInterface call on the COM .........【阅读全文】
发布时间:2015-03-11 14:00:16
修改DGV选中状态下的字体颜色等 修改DefaultCellStyle如下: ......【阅读全文】
发布时间:2015-03-10 16:47:47
定义string变量为str,内存流变量为ms,比特数组为bt1.字符串转比特数组(1)byte[] bt=System.Text.Encoding.Default.GetBytes("字符串");(2)byte[] bt=Convert.FromBase64String("字符串");2.字符串转流(1)MemoryStream ms=new MemoryStream(System.Text.Encoding.Default.GetBytes("字符串"));(2).........【阅读全文】
发布时间:2015-03-09 18:27:08
//获得当前窗体标题栏高度MessageBox.Show("当前窗体标题栏高度"+(this.Height - this.ClientRectangle.Height).ToString());ClientRectangle//获取表示控件的工作区的矩形//获取主显示器屏幕的尺寸(像素)MessageBox..........【阅读全文】