Click here to Skip to main content
15,886,199 members
Home / Discussions / C#
   

C#

 
AnswerRe: Export To word problem Pin
Pete O'Hanlon23-Feb-12 22:24
mvePete O'Hanlon23-Feb-12 22:24 
GeneralRe: Export To word problem Pin
helmidj27-Feb-12 4:37
helmidj27-Feb-12 4:37 
QuestionAsp.net MVC Pin
santhosh.kumar8323-Feb-12 20:32
santhosh.kumar8323-Feb-12 20:32 
AnswerRe: Asp.net MVC Pin
Richard MacCutchan23-Feb-12 22:28
mveRichard MacCutchan23-Feb-12 22:28 
QuestionHow to set up dataGridView background image, or transparent background Pin
Member 860388323-Feb-12 18:19
Member 860388323-Feb-12 18:19 
AnswerRe: How to set up dataGridView background image, or transparent background Pin
Eddy Vluggen24-Feb-12 0:50
professionalEddy Vluggen24-Feb-12 0:50 
GeneralRe: How to set up dataGridView background image, or transparent background Pin
Member 860388328-Feb-12 19:01
Member 860388328-Feb-12 19:01 
AnswerRe: How to set up dataGridView background image, or transparent background Pin
Eddy Vluggen29-Feb-12 8:51
professionalEddy Vluggen29-Feb-12 8:51 
On demand;
C#
class MyDgv : DataGridView
{
    public override Image BackgroundImage
    {
        get
        {
            return base.BackgroundImage;
        }
        set
        {
            base.BackgroundImage = value;
        }
    }
    protected override void PaintBackground(
        Graphics graphics, Rectangle clipBounds, Rectangle gridBounds)
    {
        base.PaintBackground(graphics, clipBounds, gridBounds);
        graphics.DrawImage(BackgroundImage, new Point(0, 0));
    }
}

C#
public partial class Form1 : Form
{
    MyDgv _dgv = new MyDgv();

    public Form1()
    {
        InitializeComponent();

        _dgv.Dock = DockStyle.Fill;
        _dgv.BackgroundImage = Image.FromFile(
            @"C:\Users\Eddy PC\Pictures\untitled.bmp");
        _dgv.DataSource = new List<DateTime>() { 
            DateTime.MinValue, 
            DateTime.Now, 
            DateTime.MaxValue };
        this.Controls.Add(_dgv);
    }
}

Bastard Programmer from Hell Suspicious | :suss:

Questionproblème de connexion avec un serveur mysql distant Pin
MemberDotNetting23-Feb-12 12:52
MemberDotNetting23-Feb-12 12:52 
AnswerRe: problème de connexion avec un serveur mysql distant Pin
R. Giskard Reventlov23-Feb-12 13:02
R. Giskard Reventlov23-Feb-12 13:02 
AnswerRe: problème de connexion avec un serveur mysql distant PinPopular
Mycroft Holmes23-Feb-12 13:17
professionalMycroft Holmes23-Feb-12 13:17 
AnswerRe: problème de connexion avec un serveur mysql distant Pin
Luc Pattyn23-Feb-12 14:01
sitebuilderLuc Pattyn23-Feb-12 14:01 
AnswerRe: problème de connexion avec un serveur mysql distant Pin
Eddy Vluggen24-Feb-12 0:52
professionalEddy Vluggen24-Feb-12 0:52 
Questionmultiple column filter of datagridview by drag and drop of the column name Pin
polachan23-Feb-12 12:13
polachan23-Feb-12 12:13 
AnswerRe: multiple column filter of datagridview by drag and drop of the column name Pin
Mycroft Holmes23-Feb-12 13:26
professionalMycroft Holmes23-Feb-12 13:26 
JokeRe: multiple column filter of datagridview by drag and drop of the column name Pin
polachan24-Feb-12 1:52
polachan24-Feb-12 1:52 
QuestionDoublePrecision problem and DirectX Pin
sebekmez23-Feb-12 10:31
sebekmez23-Feb-12 10:31 
QuestionMultiple column soritng on filtered datagridview Pin
polachan23-Feb-12 5:03
polachan23-Feb-12 5:03 
AnswerRe: Multiple column soritng on filtered datagridview Pin
ProEnggSoft23-Feb-12 5:41
ProEnggSoft23-Feb-12 5:41 
GeneralRe: Multiple column soritng on filtered datagridview Pin
polachan23-Feb-12 12:17
polachan23-Feb-12 12:17 
GeneralRe: Multiple column soritng on filtered datagridview Pin
Pete O'Hanlon23-Feb-12 12:35
mvePete O'Hanlon23-Feb-12 12:35 
GeneralRe: Multiple column soritng on filtered datagridview Pin
polachan24-Feb-12 3:11
polachan24-Feb-12 3:11 
Questionvideo chatting using udp Pin
Hinnawi8723-Feb-12 2:51
Hinnawi8723-Feb-12 2:51 
AnswerRe: video chatting using udp Pin
BobJanova23-Feb-12 2:54
BobJanova23-Feb-12 2:54 
GeneralRe: video chatting using udp Pin
harold aptroot23-Feb-12 3:51
harold aptroot23-Feb-12 3:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.