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
R

Rapier503

@Rapier503
About
Posts
8
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • pictureBox.image default (no picture)
    R Rapier503

    null works thank! I actually thought I had tried that. Rapier

    C# question

  • pictureBox.image default (no picture)
    R Rapier503

    Hi, I setting pictureBox.image = Image.FromFile("eweew.bmp"); This works file, but at times I want no picture to be displayed. How do I set pictureBox.image to no value or default? Thanks in advance. Rapier

    C# question

  • Problem with code after ShowDialog and XML add node
    R Rapier503

    Hello, The code below I have:- static string filename; static XmlDocument xmlDoc; and open the XML file in the Form Load. If I remove the :- if (testDialog.ShowDialog() == DialogResult.OK) Line the XML addnode code works OK. With the ShowDialog() line in the XML node add code does not work. Why? Also is there something I can check (return code?) to make sure each part of the add node lines of code has worked? void Button1Click(object sender, EventArgs e) { NewForm testDialog = new NewForm(); if (testDialog.ShowDialog() == DialogResult.OK) { MessageBox.Show("Here"); XmlNode root = xmlDoc.DocumentElement; XmlElement childNode = xmlDoc.CreateElement("ABCD"); XmlElement childNode2 =xmlDoc.CreateElement("Name"); XmlText textNode = xmlDoc.CreateTextNode("ABCD"); root.AppendChild(childNode); childNode.AppendChild(childNode2); childNode2.SetAttribute("Name", "Name"); childNode2.AppendChild(textNode); xmlDoc.Save(filename); MessageBox.Show("Here2"); } testDialog.Dispose(); } Thanks is Advance, Rapier

    C# xml help question

  • Start/stop button
    R Rapier503

    Thanks BackgroundWorker looks right for the job !!!

    C# database tutorial question

  • Start/stop button
    R Rapier503

    Thanks, but I don't think this is what I want. I want the code that is started (with the start button) to run continuously (loop within the code) until the stop button is pressed. Thanks

    C# database tutorial question

  • Start/stop button
    R Rapier503

    I am wanting to use a button on a form as a start/stop button for a piece of code. I could put the piece of code in the click function for the button, but is there a better way of achieving this? Via a object of another function? If so how would I trigger the start stop? Please give a code example. Thanks in advance.

    C# database tutorial question

  • Lock ListView Colums
    R Rapier503

    Hi, How do you stop listview columns been able to be resized? I want to lock the column sizes. Thanks in Advance. Rapier503

    C# question

  • Newbie Inheritance question
    R Rapier503

    When you inherited from a base case do you ALWAYS inherit all the functions and variables of the base class? I.e. If a base class has hundreds of variables and hundreds of functions do you inherit them all even if you don’t need them? Thanks in advance. Rapier503

    C# question oop
  • Login

  • Don't have an account? Register

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