~jil26/fabathome-model1/FabInterpreter

« back to all changes in this revision

Viewing changes to software/projects/FabStudio v0/Fab@Home Studio/FABSaveAs.h

  • Committer: jil26
  • Date: 2010-03-17 09:27:31 UTC
  • Revision ID: svn-v4:02918aed-e80b-b844-b231-15c4a9332dc2:trunk:7
Added FabStudio v0 to the repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#pragma once
 
2
 
 
3
#using <mscorlib.dll>
 
4
#using <System.dll>
 
5
#using <System.Windows.Forms.dll>
 
6
 
 
7
using namespace System;
 
8
using namespace System::Windows::Forms;
 
9
 
 
10
public ref class CExercise : public Form
 
11
{
 
12
        SaveFileDialog ^ sfd;
 
13
public:
 
14
        CExercise(void)
 
15
        {
 
16
                InitializeComponent();
 
17
                sfd = gcnew SaveFileDialog();
 
18
        }
 
19
 
 
20
private:
 
21
        void InitializeComponent()
 
22
        {
 
23
                this->Text = L"File Processing";
 
24
        }
 
25
};
 
 
b'\\ No newline at end of file'