NTR 100 COMPLETE Syllabus and Academic Integrity Acknowledgement Arizona State University
NTR 100 COMPLETE Syllabus and Academic Integrity Acknowledgement Question 1 1 / 1 pts I have read the ASU ā¦
// —————————————————————
// Programming Assignment: LAB7
//
// Date Written: 10-16-2012
// Purpose: Contact Manager
// —————————————————————
using System;
using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.IO; using System.Windows.Forms;
namespace Lab7
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void cmdAdd\_Click(object sender, EventArgs e) {
string fileName = "C:\\\CIS\\\Contacts.txt";
string name, eMail; StreamWriter outFile; if (!File.Exists(fileName))
{
File.Create(fileName);
} try {
outFile = new StreamWriter(fileName, true) ; name = txtName.Text; eMail = txtEMail.Text; outFile.WriteLine(name); outFile.WriteLine(eMail); outFile.Close();
}
catch (DirectoryNotFoundException exc)
{
MessageBox.Show(exc.Message);
}
catch (System.IO.IOException exc)
{
MessageBox.Show(exc.Message); }
}
}
}
NTR 100 COMPLETE Syllabus and Academic Integrity Acknowledgement Question 1 1 / 1 pts I have read the ASU ā¦
HEP 456 Module 5 Section 12 and 13 Planning for Analysis and Interpretation and Gantt chartĀ Name HEP 456: ā¦
HEP 456 Module 6 Section 14 Communication and Dissemination of The Findings HEP 456: Health Promotion Program ā¦