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
P

PicklesTheClown

@PicklesTheClown
About
Posts
7
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problem with custom config sections
    P PicklesTheClown

    The value returned from GetSection() will be the object (if any) returned from your IConfigurationSectionHandler.Create() implementation. Put a breakpoint in your... FeedLib.SsnConfigurationHandler.Create() ...method - it should get hit and you can see any issues in there.

    C# help question workspace

  • how to access to Control's Property from other forms ?
    P PicklesTheClown

    Form2 needs access to textBox1. There are various ways you can accomplish this. One might be...

    public class Form2 : Form
    { 
       private TextBox _textBox;
       public TextBox RemoteTextBox
       {  get{ _textBox = value; } }
       // ...
    }
    
    form2.RemoteTextBox = form1.textBox1;
    
    C# tutorial question

  • how to represent xml document on treeviewer using c#
    P PicklesTheClown

    Add a section that processes attributes similar to the processing of child nodes. Something like...

      if (inXmlNode.Attributes != null)
      {
        foreach (XmlAttribute attribute in inXmlNode.Attributes)
        {
          inTreeNode.Nodes.Add(new TreeNode(attribute.Name));
        }
      }
    
    C# csharp html xml help tutorial

  • Custom Stack
    P PicklesTheClown

    A little curious by your code snippet. Try: public class GenStack : IEnumerable where T:class { public GenStack(...) { ... } public IEnumerator GetEnumerator() { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { } } -- modified at 16:53 Tuesday 14th February, 2006

    C# data-structures help question

  • C# 2.0 Key + Mouse Move
    P PicklesTheClown

    ModifierKeys is a static property - which just calls the Win32 API "GetKeyState". This doesn't require any state information (like 'sender' or 'e') - and can basically be called from anywhere at any time.

    C# question csharp

  • C# 2.0 Key + Mouse Move
    P PicklesTheClown

    Control.ModifierKeys

    C# question csharp

  • ListView OwnerDraw and Custom Background
    P PicklesTheClown

    I am failing in finding a way to use the new ListView.OwnerDraw=true and render a custom background. - ListView.BackgroundImage does not work for our needs. - SetStyle(ControlStyles.UserPaint, true); causes OnPaint and OnPaintBackground to fire *after* OnDrawItem, erasing any custom Item rendering. Am I missing a way to custom draw a ListView background while using the new-fangled OwnerDraw?

    C# 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