Click here to Skip to main content
15,911,035 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: Is there any API available to get the cluster IP ? Pin
programvinod12-Mar-07 2:25
programvinod12-Mar-07 2:25 
QuestionGetClusterInformation is not working Pin
programvinod11-Mar-07 23:43
programvinod11-Mar-07 23:43 
AnswerRe: GetClusterInformation is not working Pin
prasad_som11-Mar-07 23:49
prasad_som11-Mar-07 23:49 
GeneralRe: GetClusterInformation is not working Pin
programvinod12-Mar-07 1:42
programvinod12-Mar-07 1:42 
AnswerRe: GetClusterInformation is not working Pin
prasad_som12-Mar-07 1:53
prasad_som12-Mar-07 1:53 
GeneralRe: GetClusterInformation is not working Pin
programvinod12-Mar-07 2:24
programvinod12-Mar-07 2:24 
QuestionShow the hour of execution of a process Pin
abbd11-Mar-07 19:56
abbd11-Mar-07 19:56 
AnswerRe: Show the hour of execution of a process [modified] Pin
George L. Jackson12-Mar-07 6:34
George L. Jackson12-Mar-07 6:34 
You don't have access to obtain information on every process on your system. If you run the following code, you may get an access violation:

array< Process^ >^ processes = Process::GetProcesses();

for each (Process^ process in processes)
{
	Console::WriteLine(L"{0}: Started {1}", 
		process->ProcessName ,process->StartTime);
}


Read the following:
http://www.codeproject.com/dotnet/UB_CAS_NET.asp[^]


-- modified at 13:06 Monday 12th March, 2007


-- modified at 13:49 Monday 12th March, 2007

"We make a living by what we get, we make a life by what we give." --Winston Churchill

Questionquestion in using TCHAR* Pin
Stick^11-Mar-07 17:20
Stick^11-Mar-07 17:20 
AnswerRe: question in using TCHAR* Pin
Mark Salsbery11-Mar-07 17:54
Mark Salsbery11-Mar-07 17:54 
GeneralRe: question in using TCHAR* Pin
Stick^11-Mar-07 19:16
Stick^11-Mar-07 19:16 
Questioncalculating conversion question... Pin
RubyM11-Mar-07 11:28
RubyM11-Mar-07 11:28 
AnswerRe: calculating conversion question... Pin
Christian Graus11-Mar-07 10:52
protectorChristian Graus11-Mar-07 10:52 
GeneralRe: calculating conversion question... Pin
RubyM11-Mar-07 12:17
RubyM11-Mar-07 12:17 
AnswerRe: calculating conversion question... Pin
lafleon12-Mar-07 12:19
lafleon12-Mar-07 12:19 
QuestionStatic linking to user-generated library in MSVC Pin
Still learning how to code11-Mar-07 4:46
Still learning how to code11-Mar-07 4:46 
AnswerRe: Static linking to user-generated library in MSVC Pin
Christian Graus11-Mar-07 5:14
protectorChristian Graus11-Mar-07 5:14 
GeneralRe: Static linking to user-generated library in MSVC Pin
Still learning how to code11-Mar-07 6:14
Still learning how to code11-Mar-07 6:14 
QuestionReferences and (re)building. Pin
Bartosz Bien10-Mar-07 13:11
Bartosz Bien10-Mar-07 13:11 
QuestionI need help for creating array [modified] Pin
thesad10-Mar-07 8:40
thesad10-Mar-07 8:40 
AnswerRe: I need help for creating array Pin
Christian Graus10-Mar-07 8:59
protectorChristian Graus10-Mar-07 8:59 
GeneralRe: I need help for creating array Pin
thesad10-Mar-07 9:17
thesad10-Mar-07 9:17 
AnswerRe: I need help for creating array Pin
Jeff J Anderson10-Mar-07 9:16
Jeff J Anderson10-Mar-07 9:16 
QuestionContextMenuStrip Pin
abbd10-Mar-07 8:31
abbd10-Mar-07 8:31 
QuestionRe: ContextMenuStrip [modified] Pin
abbd10-Mar-07 9:34
abbd10-Mar-07 9:34 

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.