Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
B

Bhupi Bhai

@Bhupi Bhai
About
Posts
38
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • deployment in window
    B Bhupi Bhai

    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.

    C# csharp dotnet sysadmin workspace

  • how do i store values temporarily
    B Bhupi Bhai

    The 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.

    C# question

  • Localisation of c# Windows Application
    B Bhupi Bhai

    Please share your problem. Regards, Bhupi Bhai.

    C# csharp help

  • Code Tidy-up tools?
    B Bhupi Bhai

    Nope, I don't think so. It's just us who can take care of this .... manually :-> Regards, Bhupi Bhai.

    C# tools help question

  • getting File path??
    B Bhupi Bhai

    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.

    C# csharp tutorial question

  • Concerning ListBoxes
    B Bhupi Bhai

    DoubleClick event occurs when the control is double-clicked. This is a normal behaviour. Regards, Bhupi Bhai.

    C#

  • Generic Error
    B Bhupi Bhai

    Pls give some more info ..... Regards, Bhupi Bhai.

    C# help graphics

  • Which is the best book for learning C# ?
    B Bhupi Bhai

    "Complete Reference" - Herbert S would be better to start with. Regards, Bhupi Bhai.

    C# learning csharp tutorial question

  • Return statement in try block
    B Bhupi Bhai

    hey!! ru testing us ;-) Regards, Bhupi Bhai.

    C# question

  • Event when window is minimizex/maximized
    B Bhupi Bhai

    The 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.

    C# question

  • Form Layout SDI or MDI
    B Bhupi Bhai

    Why not use TabPages ?? Regards, Bhupi Bhai.

    C# tutorial question

  • prompt message box on web page using C#
    B Bhupi Bhai

    VS2003 does not support this and I am sure VS2005 will also not !! Regards, Bhupi Bhai.

    C# csharp

  • prompt message box on web page using C#
    B Bhupi Bhai

    Good !! So ur happy, now let's close this topic. Thanks :) Regards, Bhupi Bhai.

    C# csharp

  • prompt message box on web page using C#
    B Bhupi Bhai

    Wow, is it ?? I too would like to c the code. Regards, Bhupi Bhai.

    C# csharp

  • prompt message box on web page using C#
    B Bhupi Bhai

    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.

    C# csharp

  • IE7 breaking Visual Studio 2003 ?
    B Bhupi Bhai

    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.

    Visual Studio csharp visual-studio help asp-net design

  • about methods
    B Bhupi Bhai

    Have you heard of MSDN ?? Regards, Bhupi Bhai.

    C# question

  • difference between
    B Bhupi Bhai

    Mohan, Neither of the two perform deep copy. Both CopyTo and Clone perform Shallow copy. Regards, Bhupi Bhai.

    C# data-structures question

  • Getting free physical Memory ?
    B Bhupi Bhai

    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.

    C# performance help question

  • Getting free physical Memory ?
    B Bhupi Bhai

    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.

    C# performance help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups