当前位置:首页 » 软件开发
开发技术指南» 文章正文
    引言: 如果在文本框中输入简单的数学计算式:200+10
 

 

 ·窗体的close方法与hide方法...    »显示摘要«
    摘要: form1.close和form1.hide都能让用户看不见form1,但二者还是有些不同的,设计时可以注意以下方面: 1.close方法是关闭窗体,该窗体关闭后将不占系统资源.而hide方法是隐藏窗体,是将其窗体的visible属性设置为flase,系统并不释放其资源. 2.窗体隐藏后,用户不能与其交互,但从代码中依然能访问其中的控件.因此,需要经常显示的窗体应采用hide方法,......
    摘要: 托拽explore中的文件到vb.net的窗口 40star(原作) 关键字 wm_dropfiles vb.net 要让vb.net相应外部托拽来的文件,需处理wm_dropfiles消息。 private declare sub dragacceptfiles lib "shell32.dll" (byval hwnd as int32, ......


我已经解决了,以下是解决的类的详细信息:
如果在文本框中输入简单的数学计算式:200+100*290之类的计算式,如何计算出他们的值: using system; using system.codedom; using system.codedom.compiler; using microsoft.csharp; using system.text; using system.reflection; namespace adoguy {     /// <summary>     /// summary description for class1.     /// </summary>     public class evaluator     {         public evaluator(evaluatoritem[] items)         {             constructevaluator(items);         }         public evaluator(type returntype, string expression, string name)         {             evaluatoritem[] items = { new evaluatoritem(returntype, expression, name) };             constructevaluator(items);         }         public evaluator(evaluatoritem item)         {             evaluatoritem[] items = { item };             constructevaluator(items);  &nbs
...   下一页
 ·从app到application(csdn)    »显示摘要«
    摘要: vb6升级到vb.net,app变成了application 很多人不清楚这方面的变化,现在简单列举如下: imports system.reflection.assembly imports system.diagnostics.fileversioninfo ’app.path application.startuppath ’app.title getexe......
» 本期热门文章:

©2000-2007 All Rights Reserved. 最佳浏览:1024X768 MSIE