TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
payam hayati
NA
7
3.2k
shutdown and reset system
Jul 13 2014 4:09 PM
hi
i'm using this code :
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Diagnostics;
namespace Shutdown
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
Process.Start("Shutdown", "/s");
}
private void button2_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("shutdown", "/a");
}
}
}
------------------------------
but not happend ,what's problem?
thanx.
Reply
Answers (
4
)
Delete a particular page from a word document using C#
C# Metro Design