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
S

simplefolk

@simplefolk
About
Posts
3
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Xml validation. Please help.
    S simplefolk

    I beleive you have to read the entire file in order for it to validate try this

    Settings = new XmlReaderSettings();
    Settings.ValidationType = ValidationType.Schema;
    Settings.Schemas.Add("http://tempuri.org/Unit.xsd", Directory.GetCurrentDirectory() + strXmlSchema);
    Settings.ValidationEventHandler += new ValidationEventHandler(OnSchemaValidationError);

    using (XmlReader Reader = XmlReader.Create(Directory.GetCurrentDirectory() + strXmlFile, Settings))
    {
    if (Reader != null)
    {
    while(Reader.Read()){}
    }
    }

    C# xml database help question announcement

  • What is the best way to make application Multi Language ?
    S simplefolk

    Don't know if they like product recommendations here but this is what I have used in the past http://www.jollans.com/tiki/tiki-index.php

    C# question

  • Strange windows forms control bug?
    S simplefolk

    I'm assuming your using autoscroll I have had better luck setting the postion

    int distX += HorizontalScroll.Value;
    int distY += VerticalScroll.Value;
    //do some sort of range check
    //then set the AutoScrollPostion
    AutoScrollPosition = new Point(x, y);

    hope this helps

    C# help question csharp winforms
  • Login

  • Don't have an account? Register

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