特地下了个vs2003来写的,就是怕某些xp机子,出现运行障碍
用到下面几个命名空间using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

解决方案 »

  1.   

    只要不用水晶报表应该是没有问题的
    你也可以让用户安装你需要的framework呀
      

  2.   

    谢谢了,装的话,就不这么可能了,学校的机子,主要是做一个base64的解码而已
    就下面几行代码            char[] s=new char[40000];
                byte[] a = new byte[40000];
                a = Convert.FromBase64String(textBox1.Text.ToString());
                s = Encoding.UTF8.GetChars(a);
                string o = null;
                for (int i = 0; i < s.Length; i++)
                {
                    if (s[i] > 32)
                    {
                        o += s[i];
                    }
                }
                textBox2.Text = o;
      

  3.   

    已经用虚拟机实践过了,就怕某些阉割版的系统 这个还真就不好说了,万一某人闲的无聊把FrameWork给干掉了呢
      

  4.   


    实际去拿出“阉割版的系统”去测试一下。不要浪费时间在csdn啊。