跳到主要內容

發表文章

目前顯示的是 1月, 2009的文章

Files sharing problem between Windows 2003 server host and virtual machine

Regarding VMServer 1.08, when I copy files between a Windows 2003 host and a vm(no matter it is Windows XP or Windows 2003 Server), the following error prompted out arbitrarily, usually for copying large files. First I thought I had solved it by disabling the Jumbo frame and any kind of flow control in network card advance setting. It corrected the problem for most of the cases until I came across a situation to copy a 600MB file, the captioned error "network name is no longer available " prompted out after 10 to 20 seconds. It was not easy to find the solution as there are many cases, with different reasons, having the same symptom, thus I jot it down for a record. 1. Disable Jumbo frame, or any kind of flow control (try disabling Jumbo frame first) 2. Disable Denial of service attack in Windows 2003. Microsoft had acknowledged it has problem by itself in some cases. VMWare Server and "...network name is no longer available..." Did you ever receive following erro...

How to split Virtual PC hard disk

Have you ever experienced this problem? I had a Virtual PC disk on NTFS partition. The vhd grew and extended to more than 4GB. The problem was I needed to move the Virtual PC disk to my mobile hard disk which was formated as FAT32. Then I realized it seemed there was no tools inside virtual PC 2004 to split the disk. However, After googling the web for more than hours, I found that the solution is utterly simple. That's you can arbitrarily split the vhd into multiple volume by HJSPLIT. http://www.freebyte.com/hjsplit/ You may split the file or myharddisk.vhd to myharddisk.vhd myharddisk.v01 myharddisk.v02 Sounds easy? Unbelievable? But it true.

VB6 Interoperability with .NET 1.1 without Visual Studio (Using Free IDE SharpDeveloper)

Table of Content VB6 and Dot Net Framework Interoperability Introduction. Prepare a web service provider Generate the proxy class using wsdl Prepare a Wrapper Class to use the proxy. Sample Wrapper Class OpenDocumentConsumer.cs. Important point about the Wrapper Class. Generate a mykey.snk file. Modification on AssemblyInfo.cs. Register the dll Create a Sample VB6 project VB6 and Dot Net Framework Interoperability Introduction It illustrates with examples on how a VB6 program can call a class written by C#, Tools used SharpDeveloper 1.1 (An open source free IDE) Dot Net framework SDK 1.1 (I experienced problem in using SDK 1.0 wsdl.exe to generate correct proxy cs files to retrieve the result from my example) VB6 (SP5) Command used/ major action involved wsdl – to generate proxy files for consumer service ...