Posts

Showing posts from January, 2013

2012 Paper Solution for computer Science

For download  Gate paper solution  Click on to below link. Download here (1.0 MB) -- /\/ir@\/  <(.'.)>

GATE - 2011 Paper Solution for computer Science

For download  Gate paper solution  Click on to below link. Download here (95 KB) -- /\/ir@\/  <(.'.)> -- /\/ir@\/  <(.'.)>

GATE - 2004 Paper Solution for computer Science

For download  Gate paper solution  Click on to below link. Download here (95 KB) -- /\/ir@\/  <(.'.)>

Gate - 2003 Paper Solution for computer Science

Gate Paper Solution For 2003 paper Download Here (115 KB) -- /\/ir@\/  <(.'.)>

Gate - 2012 Paper Solution for computer Science

Gate Paper Solution For 2012 papers Download Here (115 KB) -- /\/ir@\/  <(.'.)>

How to use LinearGradientBrush whith fill rectangle in c#.net

Image
///////////////////     CODE    ///////////////////////// using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D; namespace _125 {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         private void panel1_Click(object sender, EventArgs e)         {             LinearGradientBrush lgb = new LinearGradientBrush(new Point(20, 70), new Point(70, 20), Color.Blue, Color.Violet);             Graphics g = panel1.CreateGraphics();             ColorBlend cb = new ColorBlend();                         cb.Colors = new Color[] {Color.White,Color.Black,Color.Blue,Color.GreenYellow };             cb.Positions = new float[] { 0, .33F, .66F, 1F };             g.FillRectangle(lgb, 20, 20, 100, 100);         }     } }   ///////////////////     OUTPUT   ////////////

How to use the LinearGradientBrush in c#.Net

Image
///////////////////    CODE   ////////////////////////// using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D; namespace _124 {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         private void panel1_Click(object sender, EventArgs e)         {            LinearGradientBrush lgb=new LinearGradientBrush(new Point(20,20),new Point(70,70),Color.Blue,Color.Red);             Graphics g=panel1.CreateGraphics();             g.FillRectangle(lgb,20,20,500,500);         }     } } ////////////////   OUTPUT   ///////////////////////// -- /\/ir@\/  <(.'.)>       How to customize send to menu.      How to hide folder without any software.      Android Installation for beginners_Part-1      Android Installation for beginners

How to Drawing string text in c#.Net

Image
For drawing string text you have to follow following steps... ////////////////////////  CODE  //////////////////////// using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace _123 {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         private void panel1_Click(object sender, EventArgs e)         {             SolidBrush s = new SolidBrush(Color.Blue);             Graphics g = panel1.CreateGraphics();             FontFamily ff = new FontFamily("arial");             System.Drawing.Font font = new System.Drawing.Font(ff, 50, FontStyle.Italic);             g.DrawString("Nirav", font, s, new Point(25, 25));         }     } } ///////////////////////    OUTPUT     ///////////////////////////      ઈન્ટરનેટ જોડાણ વગર તમારા મોબાઇલ માં ફેસબુક સાથે જો...