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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
R

rakesh_choudhury

@rakesh_choudhury
About
Posts
5
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How can I get the local machine's IP address in a Test.aspx form ?[modified]
    R rakesh_choudhury

    This works fine..

    string hostName = System.Net.Dns.GetHostName();
    string clientIP = System.Net.Dns.GetHostAddresses(hostName).GetValue(0).ToString();
    Response.Write(clientIP);

    ASP.NET question

  • Custom buttons for windows application
    R rakesh_choudhury

    I guess i understood your requirement. ;) It is good to emphasize the UI, look & feel as well as functionality. But sadly you need to take help from third party custom controls(unless you build your own; i wont suggest !!) I suggest you to use 'DevComponents'http://www.devcomponents.com/[^] for your app. The reason is : 1.You can have custom menus,forms,panels and many other controls. 2. It provides look, style, and a archieve of controls that follows Office2007 UI guideline(This is microsoft's recommended standard for UI for desktop apps). 3. I have used it for some of my app and got valuable comments. Although 2 years back. Hope this helps.

    .NET (Core and Framework) csharp dotnet

  • I am working on software in that i need to print certain things....... which is the easy way........ kindly help
    R rakesh_choudhury

    The best answer.

    C# help

  • backup and restore [modified]
    R rakesh_choudhury

    Your question is not clear. May be i can help if you answer the following. "Do you want some code through which you can take backup programatically. Similary restore an existing backed-up DB." And are you using 'SQL Server' db ? :confused:

    C#

  • code doubt
    R rakesh_choudhury

    For Console.WriteLine(str==str); here compiler checks "hai" is "hai" or not !! Compiler : Yes So your Console.WriteLine(str==str); is "True". For Console.WriteLine("Hello"+str==str); now the compiler checks is "Hellohai"(the outcome of "Hello"+str) is "hai". "Hellohai" == "hai" Compiler : no So your Console.WriteLine("Hello"+str==str); is "False". The key portion here is C# operator Precedence. :-O

    C#
  • Login

  • Don't have an account? Register

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