Click here to Skip to main content
15,884,838 members
Home / Discussions / C#
   

C#

 
GeneralRe: Using static var on a class Pin
Member 1217642830-Nov-15 5:41
Member 1217642830-Nov-15 5:41 
AnswerRe: Using static var on a class Pin
OriginalGriff30-Nov-15 6:32
mveOriginalGriff30-Nov-15 6:32 
GeneralRe: Using static var on a class Pin
Richard Deeming30-Nov-15 6:40
mveRichard Deeming30-Nov-15 6:40 
AnswerThanks everyone,someone knows the answer for B. ? Pin
Member 1217642830-Nov-15 6:52
Member 1217642830-Nov-15 6:52 
GeneralRe: Thanks everyone,someone knows the answer for B. ? Pin
Eddy Vluggen30-Nov-15 7:11
professionalEddy Vluggen30-Nov-15 7:11 
GeneralRe: Thanks everyone,someone knows the answer for B. ? Pin
BillWoodruff30-Nov-15 9:09
professionalBillWoodruff30-Nov-15 9:09 
AnswerRe: Using static var on a class Pin
BillWoodruff30-Nov-15 9:17
professionalBillWoodruff30-Nov-15 9:17 
QuestionMy problem Pin
Member 1217509329-Nov-15 19:17
Member 1217509329-Nov-15 19:17 
hello every one,
I have a problem with my program,
I can select a image from one folder in open dialog but I can't move the image to be processed in another directory.
so pleas help me..
this is my program

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;


namespace Dir
{
public partial class Form1 : Form
{
public Form1()
{

InitializeComponent();
}
private TransferFile transferFile = new TransferFile();

private void button1_Click(object sender, EventArgs e)
{
string cmd = "/c" + textBox1.Text;
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.UseShellExecute = false;
process.StartInfo.FileName = "cmd.exe";
process.StartInfo.Arguments = cmd;
process.StartInfo.RedirectStandardOutput = true;
process.Start();
richTextBox1.Text = process.StandardOutput.ReadToEnd();

}

OpenFileDialog ofd = new OpenFileDialog();

private void button2_Click(object sender, EventArgs e)
{
string Filename = @"E:\MyDir";

string result;

result = System.IO.Path.GetFileName(ofd.FileName);
Console.WriteLine("GetFileName('{0}') returns '{1}'", Filename, result);


if (ofd.ShowDialog() == DialogResult.OK)
{
textBox1.Text = " RGBImage.exe " + System.IO.Path.GetFileName(ofd.FileName);

}
}
AnswerRe: My problem Pin
BillWoodruff29-Nov-15 20:52
professionalBillWoodruff29-Nov-15 20:52 
Questionhow to use delegate to call function and introduce function as content? Pin
smallkubi29-Nov-15 18:31
smallkubi29-Nov-15 18:31 
AnswerRe: how to use delegate to call function and introduce function as content? Pin
BillWoodruff29-Nov-15 20:04
professionalBillWoodruff29-Nov-15 20:04 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi29-Nov-15 20:42
smallkubi29-Nov-15 20:42 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Pete O'Hanlon29-Nov-15 21:39
mvePete O'Hanlon29-Nov-15 21:39 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
BillWoodruff29-Nov-15 22:52
professionalBillWoodruff29-Nov-15 22:52 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi30-Nov-15 2:27
smallkubi30-Nov-15 2:27 
AnswerRe: how to use delegate to call function and introduce function as content? Pin
Richard Deeming29-Nov-15 23:18
mveRichard Deeming29-Nov-15 23:18 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi30-Nov-15 3:02
smallkubi30-Nov-15 3:02 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Richard Deeming30-Nov-15 3:17
mveRichard Deeming30-Nov-15 3:17 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi30-Nov-15 4:24
smallkubi30-Nov-15 4:24 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Eddy Vluggen30-Nov-15 4:55
professionalEddy Vluggen30-Nov-15 4:55 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi30-Nov-15 5:02
smallkubi30-Nov-15 5:02 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Eddy Vluggen30-Nov-15 7:03
professionalEddy Vluggen30-Nov-15 7:03 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi30-Nov-15 15:48
smallkubi30-Nov-15 15:48 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Eddy Vluggen30-Nov-15 23:16
professionalEddy Vluggen30-Nov-15 23:16 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi1-Dec-15 13:59
smallkubi1-Dec-15 13:59 

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.