| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 485 人关注过本帖
标题:[求助]如何发布程序?
只看楼主 加入收藏
一刀客
Rank: 1
等 级:新手上路
帖 子:181
专家分:0
注 册:2007-10-26
收藏
 问题点数:0 回复次数:2 
[求助]如何发布程序?

我用Visual Studio 2005 编了一些小程序(C#的)照搬书上的
听说不能直接发给别人用。
那要如何做才能给别人用呢??????

顺便也给出代码吧
不要笑偶 偶刚刚开始学编程=_=U
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Windows9._._
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int start, length;
try
{
start = Convert.ToInt32(textBox2.Text);
length = Convert.ToInt32(textBox3.Text);
textBox1.Select(start, length);
textBox1.Focus();
}
catch (FormatException e1)
{
MessageBox.Show("输入的起点位置和长度应该全是数字!");
}
}
private void button2_Click(object sender, EventArgs e)
{
string sstr, dstr;
int i;
sstr = textBox1.SelectedText;
dstr = "";
for (i = sstr.Length - 1; i >= 0; i--)
dstr = dstr + sstr.Substring(i,1);
textBox4.Text = dstr;
textBox4.SelectAll();
}
}
}

图片附件: 游客没有浏览图片的权限,请 登录注册

搜索更多相关主题的帖子: public 学编程 如何 
2007-10-30 09:13
wzg0319
Rank: 5Rank: 5
等 级:职业侠客
帖 子:68
专家分:305
注 册:2007-9-12
收藏
得分:0 
是的。。如果发布出去,别人的机子上要装有framemworks框架集合。。
2007-10-30 09:30
梦心
Rank: 4
来 自:福建平和
等 级:贵宾
威 望:13
帖 子:1910
专家分:0
注 册:2007-5-11
收藏
得分:0 
在安装部署里面就有
可以自带.net framework框架,如果别的电脑没有装它会自动安装框架

我清高和我骄傲的倔强,在风中大声的唱:我不听,我不听~~做我自己最特别,呼呼~~啦啦~~~
我的博客园地址: [url]http://[/url]
2007-10-30 18:34
快速回复:[求助]如何发布程序?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.031216 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved