Click here to Skip to main content
15,888,610 members
Home / Discussions / C#
   

C#

 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
harold aptroot9-Feb-12 5:08
harold aptroot9-Feb-12 5:08 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
BillWoodruff9-Feb-12 20:28
professionalBillWoodruff9-Feb-12 20:28 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
SledgeHammer019-Feb-12 5:13
SledgeHammer019-Feb-12 5:13 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
Pete O'Hanlon9-Feb-12 5:22
mvePete O'Hanlon9-Feb-12 5:22 
QuestionHow to get value from Reorder List Ajax control? Pin
Manish_Kumar_Nayak9-Feb-12 2:10
Manish_Kumar_Nayak9-Feb-12 2:10 
AnswerHow to get value from Reorder List Ajax control? Pin
Manish_Kumar_Nayak9-Feb-12 18:40
Manish_Kumar_Nayak9-Feb-12 18:40 
QuestionStart any Application(Say Skype) on remote machine using c# language . Pin
Ashish payghan8-Feb-12 22:34
Ashish payghan8-Feb-12 22:34 
AnswerRe: Start any Application(Say Skype) on remote machine using c# language . Pin
Pete O'Hanlon8-Feb-12 23:29
mvePete O'Hanlon8-Feb-12 23:29 
One way to do this is to use WMI, which involves adding a reference to System.Management. This is what your code might look like:
C#
public void StartRemoteProcess(string address, string processName, string userName, string password)
{
  object[] processes = { processName };
  ConnectionOptions connection = new ConnectionOptions{ Username = userName, Password = password };
  ManagementScope scope = new ManagementScope(string.Format(@"\\{0}\root\cimv2", address), connection);
  using (ManagementClass mc = new ManagementClass(scope, new ManagementPath("Win32_Process"),
    new ObjectGetOptions()))
  {
    mc.InvokeMethod("Create", processes);
  }
}

*pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

"Mind bleach! Send me mind bleach!" - Nagy Vilmos


My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility


AnswerRe: Start any Application(Say Skype) on remote machine using c# language . Pin
Dave Kreskowiak9-Feb-12 2:07
mveDave Kreskowiak9-Feb-12 2:07 
GeneralRe: Start any Application(Say Skype) on remote machine using c# language . Pin
PIEBALDconsult9-Feb-12 2:17
mvePIEBALDconsult9-Feb-12 2:17 
GeneralRe: Start any Application(Say Skype) on remote machine using c# language . Pin
BillWoodruff9-Feb-12 20:31
professionalBillWoodruff9-Feb-12 20:31 
AnswerRe: Start any Application(Say Skype) on remote machine using c# language . Pin
BillWoodruff9-Feb-12 20:36
professionalBillWoodruff9-Feb-12 20:36 
Questionfolder permisions Pin
anikbutt228-Feb-12 22:21
anikbutt228-Feb-12 22:21 
AnswerRe: folder permisions Pin
_AnsHUMAN_ 8-Feb-12 23:21
_AnsHUMAN_ 8-Feb-12 23:21 
GeneralRe: folder permisions Pin
anikbutt229-Feb-12 0:07
anikbutt229-Feb-12 0:07 
AnswerRe: folder permisions Pin
Abhinav S9-Feb-12 0:59
Abhinav S9-Feb-12 0:59 
AnswerRe: folder permisions Pin
Dave Kreskowiak9-Feb-12 2:05
mveDave Kreskowiak9-Feb-12 2:05 
QuestionReportviewer failed to shows new records runtime. Pin
moxet8-Feb-12 21:15
moxet8-Feb-12 21:15 
Questionc# Pin
ajay bhoir8-Feb-12 18:57
ajay bhoir8-Feb-12 18:57 
AnswerRe: c# Pin
Abhinav S8-Feb-12 19:42
Abhinav S8-Feb-12 19:42 
GeneralRe: c# Pin
thatraja8-Feb-12 21:06
professionalthatraja8-Feb-12 21:06 
GeneralRe: c# Pin
Abhinav S8-Feb-12 21:47
Abhinav S8-Feb-12 21:47 
AnswerRe: c# Pin
Abhinav S8-Feb-12 21:45
Abhinav S8-Feb-12 21:45 
QuestionGet CPU Serial Number in WinRT Pin
Kevin Marois8-Feb-12 12:45
professionalKevin Marois8-Feb-12 12:45 
AnswerRe: Get CPU Serial Number in WinRT Pin
Dave Kreskowiak8-Feb-12 17:38
mveDave Kreskowiak8-Feb-12 17:38 

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.