Click here to Skip to main content
15,887,485 members
Home / Discussions / C#
   

C#

 
AnswerRe: error in crystal reports Pin
Abhinav S27-Mar-13 17:58
Abhinav S27-Mar-13 17:58 
AnswerRe: error in crystal reports Pin
V.27-Mar-13 22:21
professionalV.27-Mar-13 22:21 
GeneralRe: error in crystal reports Pin
User349028-Mar-13 7:49
User349028-Mar-13 7:49 
GeneralRe: error in crystal reports Pin
V.28-Mar-13 8:19
professionalV.28-Mar-13 8:19 
QuestionHow to Async download multiple files using webclient simultaneously? Pin
Tridip Bhattacharjee27-Mar-13 8:01
professionalTridip Bhattacharjee27-Mar-13 8:01 
QuestionScreenshots -> Video file Pin
ADASD33333227-Mar-13 4:06
ADASD33333227-Mar-13 4:06 
AnswerRe: Screenshots -> Video file Pin
Abhinav S29-Mar-13 4:00
Abhinav S29-Mar-13 4:00 
QuestionSaving Screensaver in C# Pin
greylakota27-Mar-13 3:34
greylakota27-Mar-13 3:34 
Tried to run this program to save a screensaver but it doesnt seem to work.
The screensaver is generated from a form and this portion of the code which is for the "save" button creates an object with 0 bytes.


C#
private void button6_Click(object sender, EventArgs e)
      {

          //Open File Dialog to load image files
          saveFileDialog1.FileName = "";
          saveFileDialog1.Title = "Images";

          //Filter the filedialog, so that it will show only the mentioned format images
          saveFileDialog1.Filter = "screensaver.scr(*.scr)|*.scr";
          saveFileDialog1.ShowDialog();

          if (saveFileDialog1.FileName.ToString() != "")
          {
              System.IO.FileStream fs = (System.IO.FileStream)saveFileDialog1.OpenFile();

              pictBox1.ImageLocation = saveFileDialog1.FileName.ToString();
              //OriginalImage = new Bitmap(saveFileDialog1.FileName.ToString());
          }

          savefile.Enabled = true;
      }

      private void pictBox1_Click(object sender, EventArgs e)
      {

      }
  }

QuestionRe: Saving Screensaver in C# Pin
Richard MacCutchan27-Mar-13 3:56
mveRichard MacCutchan27-Mar-13 3:56 
AnswerRe: Saving Screensaver in C# Pin
Dave Kreskowiak27-Mar-13 4:05
mveDave Kreskowiak27-Mar-13 4:05 
GeneralRe: Saving Screensaver in C# Pin
Richard MacCutchan27-Mar-13 5:04
mveRichard MacCutchan27-Mar-13 5:04 
QuestionC# progress failed! Pin
ccahe27-Mar-13 2:37
ccahe27-Mar-13 2:37 
AnswerRe: C# progress failed! Pin
Dave Kreskowiak27-Mar-13 4:02
mveDave Kreskowiak27-Mar-13 4:02 
AnswerRe: C# progress failed! Pin
ccahe27-Mar-13 22:02
ccahe27-Mar-13 22:02 
Questionsettings file in relaunching the application Pin
KRISHNARAYALU27-Mar-13 1:24
KRISHNARAYALU27-Mar-13 1:24 
AnswerRe: settings file in relaunching the application Pin
Richard MacCutchan27-Mar-13 3:53
mveRichard MacCutchan27-Mar-13 3:53 
GeneralRe: settings file in relaunching the application Pin
KRISHNARAYALU27-Mar-13 7:39
KRISHNARAYALU27-Mar-13 7:39 
GeneralRe: settings file in relaunching the application Pin
Richard MacCutchan27-Mar-13 7:46
mveRichard MacCutchan27-Mar-13 7:46 
GeneralRe: settings file in relaunching the application Pin
KRISHNARAYALU27-Mar-13 17:05
KRISHNARAYALU27-Mar-13 17:05 
GeneralRe: settings file in relaunching the application Pin
Richard MacCutchan27-Mar-13 23:58
mveRichard MacCutchan27-Mar-13 23:58 
QuestionC# Convertion Pin
Midnight Ahri26-Mar-13 17:20
Midnight Ahri26-Mar-13 17:20 
AnswerRe: C# Convertion PinPopular
parths26-Mar-13 21:08
parths26-Mar-13 21:08 
GeneralRe: C# Convertion Pin
OriginalGriff26-Mar-13 21:21
mveOriginalGriff26-Mar-13 21:21 
GeneralRe: C# Convertion Pin
parths26-Mar-13 21:28
parths26-Mar-13 21:28 
GeneralRe: C# Convertion Pin
OriginalGriff26-Mar-13 21:34
mveOriginalGriff26-Mar-13 21:34 

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.