Click here to Skip to main content
16,006,378 members
Home / Discussions / C#
   

C#

 
QuestionEcuse me! Please tell me how to import excel file and process it. Pin
abiisalwayshappy2-Jan-07 15:35
abiisalwayshappy2-Jan-07 15:35 
AnswerRe: Ecuse me! Please tell me how to import excel file and process it. Pin
Not Active2-Jan-07 17:13
mentorNot Active2-Jan-07 17:13 
GeneralRe: Ecuse me! Please tell me how to import excel file and process it. Pin
abiisalwayshappy3-Jan-07 18:49
abiisalwayshappy3-Jan-07 18:49 
QuestionReflection v Compilation Pin
mikestringfellow2-Jan-07 15:08
mikestringfellow2-Jan-07 15:08 
AnswerRe: Reflection v Compilation Pin
Uwe Keim2-Jan-07 20:44
sitebuilderUwe Keim2-Jan-07 20:44 
GeneralRe: Reflection v Compilation Pin
mikestringfellow3-Jan-07 15:36
mikestringfellow3-Jan-07 15:36 
QuestionOpening notepad from own program Pin
dsl/fahk2-Jan-07 14:55
dsl/fahk2-Jan-07 14:55 
AnswerRe: Opening notepad from own program Pin
Luc Pattyn2-Jan-07 15:48
sitebuilderLuc Pattyn2-Jan-07 15:48 
Hello again,

the Process class is defined in namespace System.Diagnostics
you can verify this in the MSDN help;
it shows "System.Diagnostics.Process" in the section on Inheritance Hierarchy
(at the top of the manual page when using Visual Studio 2003, at the bottom when VS 2005).

This means:
1) you must provide a using statement at the beginning of every source file that wants
to use the Process class, like so:

using System;                    // always present !
using System.Diagnostics;


2) you MAY have to add a reference; you dont if the Intellisense showed the right
stuff while you were typing the using statement (popup list at every period with
the required item in it).
If it does not show, then you must add a reference (right click your project's name
in the Solutions panel).
For System.Diagnostics it is automatic though.


Once you took care of these issues, the Process constructor, methods and other class
members should have full Intellisense support inside Visual Studio, and you are
ready to (iterate on) edit, build and run. Same holds true for every other class
you want to use (of course the most basic ones are always accessible, such as String).

Hope this helps you on the right track.

Smile | :)




Luc Pattyn

QuestionRe: Opening notepad from own program Pin
dsl/fahk3-Jan-07 10:29
dsl/fahk3-Jan-07 10:29 
AnswerRe: Opening notepad from own program Pin
Luc Pattyn3-Jan-07 11:13
sitebuilderLuc Pattyn3-Jan-07 11:13 
GeneralRe: Opening notepad from own program Pin
dsl/fahk3-Jan-07 13:26
dsl/fahk3-Jan-07 13:26 
GeneralRe: Opening notepad from own program Pin
Luc Pattyn3-Jan-07 16:41
sitebuilderLuc Pattyn3-Jan-07 16:41 
QuestionHow to tell if running under VS service host? Pin
JoeRip2-Jan-07 13:49
JoeRip2-Jan-07 13:49 
AnswerRe: How to tell if running under VS service host? Pin
Ennis Ray Lynch, Jr.2-Jan-07 14:09
Ennis Ray Lynch, Jr.2-Jan-07 14:09 
GeneralRe: How to tell if running under VS service host? Pin
Luc Pattyn2-Jan-07 14:37
sitebuilderLuc Pattyn2-Jan-07 14:37 
GeneralRe: How to tell if running under VS service host? Pin
JoeRip3-Jan-07 2:20
JoeRip3-Jan-07 2:20 
GeneralRe: How to tell if running under VS service host? Pin
JoeRip3-Jan-07 2:18
JoeRip3-Jan-07 2:18 
QuestionMulti tab interface question? Pin
TrooperIronMan2-Jan-07 13:31
TrooperIronMan2-Jan-07 13:31 
AnswerRe: Multi tab interface question? Pin
Nader Elshehabi2-Jan-07 13:41
Nader Elshehabi2-Jan-07 13:41 
GeneralRe: Multi tab interface question? Pin
TrooperIronMan3-Jan-07 1:38
TrooperIronMan3-Jan-07 1:38 
GeneralRe: Multi tab interface question? Pin
TrooperIronMan3-Jan-07 3:28
TrooperIronMan3-Jan-07 3:28 
GeneralRe: Multi tab interface question? Pin
Nader Elshehabi3-Jan-07 4:14
Nader Elshehabi3-Jan-07 4:14 
GeneralRe: Multi tab interface question? Pin
TrooperIronMan3-Jan-07 6:41
TrooperIronMan3-Jan-07 6:41 
GeneralRe: Multi tab interface question? Pin
Nader Elshehabi3-Jan-07 13:06
Nader Elshehabi3-Jan-07 13:06 
QuestionControl Panel applets Pin
dsovino2-Jan-07 11:54
dsovino2-Jan-07 11:54 

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.