摘要: 今天测试.net 2.0的WebService,发现了一个大问题。就是无法获取参数,参数永远是null。当然了使用.net调用没有任何问题,web测试页也正常。不论是Delphi7还是java调用的结果的都是一样的,难道是.net 2.0的Bug?测试结果发现:值类型参数全部为缺省值,引用类型全部为nullWebService的代码如下: [WebMethod] public str... 阅读全文
posted @ 2006-04-27 10:01 Liren 阅读(3621) 评论(3) 推荐(0) 编辑
摘要: http://blogs.gotdotnet.com/netcfteam/ 阅读全文
posted @ 2006-03-27 09:38 Liren 阅读(434) 评论(0) 推荐(0) 编辑
摘要: RegisterHotKey class wrapper http://www.avocadosoftware.com/csblogs/dredge/articles/PPC_RegisterHotKey.aspx 阅读全文
posted @ 2006-03-27 08:47 Liren 阅读(633) 评论(0) 推荐(0) 编辑
摘要: 1:Add two file "MutexEx.cs" and "NativeMethod.cs" from OpenNETCF into your solution. 2:Code here static void Main() { OpenNETCF.Threading.MutexEx mutex = new OpenNETCF.Threading.MutexEx(true,"h... 阅读全文
posted @ 2006-03-27 08:46 Liren 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 1void SetBacklight(int value) { 2 3 RegistryKey HKEY = Registry.CurrentUser.OpenSubKey("ControlPanel\\Backlight", true); 4 5 if (HKEY != null) { 6 7 HKEY.SetValue("ACBrigh... 阅读全文
posted @ 2006-03-27 08:45 Liren 阅读(1841) 评论(2) 推荐(0) 编辑
摘要: This sections contain samples for the .NET Compact Framework using Microsoft Visual Studio 2005. You can deploy the samples either to a Pocket PC or to a Pocket PC emulator. In This Section Bubble... 阅读全文
posted @ 2006-02-16 10:13 Liren 阅读(1039) 评论(1) 推荐(0) 编辑
摘要: Simple MP3 Player for Pocket PC using FMOD Introduction When I was asked to create an audio guide based on Pocket PC technology and MP3 sound tracks, I had no clue where to go and how to achieve this.... 阅读全文
posted @ 2005-11-23 09:30 Liren 阅读(971) 评论(0) 推荐(0) 编辑
摘要: 很早以前发现了这个Managed Bluetooth的封装http://msdn.microsoft.com/embedded/usewinemb/ce/sharedsrccode/west/default.aspx,但是没有基础一直无法入手,今天闲逛发现了一个利用它实现的一个game,具体位置在这里http://blogs.msdn.com/windowsmobile/comments/4784... 阅读全文
posted @ 2005-11-08 10:03 Liren 阅读(1005) 评论(0) 推荐(0) 编辑
摘要: 1void SetBacklight(int value) 2 { 3 RegistryKey HKEY = Registry.CurrentUser.OpenSubKey("ControlPanel\\Backlight", true); 4 if (HKEY != null) 5 { 6 ... 阅读全文
posted @ 2005-10-30 22:27 Liren 阅读(1141) 评论(2) 推荐(0) 编辑
摘要: 本来想找找.NET CF 2.0中访问调用FLASH.DLL的方法,结果发现了这个。试验了一下,很棒哦。http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetcomp/html/med301_msdn_com_netcf2.asp不明白是不是访问COM必须要idl文件或者tlb文件,到哪里去找flash.idl呢... 阅读全文
posted @ 2005-10-30 21:13 Liren 阅读(897) 评论(2) 推荐(0) 编辑