Click here to Skip to main content
15,894,955 members
Home / Discussions / C#
   

C#

 
GeneralRe: ListView control in Csharp smart device Pin
Ravi Bhavnani2-Apr-10 9:16
professionalRavi Bhavnani2-Apr-10 9:16 
GeneralRe: ListView control in Csharp smart device Pin
Tunisien862-Apr-10 9:21
Tunisien862-Apr-10 9:21 
AnswerRe: ListView control in Csharp smart device Pin
Ravi Bhavnani2-Apr-10 9:25
professionalRavi Bhavnani2-Apr-10 9:25 
GeneralRe: ListView control in Csharp smart device Pin
Tunisien862-Apr-10 9:49
Tunisien862-Apr-10 9:49 
AnswerRe: ListView control in Csharp smart device Pin
Ravi Bhavnani2-Apr-10 10:04
professionalRavi Bhavnani2-Apr-10 10:04 
GeneralRe: ListView control in Csharp smart device Pin
Tunisien862-Apr-10 13:26
Tunisien862-Apr-10 13:26 
GeneralRe: ListView control in Csharp smart device Pin
Ravi Bhavnani2-Apr-10 13:31
professionalRavi Bhavnani2-Apr-10 13:31 
GeneralRe: ListView control in Csharp smart device Pin
Tunisien862-Apr-10 22:54
Tunisien862-Apr-10 22:54 
Hi Ravi,
I want to ask u before that in ImageList'proprieties i give as image size 64,64 but in reality my images(icons) haven't this size.Is that a problem.
For my code,my project contain 1 Form which has this code
using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Essaie
{
    public partial class Form1 : Form
    {
       
           
            public Form1()
            {
                InitializeComponent();

            }

            private void Form1_Load(object sender, EventArgs e)
            {
                ListView MaLV = new ListView();
                MaLV.Parent = this;
                MaLV.Dock = DockStyle.Fill;
                MaLV.View = View.Details;

                ColumnHeader ch = new ColumnHeader();
                ch.Text = "Column Name";
                MaLV.Columns.Add(ch);

                MaLV.Items.Add(new ListViewItem("Travaux"));
                MaLV.Items.Add(new ListViewItem("Stocks"));
                MaLV.Items.Add(new ListViewItem("Energie"));
                MaLV.Items.Add(new ListViewItem("Synchronisation"));
                MaLV.Items.Add(new ListViewItem("Informations"));
                MaLV.Items.Add(new ListViewItem("Quitter"));
                this.Controls.Add(MaLV);
            }
        }

}

Thanks a lot for u contribution
Marwen
AnswerRe: ListView control in Csharp smart device Pin
leckey2-Apr-10 5:56
leckey2-Apr-10 5:56 
GeneralRe: ListView control in Csharp smart device Pin
Tunisien862-Apr-10 6:01
Tunisien862-Apr-10 6:01 
Questionworkflow question : need wfmc standard tables definitions. Pin
hdv2122-Apr-10 4:14
hdv2122-Apr-10 4:14 
AnswerRe: workflow question : need wfmc standard tables definitions. Pin
Richard MacCutchan2-Apr-10 4:18
mveRichard MacCutchan2-Apr-10 4:18 
GeneralRe: workflow question : need wfmc standard tables definitions. Pin
Abhinav S2-Apr-10 5:01
Abhinav S2-Apr-10 5:01 
QuestionForm data printing problem Pin
Mark F.2-Apr-10 3:54
Mark F.2-Apr-10 3:54 
AnswerRe: Form data printing problem Pin
Luc Pattyn2-Apr-10 3:59
sitebuilderLuc Pattyn2-Apr-10 3:59 
GeneralRe: Form data printing problem Pin
Mark F.2-Apr-10 4:11
Mark F.2-Apr-10 4:11 
GeneralRe: Form data printing problem Pin
Luc Pattyn2-Apr-10 4:20
sitebuilderLuc Pattyn2-Apr-10 4:20 
GeneralRe: Form data printing problem Pin
Mark F.2-Apr-10 4:26
Mark F.2-Apr-10 4:26 
Questionvscrollbar Pin
v17.poornima2-Apr-10 3:17
v17.poornima2-Apr-10 3:17 
AnswerRe: vscrollbar Pin
Ravi Bhavnani2-Apr-10 7:06
professionalRavi Bhavnani2-Apr-10 7:06 
QuestionSQL Data Base Update - Best approach nested implementation Pin
boreland2-Apr-10 2:26
boreland2-Apr-10 2:26 
AnswerRe: SQL Data Base Update - Best approach nested implementation Pin
Not Active2-Apr-10 2:40
mentorNot Active2-Apr-10 2:40 
GeneralRe: SQL Data Base Update - Best approach nested implementation Pin
boreland2-Apr-10 4:59
boreland2-Apr-10 4:59 
GeneralRe: SQL Data Base Update - Best approach nested implementation Pin
Not Active2-Apr-10 5:48
mentorNot Active2-Apr-10 5:48 
AnswerRe: SQL Data Base Update - Best approach nested implementation Pin
boreland2-Apr-10 5:00
boreland2-Apr-10 5:00 

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.