Click here to Skip to main content
15,890,282 members
Home / Discussions / C#
   

C#

 
QuestionHelp with Web Service Upload Pin
charles Frank29-Apr-09 10:16
charles Frank29-Apr-09 10:16 
QuestionHow can I use cookies stored by Internet Explorer 7(in Vista) in my WinForms application? Pin
rebulanyum29-Apr-09 10:08
rebulanyum29-Apr-09 10:08 
AnswerRe: How can I use cookies stored by Internet Explorer 7(in Vista) in my WinForms application? Pin
Henry Minute29-Apr-09 10:59
Henry Minute29-Apr-09 10:59 
AnswerRe: How can I use cookies stored by Internet Explorer 7(in Vista) in my WinForms application? [modified] Pin
rebulanyum30-Apr-09 4:36
rebulanyum30-Apr-09 4:36 
QuestionWhy pictures aren't shown in listview Pin
Aljaz11129-Apr-09 9:06
Aljaz11129-Apr-09 9:06 
AnswerRe: Why pictures aren't shown in listview Pin
Henry Minute29-Apr-09 9:34
Henry Minute29-Apr-09 9:34 
GeneralRe: Why pictures aren't shown in listview Pin
Aljaz11129-Apr-09 9:47
Aljaz11129-Apr-09 9:47 
GeneralRe: Why pictures aren't shown in listview Pin
Aljaz11129-Apr-09 10:01
Aljaz11129-Apr-09 10:01 
Now its duplicating images in listview...how could everytime someone adds image to it..that content before would be erased and new images would be added then..
private void btn_browse_Click()
        {

            this.listView1.View = View.LargeIcon;

            this.imageList1.ImageSize = new Size(60, 60);

            this.listView1.LargeImageList = this.imageList1;

            try
            {

                OpenFileDialog open = new OpenFileDialog();

                open.Filter = "Image Files(*.jpg; *.jpeg; *.gif; *.bmp)|*.jpg; *.jpeg; *.gif; *.bmp";

                if (open.ShowDialog() == DialogResult.OK)
                {

                    picture.Image = new Bitmap(open.FileName);
                    this.imageList1.Images.Add(Image.FromFile(open.FileName));

                 
                    

                }

            }

            catch (Exception)
            {

                throw new ApplicationException("Failed loading image");

            }

            for (int j = 0; j < this.imageList1.Images.Count; j++)
            {

                ListViewItem item = new ListViewItem();

                item.ImageIndex = j;

                this.listView1.Items.Add(item);

            }
            
            
           

        }

GeneralRe: Why pictures aren't shown in listview Pin
Dan Neely29-Apr-09 10:12
Dan Neely29-Apr-09 10:12 
GeneralRe: Why pictures aren't shown in listview Pin
Henry Minute29-Apr-09 10:18
Henry Minute29-Apr-09 10:18 
GeneralRe: Why pictures aren't shown in listview Pin
Aljaz11129-Apr-09 10:25
Aljaz11129-Apr-09 10:25 
GeneralRe: Why pictures aren't shown in listview Pin
Henry Minute29-Apr-09 10:35
Henry Minute29-Apr-09 10:35 
GeneralRe: Why pictures aren't shown in listview Pin
Aljaz11129-Apr-09 10:43
Aljaz11129-Apr-09 10:43 
GeneralRe: Why pictures aren't shown in listview Pin
Henry Minute29-Apr-09 10:54
Henry Minute29-Apr-09 10:54 
GeneralRe: Why pictures aren't shown in listview Pin
Aljaz11129-Apr-09 11:11
Aljaz11129-Apr-09 11:11 
GeneralRe: Why pictures aren't shown in listview Pin
Henry Minute29-Apr-09 11:28
Henry Minute29-Apr-09 11:28 
GeneralRe: Why pictures aren't shown in listview Pin
Aljaz11129-Apr-09 14:16
Aljaz11129-Apr-09 14:16 
GeneralRe: Why pictures aren't shown in listview Pin
Henry Minute30-Apr-09 0:30
Henry Minute30-Apr-09 0:30 
QuestionHow to display a textbox when checkbox is checked in C# Asp.net Pin
Shane Cavin29-Apr-09 8:39
Shane Cavin29-Apr-09 8:39 
AnswerRe: How to display a textbox when checkbox is checked in C# Asp.net Pin
Christian Graus29-Apr-09 10:18
protectorChristian Graus29-Apr-09 10:18 
AnswerRe: How to display a textbox when checkbox is checked in C# Asp.net Pin
dotnetmember29-Apr-09 19:43
dotnetmember29-Apr-09 19:43 
GeneralRe: How to display a textbox when checkbox is checked in C# Asp.net Pin
Shane Cavin30-Apr-09 3:42
Shane Cavin30-Apr-09 3:42 
Questionhow to convert string into code? Pin
rachelicohen29-Apr-09 7:24
rachelicohen29-Apr-09 7:24 
AnswerRe: how to convert string into code? Pin
Henry Minute29-Apr-09 7:34
Henry Minute29-Apr-09 7:34 
GeneralRe: how to convert string into code? Pin
rachelicohen29-Apr-09 7:55
rachelicohen29-Apr-09 7:55 

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.