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
F

FriendlyFiend

@FriendlyFiend
About
Posts
13
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to add module in c#.net?
    F FriendlyFiend

    why do you need this, a class with static methods has equivalent functionality

    C# csharp tutorial question

  • How to make toolbar
    F FriendlyFiend

    check out this article here at codeproject

    C# csharp help tutorial

  • how to hide treeview node???
    F FriendlyFiend

    Do'nt draw the childelements to the treeview, you can store them as XmlElements in the tag property of the parent node and retrieve it when you need

    C# help tutorial question

  • Which Better Thread or ThreadPool
    F FriendlyFiend

    Thats not neccessarily true, you need a profiler to actually to find out whats going on, try checking some of the perf counters while your app is running, maybe you are allocating several objects and not disposing them causing the GC to run often, The network stream could also be acting asychronously If you are having more than one client connecting to your server then possibly the ThreadPool will be better as it will manage your thread allocation more efficiently.

    C# question sysadmin performance help code-review

  • Group similar taskbar buttons in the Taskbar doesn't work ( C# solution ) ?
    F FriendlyFiend

    The rough hack appears to be setting a registry key under HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\MUICache for the full application path with a group name value eg. name: "c:\myapp\app.exe", value: My Apps will group all instances of your application under "My Apps"

    C# question csharp

  • StartUp Windows
    F FriendlyFiend

    The simplest way is to put a shortcut to your app under the Startup folder of the Programs menu in your Start menu, the more complicated way is to add it to add a key to the registry .

    C#

  • Good tools to find dead C# code...
    F FriendlyFiend

    What about NCover, its primarily used to check for test coverage but can be used for your purposes too I think

    C# csharp html com tools question

  • i getting error with database connection
    F FriendlyFiend

    Try deleting any *.LDB files in the same folder as the MDB these are used by access to manage simultaneous logins for the MDB, usually these are left without cleanup if the connection is not closed properly

    ASP.NET database help

  • usb interfacing in C#
    F FriendlyFiend

    you could try the USB library over at http://www.icsharpcode.com for a raw USB C# implementation.

    C# csharp design hardware tutorial

  • How to disable status bar messages for Hyperlink Controls
    F FriendlyFiend

    You could try resetting the status bar with an empty string or some other display text when the cursor is over the link, I don't think empty strings will work and you need to show some other text. eg. a...

    ASP.NET tutorial

  • The difference between . and ,
    F FriendlyFiend

    The best way is to provide a IFormatProvider from the culture in which your App is running this makes sure you have international support. Eg, Double.Parse(N, Thread.CurrentCulture.NumberFormat); A short term fix is to pass a number style argument to Double.Parse, with the current decimal seperator in your case "," in some other countries ".", look up MSDN for details on numberstyles, basic format is [ws][sign]integral-digits[.[fractional-digits]][e[sign]exponential-digits][ws]

    C# question

  • How to check if an item already exists in a listbox? Give an Example
    F FriendlyFiend

    You can use the ListItemCollection's FindByValue/FindByText methods to see if a value exists in the ListBox. eg. if(null==ListBox1.Items.FindByValue(NewItem.Value))ListBox1.Items.Add(NewItem)

    ASP.NET tutorial question

  • Covariant return types?
    F FriendlyFiend

    You are thinking only in terms of string is a typeof object kind of way what, if the return types did not come from the same hierarchy at all eg. base class returns point your override returns string, this is a very difficult thing to keep track of especially if you want the compiler to throw errors in these kind of situations ...

    C# csharp c++ com tools help
  • Login

  • Don't have an account? Register

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