Hi Sonia, Assuming that you are using .net Setup & Deployment project in VS. Create a Launch Condition - Add Registry Search - set the RegKey & Value property to: Keys: For the .NET Framework 1.0: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\policy\v1.0 For the .NET Framework 1.1: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\policy\v1.1 For the .NET Framework 2.0: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\policy\v2.0 Value: For the .NET Framework 1.0: "3705" For the .NET Framework 1.1: "4322" For the .NET Framework 2.0: "50727" Then add new LauchCondition and set the Condition property to: For the .NET Framework 1.0: REGISTRYVALUE = "3321-3705" For the .NET Framework 1.1: REGISTRYVALUE="3706-4322" For the .NET Framework 2.0: REGISTRYVALUE="50727-50727" Hope that helps. Regards, Bhupi Bhai.
Bhupi Bhai
Posts
-
deployment in window -
how do i store values temporarilyThe best way to go about is create your own Types. In your case it will be "manufacturer" and "opportunity" Types with their respective details. Then create any required number of instances of these Types and fill them with values. Regards, Bhupi Bhai.
-
Localisation of c# Windows ApplicationPlease share your problem. Regards, Bhupi Bhai.
-
Code Tidy-up tools?Nope, I don't think so. It's just us who can take care of this .... manually :-> Regards, Bhupi Bhai.
-
getting File path??Please search on msdn first ..... then search on google ..... followed by looking in the previous posts ...... If you still do not get answers, post a message here ... Regards, Bhupi Bhai.
-
Concerning ListBoxesDoubleClick event occurs when the control is double-clicked. This is a normal behaviour. Regards, Bhupi Bhai.
-
Generic ErrorPls give some more info ..... Regards, Bhupi Bhai.
-
Which is the best book for learning C# ?"Complete Reference" - Herbert S would be better to start with. Regards, Bhupi Bhai.
-
Return statement in try blockhey!! ru testing us ;-) Regards, Bhupi Bhai.
-
Event when window is minimizex/maximizedThe shortest way to do is : In the Form Resize event check for "FormWindowState". Eg: private void Form1_Resize(object sender, System.EventArgs e) { if (FormWindowState.Minimized == WindowState) { //Your code .. } } Regards, Bhupi Bhai.
-
Form Layout SDI or MDIWhy not use TabPages ?? Regards, Bhupi Bhai.
-
prompt message box on web page using C#VS2003 does not support this and I am sure VS2005 will also not !! Regards, Bhupi Bhai.
-
prompt message box on web page using C#Good !! So ur happy, now let's close this topic. Thanks :) Regards, Bhupi Bhai.
-
prompt message box on web page using C#Wow, is it ?? I too would like to c the code. Regards, Bhupi Bhai.
-
prompt message box on web page using C#Ur in the wrong forum. Look in the asp.net forum, I have replied there to a similar question there. BTW, Alerts \ Confirm are used to pop up messages. Regards, Bhupi Bhai.
-
IE7 breaking Visual Studio 2003 ?I think you should call up microsoft helpdesk, they are the best onces to answer your query. Provided you have a genuine copy of VS2003 :laugh: Regards, Bhupi Bhai.
-
about methodsHave you heard of MSDN ?? Regards, Bhupi Bhai.
-
difference betweenMohan, Neither of the two perform deep copy. Both CopyTo and Clone perform Shallow copy. Regards, Bhupi Bhai.
-
Getting free physical Memory ?Yes, lmoelleb (is that ur name) is right. Using WMI in C# you can get Free Physical Memory. ManagementObjectSearcher query = new ManagementObjectSearcher("SELECT * FROM Win32_OperatingSystem"); ManagementObjectCollection queryCollection1 = query.Get(); foreach(ManagementObject mo in queryCollection1 ) { Console.WriteLine("Free Physical Memory : " + mo["freephysicalmemory"].ToString()); } Regards, Bhupi Bhai.
-
Getting free physical Memory ?Yes, ur on the right track. But I am sorry can't recall the exact API for it. You will have to do some more rnd on this. Regards, Bhupi Bhai.