![]() |
#1 |
Moderator
![]()
تاریخ عضویت: Jun 2009
محل سکونت: Otagham
نوشته ها: 3,280
![]() 1 For This Post 4,144 مجموع |
برنامه نویسی > c#.net
تمام آموزش های نوشتاری کد و .... در این تایپ قرار خواهد گرفت
__________________
بیا خوبی کن بدبودن رویادم نده
|
![]() |
![]() |
|
![]() |
#2 |
Moderator
![]()
تاریخ عضویت: Jun 2009
محل سکونت: Otagham
نوشته ها: 3,280
![]() 1 For This Post 4,144 مجموع |
یک برنامه واسه راحتی کار و عدم وابستگی به سایت های آنلاین و اینکه روی دسکتاپ باشه دم دست کارش اینه که Base64 رو Encode و Decode می کنه Dialog های Open و Save رو هم داره بحث کنترل خطا هم تا حد امکان رعایت شده ;
کد:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace Base64 { public partial class Base64 : Form { private string strfilename; static public string EncodeTo64(string toEncode) { byte[] toEncodeAsBytes = System.Text.ASCIIEncoding.ASCII.GetBytes(toEncode); string returnValue = System.Convert.ToBase64String(toEncodeAsBytes); return returnValue; } static public string DecodeFrom64(string encodedData) { byte[] encodedDataAsBytes = System.Convert.FromBase64String(encodedData); string returnValue = System.Text.ASCIIEncoding.ASCII.GetString(encodedDataAsBytes); return returnValue; } private void Clear() { txtstring.Text = string.Empty; } public string status { get { return lblstatus.Text; } set { lblstatus.Text = value; } } public Base64() { InitializeComponent(); } private void Base64_Load(object sender, EventArgs e) { txtstring.Text = "Enter Text To Encode Or Decode Here ..."; status = "Ready ..."; } private void btnstsabout_Click(object sender, EventArgs e) { About objabout = new About(); objabout.ShowDialog(this); } private void btnstsexit_Click(object sender, EventArgs e) { this.Close(); } private void btnstsnew_Click(object sender, EventArgs e) { Clear(); status = "Ready ..."; } private void btnencode_Click(object sender, EventArgs e) { try { string strencoddata = txtstring.Text; string strendencode = EncodeTo64(strencoddata); txtstring.Text = strendencode; status = "Encoding Done ..."; } catch(Exception ex) { MessageBox.Show(ex.Message); } } private void btnstsdecode_Click(object sender, EventArgs e) { try { string strdecodedata = txtstring.Text; string strenddecode = DecodeFrom64(strdecodedata); txtstring.Text = strenddecode; status = "Decoding Done ..."; } catch(Exception ex) { MessageBox.Show(ex.Message); } } private void btnstsopen_Click(object sender, EventArgs e) { Fileopen.****** = "Normal text file(*.txt)|*.txt|PHP Hypertext Preprocessor(*.php;*.php3;*.phtml)|*.php;*.php3;*.phtml|All Files (*.*)|*.*"; Fileopen.FilterIndex = 1; Fileopen.Title = "Open File"; if (Fileopen.ShowDialog() == DialogResult.OK) { strfilename = Fileopen.FileName; txtstring.Text = System.IO.File.ReadAllText(strfilename); status = "File Open ..."; } } private void btnstssave_Click(object sender, EventArgs e) { FileSave.DefaultExt = "txt"; FileSave.FileName = strfilename; FileSave.****** = "Normal text file(*.txt)|*.txt|PHP Hypertext Preprocessor(*.php;*.php3;*.phtml)|*.php;*.php3;*.phtml|All Files (*.*)|*.*"; FileSave.FilterIndex = 1; FileSave.OverwritePrompt = true; if(FileSave.ShowDialog()==DialogResult.OK) { strfilename=FileSave.FileName; System.IO.File.WriteAllText(strfilename, txtstring.Text); status = "File Save ..."; } } } } |
![]() |
![]() |
|
![]() |
#3 |
Administrator
![]()
تاریخ عضویت: Jul 2007
نوشته ها: 2,912
![]() 0 For This Post 6,250 مجموع |
من که نمی فهمیدم چی گفتی علی
![]() ![]()
__________________
««« این نیز بگذرد »»»
|
![]() |
![]() |
![]() |
#4 | |
Registered User
![]()
تاریخ عضویت: Mar 2003
محل سکونت: :.,_.·•·.·´پــاســــــارگـاد`·.·•·._,.:
نوشته ها: 4,412
![]() 0 For This Post 167 مجموع |
علی جان پس چی شد دادا
__________________
نقل قول:
|
|
![]() |
![]() |
![]() |
#6 |
Moderator
![]()
تاریخ عضویت: Jun 2009
محل سکونت: Otagham
نوشته ها: 3,280
![]() 0 For This Post 4,144 مجموع |
|
![]() |
![]() |
![]() |
#7 |
Administrator
![]()
تاریخ عضویت: Jul 2007
نوشته ها: 2,912
![]() 0 For This Post 6,250 مجموع |
|
![]() |
![]() |
![]() |
#8 |
Moderator
![]()
تاریخ عضویت: Jun 2009
محل سکونت: Otagham
نوشته ها: 3,280
![]() 0 For This Post 4,144 مجموع |
؟؟؟؟؟؟؟؟؟؟
|
![]() |
![]() |
![]() |
#9 |
Moderator
![]()
تاریخ عضویت: Jun 2009
محل سکونت: Otagham
نوشته ها: 3,280
![]() 0 For This Post 4,144 مجموع |
من نقل قول گرفتم از شما صدفی؟ چرا با یوزر شما پست خورده ؟
|
![]() |
![]() |
![]() |
ابزارهای موضوع | |
|
|