Monday, March 29, 2004
Start and Stop local system processes:
The System.Diagnostics.Process class can be used to start and stop system processes. A process means a running application. The Process class is useful for starting, stopping, controlling, and monitoring applications. By using this class, you can obtain a list of the processes that are running or start a new process.
Namespace: System.Diagnostics
The following example reveals how to start Internet Explorer as a process from within your application.
'Declare and instantiate a new process component.
Dim proc As System.Diagnostics.Process
proc = New System.Diagnostics.Process()
'Do not receive an event when the process exits.
proc.EnableRaisingEvents = False
'Start Internet Explorer, passing in a web page.
proc.Start("IExplore.exe", "http://www.arunmicrosystems.netfirms.com")
For more info and examples have a look at the following links.
1. http://www.dotnet247.com/247reference/System/Diagnostics/Process.aspx
2. http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemDiagnosticsProcessClassTopic.asp
The System.Diagnostics.Process class can be used to start and stop system processes. A process means a running application. The Process class is useful for starting, stopping, controlling, and monitoring applications. By using this class, you can obtain a list of the processes that are running or start a new process.
Namespace: System.Diagnostics
The following example reveals how to start Internet Explorer as a process from within your application.
'Declare and instantiate a new process component.
Dim proc As System.Diagnostics.Process
proc = New System.Diagnostics.Process()
'Do not receive an event when the process exits.
proc.EnableRaisingEvents = False
'Start Internet Explorer, passing in a web page.
proc.Start("IExplore.exe", "http://www.arunmicrosystems.netfirms.com")
For more info and examples have a look at the following links.
1. http://www.dotnet247.com/247reference/System/Diagnostics/Process.aspx
2. http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemDiagnosticsProcessClassTopic.asp
Nice Sites
Here is the info about some good web sites:
My .NET Site:
Arun Micro Systems:
1. http://www.asp.net/
It is the official Microsoft ASP.NET Site. It contains detailed sections on ASP.NET such as Forums, Control Gallery, Tutorials, Web Matrix, IBuySpy , Mobile, Source Projects, Resources, and Starter Kits. It is a good place to start with ASP.NET and to get in touch with latest happenings in ASP.NET. In the Source Project section, you can see some new sample projects designed to allow you to quickly build ASP.NET applications. It’s worth seeing!
2. http://www.gotdotnet.com/
It is a .NET Framework community website. This web site contains latest .NET news, resources, tutorials, user samples, tools etc. It also contains message boards, blogs and communities.
3. http://www.windowsforms.net/
It is the official Microsoft Windows Forms Community Site. It contains detailed sections on ASP.NET such as Forums, Community, Articles, Samples, Code Heroes, Terrarium, TaskVision, Books and Control Gallery. The Control Gallery is a directory of Windows Forms controls that you can use in your applications. The Windows Forms QuickStart is a series of Windows Forms samples and articles explaining the programming model, architecture, and power of Windows Forms.
4. http://www.123aspx.com/
It contains the largest directory of ASP.NET Resources. It has links to ASP.NET tutorials, hosting, programming, basics, script, etc.
5. http://www.dotnetjunkies.com/
It contains latest links to .NET resources, discussion forums, web blogs and more.
6. smartdevices.microsoftdev.com
It is the Official Microsoft Smart Devices Developer Community site, which provides all the necessary information about how to create solutions for smart devices, including Pocket PC 2000, Pocket PC 2002, Pocket PC Phone Edition, Smartphone, and Handheld PC as well as devices running the Windows CE .NET real-time embedded operating system.
It is also worth to have a look at the following MSDN Developer Centers:
.NET Framework
Architecture
ASP.NET
Security
Visual Basic
Visual C++
Visual C#
Visual J#
Visual Studio
Web Services
My .NET Site:
Arun Micro Systems:
1. http://www.asp.net/
It is the official Microsoft ASP.NET Site. It contains detailed sections on ASP.NET such as Forums, Control Gallery, Tutorials, Web Matrix, IBuySpy , Mobile, Source Projects, Resources, and Starter Kits. It is a good place to start with ASP.NET and to get in touch with latest happenings in ASP.NET. In the Source Project section, you can see some new sample projects designed to allow you to quickly build ASP.NET applications. It’s worth seeing!
2. http://www.gotdotnet.com/
It is a .NET Framework community website. This web site contains latest .NET news, resources, tutorials, user samples, tools etc. It also contains message boards, blogs and communities.
3. http://www.windowsforms.net/
It is the official Microsoft Windows Forms Community Site. It contains detailed sections on ASP.NET such as Forums, Community, Articles, Samples, Code Heroes, Terrarium, TaskVision, Books and Control Gallery. The Control Gallery is a directory of Windows Forms controls that you can use in your applications. The Windows Forms QuickStart is a series of Windows Forms samples and articles explaining the programming model, architecture, and power of Windows Forms.
4. http://www.123aspx.com/
It contains the largest directory of ASP.NET Resources. It has links to ASP.NET tutorials, hosting, programming, basics, script, etc.
5. http://www.dotnetjunkies.com/
It contains latest links to .NET resources, discussion forums, web blogs and more.
6. smartdevices.microsoftdev.com
It is the Official Microsoft Smart Devices Developer Community site, which provides all the necessary information about how to create solutions for smart devices, including Pocket PC 2000, Pocket PC 2002, Pocket PC Phone Edition, Smartphone, and Handheld PC as well as devices running the Windows CE .NET real-time embedded operating system.
It is also worth to have a look at the following MSDN Developer Centers:
.NET Framework
Architecture
ASP.NET
Security
Visual Basic
Visual C++
Visual C#
Visual J#
Visual Studio
Web Services
