I would suggest to use relevant title so that other people can benefit it :)
Ashwini K Singh
Posts
-
About my project [modified] -
Error when creating Outlook Task programmaicalyThis problem is related with your outlook installation, please check if you are able to search ‘00061032-0000-0000-C000-000000000046’ in your registry if not then run the outlook setup again
-
runtimeFor such question please prefer using FAQs that will be faster.
-
using xml file in phone appsCan you please provide more details about phone .net framework version etc?
-
C# - Problems with Process.StartWhat AppUpdater.exe is doing with Process ID of calling application, :doh:
-
.NET 3.5 Visual Studio 2008 Find and Replace Filesin first go i would say no if you put more details of your requirement then we may think an alternative
-
Silent Console Applicationi hope " processInfo.WindowStyle = ProcessWindowStyle.Minimized;" will solve youre problem below is detailed settings that i am using ProcessStartInfo processInfo = new ProcessStartInfo(xx, yy); processInfo.UseShellExecute = false; processInfo.RedirectStandardError = true; processInfo.RedirectStandardInput = true; processInfo.StandardOutputEncoding = Encoding.Default; processInfo.RedirectStandardOutput = true; processInfo.CreateNoWindow = true; processInfo.WindowStyle = ProcessWindowStyle.Minimized; Process pingProcess = Process.Start(processInfo);
-
listbox selected items into an arrayCan you please explain what exactly you want i thing you need previous selection and changed selection both for some comparisation
-
How to programmatically verify digital signature and signer source of a file downloaded from internetI am new to C# and facing a problem. Please help me •I have to programmatically verify digital signature of cab file downloaded from internet. Please guide me for right technical article, etc. •I Have the public key of file publisher through which I have to verify the signature origin too Ashwini