Click here to Skip to main content
15,892,537 members

Comments by mohsen_3325 (Top 3 by date)

mohsen_3325 12-Mar-13 5:43am View    
no problem with timer,my problem :not show windows app
mohsen_3325 12-Mar-13 5:42am View    
i use this:'ProcessStartInfo info = new ProcessStartInfo(@"c:\myprogram.exe"); info.UseShellExecute = false; info.RedirectStandardError = true; info.RedirectStandardInput = true; info.RedirectStandardOutput = true; info.CreateNoWindow = true; info.ErrorDialog = false; info.WindowStyle = ProcessWindowStyle.Normal; Process process = Process.Start(info);'but can't show and not work.
mohsen_3325 3-Oct-12 5:53am View    
Deleted
i'm use synchlock like this:
<pre lang="vb">Public Class ImportService
Dim thisLock As New Object
...
Public Function ImportsFiles(ByVal files as list(Of String))
SyncLock thisLock
...
End SyncLock
End Function
End Class
</pre>
but not work.why?