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
K

ken tachyon

@ken tachyon
About
Posts
4
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How do i dock a window to the bottom of the screen?
    K ken tachyon

    I couldn't respond to your email because you haven't confirmed your address. I'm glad to see you got your answer.

    C# question

  • date time format
    K ken tachyon

    I tried to reply to your email but had a display name problem and could not. If you are still having problems send an email to this message giving me a sample of the code you are having the problem with. I will be able to look at it and respond to you then.

    C# regex xml question

  • How do i dock a window to the bottom of the screen?
    K ken tachyon

    The problem is in the "Y" axis location. Remember Y = "down the screen". this.Location = new Point(0, Screen.PrimaryScreen.Bounds.Height - this.Height); sets a location specified as x,y points. try: this.Location = new Point(0, Screen.PrimaryScreen.Bounds.Height - (this.Height / 2) ); You should see your line in the middle of the screen. Adjust the second parameter to be where you want it.

    C# question

  • date time format
    K ken tachyon

    You didn't specify the source of "your" date time format but it really shouldn't matter. If nothing else you can compare the individual fields. DateTime tmp = DateTime.Now(); if ( your.year == tmp.year && your.month == tmp.month ... You get the idea. If you use visual studio put the cursor on DataTime and press F1.:) ken.tachyon

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