| CodeGuru Home | VC++ / MFC / C++ | .NET / C# | Visual Basic | Newsletters | VB Forums | Developer.com |
|
|||||||
| C-Sharp Programming Post questions, answers, and comments about C#. |
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Slide Show in C#
Hi,
This is extension of my previous question. Assume there are 5 or more open winword (microsoft word documents.) are open and minized. I need to write a program such that , it displaya the window title of all the open documents. User can select 1 or more documents. The selected documents must be brought to maxised state one by one in a fixed time period. Any idea how to do this in c# |
|
#2
|
||||
|
||||
|
Re: Slide Show in C#
Actually both your threads have a common solution. You need to go through System.Diagnostics.Process class on MSDN. You can get the currently running processes, their window titles and handles just by using the members that are part of the Process class. You will also have to use ShowWindow API to activate the window.
Go through the documentation that is provided in the link above and you will have most of it sorted out by yourself.
__________________
Use [code]your code here[/code] tags when you post source code Search here before you post your question, someone might have already asked it before. My Articles |
![]() |
| Bookmarks |
|
||||||
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|