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
C

curtisk

@curtisk
About
Posts
4
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How can i include animations in GUI
    C curtisk

    hrmm, this is a little open-ended. What type of animation are you referring to? Does the animation relate to events in the application? Need more info to advise.

    Windows Forms csharp visual-studio help question

  • ErrorProvider icon disappear after fixing the error
    C curtisk

    Well, to clarify further, you would re-verify the validity of the field, and if it was ok then you would "SetError" to ""

    C# help question

  • ErrorProvider icon disappear after fixing the error
    C curtisk

    you have to clear the Error String via SetError:

    errProvider.SetError (this, ""); //clear error string, icon hides

    C# help question

  • Convert a Java timestamp to C# DateTime object
    C curtisk

    Java time represents milliseconds since January 1, 1970, so if you account for that date instead of the January 1601 date, you should be OK.

    long tm = 1217404627332;

    DateTime dt = new DateTime(1970,1,1,0,0,0);
    dt = dt.AddMilliseconds(tm);
    MessageBox.Show("Time: " + dt.ToLongDateString());

    HTH - although I get Wednesday July 30,2008....closer! -curtisk

    C# question csharp java database mysql
  • Login

  • Don't have an account? Register

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