最近做一个抓取,通过cefpost提交参数,返回下载文件,需要判断文件是否下载完成。解决:重写IDownloadHandler接口usingCefSharp;usingSystem;usingSystem.Collections.Generic;usingSystem.Diagnostics;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceCefSharpSimpleDemo{classDownloadHan...
privatestaticstringGetProductCode(){System.TypeoType=System.Type.GetTypeFromProgID("WindowsInstaller.Installer");Installerinst=System.Activator.CreateInstance(oType)asInstaller;DatabaseDB=inst.OpenDatabase("C:\\Users\\user\\Desktop\\S...
winform开发的应用,安装在win10上一直报这个错因为是.netframework4.0开发,win10也无法单独安装期间各种尝试,最后发现我电脑win7的.netFramework版本是4.8,有了这个突破口,将这台win10升级.netFramework4.8成功运行。
IPAddressip=IPAddress.Parse("192.168.0.10");IPEndPointiport=newIPEndPoint(ip,9100);//9100为打印机指定端口Socketsoc=newSocket(AddressFamily.InterNetwork,SocketType.Stream,ProtocolType.Tcp);soc.Connect(iport);stringcmdLine="\x1b%-12345...
最近开发遇到一个问题,一个比较老旧Website网站项目,在VS2019中打开时,一个比较棘手的问题是数据集打开报错,发现可以在Web应用程序项目打开,索性将其升为Web应用程序项目。步骤如下:1.创建一个空的Web应用程序项目2.将网站项目文件全部拷贝至Web应用程序项目排除掉bin目录,添加引用bin目录下的dll文件3.选择菜单栏中的“项目”,选择“转换为web应用程序”等待转换完成4.最后一步,最重要一步网站项目由于是直接建立网站,没有命名空间。aspx页面...
c#asp.net在sql数据库中动态插入列、删除列://必须的命名空间usingSystem;usingSystem.Data;usingSystem.Data.SqlClient;//插入列stringtabName="table1";//欲插入列的表名stringcolName="col6";//插入列的列名stringsqlStr="altertable"+tabName+"add"+colName+"varchar(10)null";//实例化sql连接SqlConn...
c#asp.net动态创建sql数据库表://必须的命名空间usingSystem;usingSystem.Data;usingSystem.Data.SqlClient;//中间常规内容略stringtabName="table1";//声明要创建的表名,你也可以改为从textbox中获取;stringsqlStr="createtable";sqlStr+=tabName+"(";sqlStr+="col0numericidentity(1,1)primarykey,";//col0为...
publicstaticvoidWeekDayID2WeekDayString(LiteralL){string[]Day=newstring[]{"星期日","星期一","星期二","星期三","星期四","星期五","星期六"};L.Text=DateTime.Now.ToString("yyyy年MM月dd日")+""+Day[Convert.ToInt16(DateTime.Now.DayOfWeek)].ToString();}
privatevoidbutton1_Click(objectsender,EventArgse){getExcelOneCellComment(@"D:\aa.xls",1,1);}///<summary>///获取指定文件的指定单元格内容批注///</summary>///<paramname="fileName">文件路径</param>///<...