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
N

Nitin K Kawale

@Nitin K Kawale
About
Posts
4
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Learning C++
    N Nitin K Kawale

    VC++ by David Kruglinski

    C / C++ / MFC csharp learning c++ visual-studio help

  • Looking for Cartesian graphic component for dotnet....
    N Nitin K Kawale

    please use System.Drawing namespace in your project. where you find the Graphics class which will give you all option to Draw anything by using cartesian co-ordinate system. for example.. using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D; using System.Drawing.Imaging; namespace WaveformDemo { public partial class WaveDisplay : UserControl { [DefaultValue(10)] int _XDivision; //Total X Division [DefaultValue(10)] int _YDivision; [DefaultValue(10.0f)]//1 Volt per Division float _voltsPerDivision; [DefaultValue(10.0f)]//1 Sec per Division float _timePerDivision; [Browsable(true),DefaultValue(10)] public int XDivisions { get { return _XDivision; } set { _XDivision = value; } } [Browsable(true), DefaultValue(10)] public int YDivisions { get { return _YDivision; } set { _YDivision = value; } } [Browsable(true),DefaultValue(10.0f)] public float VoltagePerDivision { get { return _voltsPerDivision; } set { _voltsPerDivision = value; } } [Browsable(true), DefaultValue(10.0f)] public float TimePerDivision { get { return _timePerDivision; } set { _timePerDivision = value; } } public override Image BackgroundImage { get { return base.BackgroundImage; } set { base.BackgroundImage = value; } } public override ImageLayout BackgroundImageLayout { get { return base.BackgroundImageLayout; } set { base.BackgroundImageLayout = value; } } public WaveDisplay() { InitializeComponent(

    Graphics graphics csharp winforms data-structures question

  • BitBlt() function performance question
    N Nitin K Kawale

    Hey why not using DirectX ,it uses Double buffering algorithm

    C / C++ / MFC performance question

  • Convert document to PDF format
    N Nitin K Kawale

    use primopdf software you can easily download from the net

    COM com help windows-admin tutorial
  • Login

  • Don't have an account? Register

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