摘要:
IntroductionI was struggling to find the solution to bind rdlc dynamically to reportviewer .We had a scenario were we migrated our application from .N... 阅读全文
摘要:
或者是you must restart adb and eclipse这类错误原因:一般是豌豆荚之类的软件影响的,所以,以后要慎用了。解决方案:先找一下在sdk\tools目录下是否有hprof-conv.exe,如果有将tools下面的所有文件都复制到platform-tools即可。如果没有就下... 阅读全文
摘要:
style文件中的Theme.AppCompat.Light报错,Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light',最后找到原因,是因为And... 阅读全文
摘要:
我们知道DataContext实现了IDisposable接口。在C#中,凡是实现了IDisposable接口的类,都推荐的使用using语句。如下:using (DataContext db = new DataContext(fileOrServerOrConnection)){ //.... 阅读全文