Click here to Skip to main content
15,892,809 members
Home / Discussions / C#
   

C#

 
AnswerRe: About Error - unable to find a version of the runtime to run this application." error when try to open the application. Pin
OriginalGriff23-Jun-14 2:38
mveOriginalGriff23-Jun-14 2:38 
QuestionC sharp windows application development Pin
Galacha Kevin23-Jun-14 2:09
Galacha Kevin23-Jun-14 2:09 
AnswerRe: C sharp windows application development Pin
OriginalGriff23-Jun-14 2:32
mveOriginalGriff23-Jun-14 2:32 
AnswerRe: C sharp windows application development Pin
Kornfeld Eliyahu Peter23-Jun-14 2:59
professionalKornfeld Eliyahu Peter23-Jun-14 2:59 
AnswerRe: C sharp windows application development Pin
Swinkaran23-Jun-14 15:15
professionalSwinkaran23-Jun-14 15:15 
AnswerRe: C sharp windows application development Pin
V.23-Jun-14 20:12
professionalV.23-Jun-14 20:12 
QuestionCryptanalysis Algorithm RC5 Pin
KaKoten22-Jun-14 13:29
KaKoten22-Jun-14 13:29 
AnswerRe: Cryptanalysis Algorithm RC5 Pin
Manfred Rudolf Bihy22-Jun-14 15:15
professionalManfred Rudolf Bihy22-Jun-14 15:15 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
KaKoten22-Jun-14 15:35
KaKoten22-Jun-14 15:35 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
Dave Kreskowiak22-Jun-14 17:36
mveDave Kreskowiak22-Jun-14 17:36 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
KaKoten22-Jun-14 18:07
KaKoten22-Jun-14 18:07 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
Dave Kreskowiak22-Jun-14 18:41
mveDave Kreskowiak22-Jun-14 18:41 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
KaKoten22-Jun-14 18:46
KaKoten22-Jun-14 18:46 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
harold aptroot23-Jun-14 4:01
harold aptroot23-Jun-14 4:01 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
KaKoten23-Jun-14 12:43
KaKoten23-Jun-14 12:43 
AnswerRe: Cryptanalysis Algorithm RC5 Pin
OriginalGriff22-Jun-14 19:39
mveOriginalGriff22-Jun-14 19:39 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
KaKoten23-Jun-14 0:51
KaKoten23-Jun-14 0:51 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
OriginalGriff23-Jun-14 1:04
mveOriginalGriff23-Jun-14 1:04 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
KaKoten23-Jun-14 1:12
KaKoten23-Jun-14 1:12 
sorry for the bad language, i have a little problem encrypt direct to save but saving file nothing without the type of file,
this forum can be include the picture of my problems (programs) ?
code for encryption direct to saving the cipher file:
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text.Length < 5)
{
password = textBox1.Text + "addto";
}
if (save())
{
try
{
password = textBox1.Text;
System.IO.FileStream streamreader1 = new System.IO.FileStream(fileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);
System.IO.FileStream streamwriter1 = new System.IO.FileStream(saveFileName, System.IO.FileMode.OpenOrCreate, System.IO.FileAccess.Write);
rounds = (int)numericUpDown1.Value;
Rc5 rc = new Rc5(password, rounds);
rc.Encrypt(streamreader1, streamwriter1);
}
catch
{
MessageBox.Show("file may be in use by another process", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
GeneralRe: Cryptanalysis Algorithm RC5 Pin
OriginalGriff23-Jun-14 1:10
mveOriginalGriff23-Jun-14 1:10 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
KaKoten23-Jun-14 1:20
KaKoten23-Jun-14 1:20 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
OriginalGriff23-Jun-14 2:31
mveOriginalGriff23-Jun-14 2:31 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
KaKoten23-Jun-14 2:41
KaKoten23-Jun-14 2:41 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
OriginalGriff23-Jun-14 2:59
mveOriginalGriff23-Jun-14 2:59 
GeneralRe: Cryptanalysis Algorithm RC5 Pin
KaKoten23-Jun-14 13:01
KaKoten23-Jun-14 13:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.