上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页
摘要: 來源:http://hi.baidu.com/mmcmaiweibiao/blog/item/6815185069b301878d543003.html“又是一年毕业时 ”,看到一批批学子离开人生的象牙塔,走上各自的工作岗位;想想自己也曾经意气风发、踌躇满志,不觉感叹万千…… 本文是自己工作6年的经历沉淀或者经验提炼,希望对所有的软件工程师们有所帮助,早日实现自己的人生目标。本文主要是关于软件开发人员如何提高自己的软件专业技术方面的具体建议,前面几点旨在确定大的方向,算是废话吧。 一、分享第一条经验:“学历代表过去、能力代表现在、学习力代表未来。” 其实这是一个来自国外教育领域的一个研究结果。 阅读全文
posted @ 2011-08-15 11:27 Yaoquan.Luo 阅读(186) 评论(0) 推荐(0)
摘要: 來源:http://www.devdiv.com/home.php?mod=space&uid=26317&do=blog&id=2357 总结了四种方式: 1. 使用WebBrowser控件 2. 使用微软为Wince补充的AnimationControl控件 3. 使用网络上流传的ImageCtrl.dll 4. 仿照Win32代码用C#解码GIF播放 1.使用WebBrowser控件 webBrowser = newSystem.Windows.Forms.WebBrowser(); webBrowser.Url =new System.Uri("gif 阅读全文
posted @ 2011-08-13 16:01 Yaoquan.Luo 阅读(2676) 评论(0) 推荐(0)
摘要: 來源:http://hi.baidu.com/wuxian803/blog/item/759ef30836b313a52fddd467.html C#正则表达式匹配基础 只能输入数字:"^[0-9]*$"。 只能输入n位的数字:"^\d{n}$"。 只能输入至少n位的数字:"^\d{n,}$"。 只能输入m~n位的数字:。"^\d{m,n}$" 只能输入零和非零开头的数字:"^(0|[1-9][0-9]*)$"。 只能输入有两位小数的正实数:"^[0-9]+(.[0-9]{2})?$& 阅读全文
posted @ 2011-08-13 15:57 Yaoquan.Luo 阅读(521) 评论(0) 推荐(0)
摘要: 正试图在 os 加载程序锁内执行托管代码。不要尝试在 DllMain 或映像初始化函数内运行托管代码,这样做会导致应用程序挂起。 .NET2.0中增加了42种非常强大的调试助手(MDA,Loaderlock 是其中之一。Loaderlock检测在一个拥有操作系统loader lock的线程上(如上例的video的运行线程)运行托管代码的情况。这样做有可能会引起死锁,并且有可能在操作系统加载器初始化DLL前被使用。虽然 这样做很有必要,但在进行开发调试的时候,实在太麻烦 这是由于正在加载特定资源:例如换肤控件时 办法一 把vs2005菜单的 调试->异常->Managed Debug 阅读全文
posted @ 2011-08-12 18:12 Yaoquan.Luo 阅读(329) 评论(0) 推荐(0)
摘要: Solution from:http://www.devexpress.com/Support/Center/KB/p/A2934.aspx Basically, you should handle the GridView.DoubleClick, get the mouse cursor position, and pass it to the CalcHitInfo method to check whether the mouse points to a grid row, and not, for example, to column headers or footer. Final 阅读全文
posted @ 2011-08-12 14:53 Yaoquan.Luo 阅读(1929) 评论(0) 推荐(0)
摘要: from:http://www.devexpress.com/Support/Center/p/CQ55609.aspx Is it possible to determine the default focused cell backcolor at run time if we havent overriden it already.Unless I explicitly set the focusedcell backcolor, it shows as zero. But I want to know the actual "default" color that 阅读全文
posted @ 2011-08-12 14:03 Yaoquan.Luo 阅读(286) 评论(0) 推荐(0)
摘要: Did you know... You can use '*' to Expand All and '/' to Collapse All in the ToolboxThese are specific to the Toolbox. Pressing * (Shift+8 on ENU keyboards) will expand everything in the Toolbox and pressing / (note it is just the / key, and not Shift+/ as that's a ?) will collap 阅读全文
posted @ 2011-08-12 10:19 Yaoquan.Luo 阅读(123) 评论(0) 推荐(0)
摘要: FROM:http://www.cnblogs.com/tianzhiliang/archive/2011/03/07/1974921.html 计算机中经常会有多个任务同时运行,其中总有一些看起来更紧急,更需要优先完成。比如我们现在有两个任务,一个任务是下载一部电影,另一个任务是检 测用户的输入。显然及时响应用户操作应具有更高的优先级,因为我们不能让用户等得太久。线程的优先级可以通过Thread类Priority属性设 置,Priority属性是一个ThreadPriority型枚举,列举了5个优先等级:AboveNormal、BelowNormal、 Highest、Lowest、Norm 阅读全文
posted @ 2011-08-09 10:30 Yaoquan.Luo 阅读(504) 评论(1) 推荐(0)
摘要: 暂停和继续线程.NET Framework 4 其他版本 Visual Studio 2008 Visual Studio 2005 同步线程活动的最常用方法是锁定和释放线程,或者锁定对象或代码区域。 有关这些锁定和阻止机制的更多信息,请参见 同步基元概述。 还可以让线程将自身置于休眠状态。 当线程被阻止或休眠时,可以使用 ThreadInterruptedException 使它们摆脱等待状态。 Thread.Sleep 方法--------------------------------------------------------------------------------调用 T 阅读全文
posted @ 2011-08-08 15:56 Yaoquan.Luo 阅读(730) 评论(0) 推荐(0)
摘要: 条件 case s.××× when 'A' then (case when S.×× is null then '' else '' end) when 'B' then( case when S.×× is null then '' else '' end) when 'C' then( case when S.×× is null then '' else ' 阅读全文
posted @ 2011-08-05 16:54 Yaoquan.Luo 阅读(2517) 评论(0) 推荐(0)
摘要: 很久以来,FoxPro被众多迷人的产品掩盖了光芒,但直到现在它仍然是市场中用于完成数据事务的最佳工具。随着9.0版本中引入新的增强功能,它还没有走上很快过时的道路。 微软的FoxPro小组准备在2004年底发布最新版FoxPro。这条消息使某些人感到很惊讶,因为我们经常可以听到一些无知的人问“FoxPro? 它还存在啊?”。但是在FoxPro社团中下一版本的FoxPro引起了很大的骚动。新版中将包含一个更快的本地数据引擎,支持更多的数据类型,SQL语 句执行中更大的一致性,一个完全重新设计的可扩展报表编写器,以及一系列效率和功能增强特性。 目前,一些应用程序仍然使用 Visual FoxPro 阅读全文
posted @ 2011-08-04 11:22 Yaoquan.Luo 阅读(630) 评论(0) 推荐(0)
摘要: 本系列文章导航LINQ to SQL语句(1)之WhereLINQ to SQL语句(2)之Select/DistinctLINQ to SQL语句(3)之Count/Sum/Min/Max/AvgLINQ to SQL语句(4)之JoinLINQ to SQL语句(5)之Order ByLINQ to SQL语句(6)之Group By/HavingLINQ to SQL语句(7)之Exists/In/Any/All/ContainsLINQ to SQL语句(8)之Concat/Union/Intersect/ExceptLINQ to SQL语句(9)之Top/Bottom和Paging 阅读全文
posted @ 2011-08-04 09:26 Yaoquan.Luo 阅读(166) 评论(0) 推荐(0)
摘要: from: http://www.devexpress.com/Support/Center/p/B191028.aspxHi,I have a Grid, on which a user can change certain fields, like on a right click they can increase a counter on the row by one (just changes a field by + 1, nothing else). Now when the user does this, the RowHandle seems to increment by 阅读全文
posted @ 2011-08-02 18:13 Yaoquan.Luo 阅读(304) 评论(0) 推荐(0)
摘要: public void SetWindowRegion() { System.Drawing.Drawing2D.GraphicsPath FormPath; FormPath = new System.Drawing.Drawing2D.GraphicsPath(); Rectangle rect=new Rectangle(0,22,this.Width,this.Height-22);//this.Left-10,this.Top-10,this.Width-10,this.Height-10); FormPath = GetRoundedRectPath(rect, 30); this 阅读全文
posted @ 2011-08-02 11:12 Yaoquan.Luo 阅读(274) 评论(0) 推荐(0)
摘要: When i use DevExpress controls for WPF-load time of the window on which they are declared-increases. But on second access-it loads fast. Isnt there a way to preload all of needed dll/themes on program startup (let it took 5-10 secs!), but load them fast in overall program? I've searched a bit, f 阅读全文
posted @ 2011-07-30 12:32 Yaoquan.Luo 阅读(1021) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页