2009-05-16 6 views

Répondre

1

Cela m'a travaillé dans WindowsMobile:

try 
{ 
    System.Diagnostics.Process myProcess = new System.Diagnostics.Process(); 
    myProcess.StartInfo.UseShellExecute = true; 
    myProcess.StartInfo.FileName = url; 
    myProcess.Start(); 
} 
catch (Exception e) {} 
Questions connexes