word 2016中修改Caption的默认样式



Word2016中,若以Referrence-》insert caption插入图片等信息,插入的文字可能不是你想要的。解决办法如下:1、同时按键Ctrl + Alt + Shift + S,显示样式面板2、在样式面板中找到Caption,选择Modify3、在Modify Style窗口中调整样式即可。

word字体中几号字与多少磅的对应关系(转)

要写毕设了,规定中的字号在word 2016中没有了,word2016中只有pt。下面是字号与pt的对应情况:字号‘八号’对应磅值5字号‘七号’对应磅值5.5字号‘小六’对应磅值6.5字号‘六号’对应磅值7.5字号‘小五’对应磅值9字号‘五号’对应磅值10.5字号‘小四’对应磅值12字号‘四号’对应磅值14字号‘小三’对应磅值15字号‘三号’对应磅值16字号‘小二’对应磅值18字号‘二号’对应磅值...

Azure Service过大,导致不能直接发布,提示内存不足



    在编写Azure Service程序时,若用到很多静态文件,如图片、模型等,直接用Visual Studio发布时会提示内存错误。因为用VS提交时,Azure Service上传的文件不能超过600M,而实际中,你的静态文件远远小于600M却报错了。产生这个错误的原因可能多种。    a. 你的物理内存不够了。...

Azure Service、Azure Web、Azure Storm日志机制



    兵马未动,粮草先行。程序未果,日志先成。    在学习Azure平台,并用之进行项目托管的过程中,深深感叹程序日志记录的重要性。通过日志,可以知道程序运行情况,发现隐含bug;通过日志,可以挖掘产品的访问情况,进一步提升产品质量。云平台不能很好断点调试,所幸Azure提供了一套完整的日志解决方案。Service...

C# 获得客户端ip

参考:http://www.cnblogs.com/stay-foolish/archive/2012/05/01/2475071.html public static string GetHostAddress() {     string userHostAddress = System.W...

vs2013无法创建html,不能发布:The web publishing extension is not installed which is required to publish. You can install it from http://go.microsoft.com/fwlink/?LinkID=208120

环境:vs2013,同时在电脑上安装有vs2012、vs2015动作:可能是重新安装了Azure SKD之后,导致vs2013出错现象:无法添加、打开html文件。无法右键-》publish到azure平台网站,弹窗提示:The web publishing extension is not installed which is required to publish. You can insta...

tfs中获得的Azure storm代码不能提交

在一台机器上提交的代码,另外一台机器下载后,会发现很多问题。例如,Azure Storm便不能提交了,产生一下错误:Faild to generate spec file... storm The system cannot find the file specified at...

Error 2 The type 'Microsoft.WindowsAzure.Storage.Table.TableEntity' is defined in an assembly that is not referenced. You must add a reference to assembly ''

如标题所示,在c#编译过程中,产生以下错误信息:Error 2 The type '' is defined in an assembly that is not referenced. You must add ...

Program does not contain a static 'Main' method suitable for an entry point



用VS2013创建了一个项目,只是想在其他项目中引用此项目,因此就把main函数所在的文件给删除了,但是出现了一下的错误:Program does not contain a static 'Main' method suitable for an entry p...

Azure日志机制

参考文章:https://msdn.microsoft.com/en-us/magazine/ff714589.aspx