473,378 Members | 1,468 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

listview item selection..??

hi groups,

I have placed an listview control, i want to iterate thru the control and find the clicked event items.

listView2.Items.Add(fname[i].ToString(), i);

how i can perform the iteration to find the item clicked...? and its item.

thankz--
Mähésh Kumär. R
Nov 17 '05 #1
13 3722
Hi,

You can use the SelectedIndexChanged event with the SelectedIndices/SelectedItems properties to find the selected items.

If you really want to use the Mouse position in a Click event, or need to find out which subitem was clicked in detail view, you can use

Point p = listView1.PointToClient(Control.MousePosition);
ListViewItem l = listView1.GetItemAt(p.X, p.Y);
On Sat, 23 Jul 2005 09:42:41 +0200, Maheshkumar.R <cy**********@yahoo.com> wrote:
hi groups,

I have placed an listview control, i want to iterate thru the control and find the clicked event items.

listView2.Items.Add(fname[i].ToString(), i);

how i can perform the iteration to find the item clicked...? and its item.

thankz--
Mähésh Kumär. R


--
Happy coding!
Morten Wennevik [C# MVP]
Nov 17 '05 #2
Hi,

You can use the SelectedIndexChanged event with the SelectedIndices/SelectedItems properties to find the selected items.

If you really want to use the Mouse position in a Click event, or need to find out which subitem was clicked in detail view, you can use

Point p = listView1.PointToClient(Control.MousePosition);
ListViewItem l = listView1.GetItemAt(p.X, p.Y);
On Sat, 23 Jul 2005 09:42:41 +0200, Maheshkumar.R <cy**********@yahoo.com> wrote:
hi groups,

I have placed an listview control, i want to iterate thru the control and find the clicked event items.

listView2.Items.Add(fname[i].ToString(), i);

how i can perform the iteration to find the item clicked...? and its item.

thankz--
Mähésh Kumär. R


--
Happy coding!
Morten Wennevik [C# MVP]
Nov 17 '05 #3
{

{

Image imp=new Bitmap(bmp);

Image thumbnail = imp.GetThumbnailImage(300, 300, null, new Inept());

imageless.Images.Add(thumbnail);

listView2.Items.Add(fame[i].To(), I);

}

Here I want to handle the Click event of a pictures in the list
control,like explorer...if I click thumbnail privet off picture in left
pane, when I click it should display as full image in the right pane is my
requirements,

please guide

Maheshkumar.OR



"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:op.sucyjra5klbvpo@stone...
Hi,

You can use the SelectedIndexChanged event with the SelectedIndices/SelectedItems properties to find the selected items.
If you really want to use the Mouse position in a Click event, or need to find out which subitem was clicked in detail view, you can use
Point p = listView1.PointToClient(Control.MousePosition);
ListViewItem l = listView1.GetItemAt(p.X, p.Y);
On Sat, 23 Jul 2005 09:42:41 +0200, Maheshkumar.R <cy**********@yahoo.com> wrote:
hi groups,

I have placed an listview control, i want to iterate thru the control and find the clicked event items.
listView2.Items.Add(fname[i].ToString(), i);

how i can perform the iteration to find the item clicked...? and its item.
thankz--
Mähésh Kumär. R


--
Happy coding!
Morten Wennevik [C# MVP]

Nov 17 '05 #4
{

{

Image imp=new Bitmap(bmp);

Image thumbnail = imp.GetThumbnailImage(300, 300, null, new Inept());

imageless.Images.Add(thumbnail);

listView2.Items.Add(fame[i].To(), I);

}

Here I want to handle the Click event of a pictures in the list
control,like explorer...if I click thumbnail privet off picture in left
pane, when I click it should display as full image in the right pane is my
requirements,

please guide

Maheshkumar.OR



"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:op.sucyjra5klbvpo@stone...
Hi,

You can use the SelectedIndexChanged event with the SelectedIndices/SelectedItems properties to find the selected items.
If you really want to use the Mouse position in a Click event, or need to find out which subitem was clicked in detail view, you can use
Point p = listView1.PointToClient(Control.MousePosition);
ListViewItem l = listView1.GetItemAt(p.X, p.Y);
On Sat, 23 Jul 2005 09:42:41 +0200, Maheshkumar.R <cy**********@yahoo.com> wrote:
hi groups,

I have placed an listview control, i want to iterate thru the control and find the clicked event items.
listView2.Items.Add(fname[i].ToString(), i);

how i can perform the iteration to find the item clicked...? and its item.
thankz--
Mähésh Kumär. R


--
Happy coding!
Morten Wennevik [C# MVP]

Nov 17 '05 #5
I'm afraid I don't understand.

Do you have a listView in the left pane of image thumbnails (icons), and if one of the thumbnails are selected (clicked), display the full image in the right pane?

If so, store a reference to the full image in the ListViewItem.Tag property, and use this reference to display the full image.
On Sat, 23 Jul 2005 10:59:25 +0200, Maheshkumar.R <cy**********@yahoo.com> wrote:
{

{

Image imp=new Bitmap(bmp);

Image thumbnail = imp.GetThumbnailImage(300, 300, null, new Inept());

imageless.Images.Add(thumbnail);

listView2.Items.Add(fame[i].To(), I);

}

Here I want to handle the Click event of a pictures in the list
control,like explorer...if I click thumbnail privet off picture in left
pane, when I click it should display as full image in the right pane is my
requirements,

please guide

Maheshkumar.OR



"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:op.sucyjra5klbvpo@stone...
Hi,

You can use the SelectedIndexChanged event with the

SelectedIndices/SelectedItems properties to find the selected items.

If you really want to use the Mouse position in a Click event, or need to

find out which subitem was clicked in detail view, you can use

Point p = listView1.PointToClient(Control.MousePosition);
ListViewItem l = listView1.GetItemAt(p.X, p.Y);
On Sat, 23 Jul 2005 09:42:41 +0200, Maheshkumar.R <cy**********@yahoo.com>

wrote:
> hi groups,
>
> I have placed an listview control, i want to iterate thru the control and find the clicked event items. >
> listView2.Items.Add(fname[i].ToString(), i);
>
> how i can perform the iteration to find the item clicked...? and its item. >
> thankz--
> Mähésh Kumär. R
>
>


--
Happy coding!
Morten Wennevik [C# MVP]



--
Happy coding!
Morten Wennevik [C# MVP]
Nov 17 '05 #6
I'm afraid I don't understand.

Do you have a listView in the left pane of image thumbnails (icons), and if one of the thumbnails are selected (clicked), display the full image in the right pane?

If so, store a reference to the full image in the ListViewItem.Tag property, and use this reference to display the full image.
On Sat, 23 Jul 2005 10:59:25 +0200, Maheshkumar.R <cy**********@yahoo.com> wrote:
{

{

Image imp=new Bitmap(bmp);

Image thumbnail = imp.GetThumbnailImage(300, 300, null, new Inept());

imageless.Images.Add(thumbnail);

listView2.Items.Add(fame[i].To(), I);

}

Here I want to handle the Click event of a pictures in the list
control,like explorer...if I click thumbnail privet off picture in left
pane, when I click it should display as full image in the right pane is my
requirements,

please guide

Maheshkumar.OR



"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:op.sucyjra5klbvpo@stone...
Hi,

You can use the SelectedIndexChanged event with the

SelectedIndices/SelectedItems properties to find the selected items.

If you really want to use the Mouse position in a Click event, or need to

find out which subitem was clicked in detail view, you can use

Point p = listView1.PointToClient(Control.MousePosition);
ListViewItem l = listView1.GetItemAt(p.X, p.Y);
On Sat, 23 Jul 2005 09:42:41 +0200, Maheshkumar.R <cy**********@yahoo.com>

wrote:
> hi groups,
>
> I have placed an listview control, i want to iterate thru the control and find the clicked event items. >
> listView2.Items.Add(fname[i].ToString(), i);
>
> how i can perform the iteration to find the item clicked...? and its item. >
> thankz--
> Mähésh Kumär. R
>
>


--
Happy coding!
Morten Wennevik [C# MVP]



--
Happy coding!
Morten Wennevik [C# MVP]
Nov 17 '05 #7
Even i'm confused..:)..thanks for your reply.

In simple way- let say i'm having 10 items in my list item. how i can find
the particular image has been selected in that list of 10 items.Items may
vary.., at runtime, i should iterate thru collection and get my list
item...how ??
i mean, is there any method or way to get my user selected item in my
dynamic listitem..?

thankz
Maheshkumar.R
"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:op.suc1icpgklbvpo@stone...
I'm afraid I don't understand.

Do you have a listView in the left pane of image thumbnails (icons), and if one of the thumbnails are selected (clicked), display the full image in
the right pane?
If so, store a reference to the full image in the ListViewItem.Tag property, and use this reference to display the full image.

On Sat, 23 Jul 2005 10:59:25 +0200, Maheshkumar.R <cy**********@yahoo.com> wrote:
{

{

Image imp=new Bitmap(bmp);

Image thumbnail = imp.GetThumbnailImage(300, 300, null, new Inept());

imageless.Images.Add(thumbnail);

listView2.Items.Add(fame[i].To(), I);

}

Here I want to handle the Click event of a pictures in the list
control,like explorer...if I click thumbnail privet off picture in left
pane, when I click it should display as full image in the right pane is my requirements,

please guide

Maheshkumar.OR



"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:op.sucyjra5klbvpo@stone...
Hi,

You can use the SelectedIndexChanged event with the

SelectedIndices/SelectedItems properties to find the selected items.

If you really want to use the Mouse position in a Click event, or need
to find out which subitem was clicked in detail view, you can use

Point p = listView1.PointToClient(Control.MousePosition);
ListViewItem l = listView1.GetItemAt(p.X, p.Y);
On Sat, 23 Jul 2005 09:42:41 +0200, Maheshkumar.R
<cy**********@yahoo.com> wrote:

> hi groups,
>
> I have placed an listview control, i want to iterate thru the control

and find the clicked event items.
>
> listView2.Items.Add(fname[i].ToString(), i);
>
> how i can perform the iteration to find the item clicked...? and its

item.
>
> thankz--
> Mähésh Kumär. R
>
>

--
Happy coding!
Morten Wennevik [C# MVP]



--
Happy coding!
Morten Wennevik [C# MVP]

Nov 17 '05 #8
Even i'm confused..:)..thanks for your reply.

In simple way- let say i'm having 10 items in my list item. how i can find
the particular image has been selected in that list of 10 items.Items may
vary.., at runtime, i should iterate thru collection and get my list
item...how ??
i mean, is there any method or way to get my user selected item in my
dynamic listitem..?

thankz
Maheshkumar.R
"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:op.suc1icpgklbvpo@stone...
I'm afraid I don't understand.

Do you have a listView in the left pane of image thumbnails (icons), and if one of the thumbnails are selected (clicked), display the full image in
the right pane?
If so, store a reference to the full image in the ListViewItem.Tag property, and use this reference to display the full image.

On Sat, 23 Jul 2005 10:59:25 +0200, Maheshkumar.R <cy**********@yahoo.com> wrote:
{

{

Image imp=new Bitmap(bmp);

Image thumbnail = imp.GetThumbnailImage(300, 300, null, new Inept());

imageless.Images.Add(thumbnail);

listView2.Items.Add(fame[i].To(), I);

}

Here I want to handle the Click event of a pictures in the list
control,like explorer...if I click thumbnail privet off picture in left
pane, when I click it should display as full image in the right pane is my requirements,

please guide

Maheshkumar.OR



"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:op.sucyjra5klbvpo@stone...
Hi,

You can use the SelectedIndexChanged event with the

SelectedIndices/SelectedItems properties to find the selected items.

If you really want to use the Mouse position in a Click event, or need
to find out which subitem was clicked in detail view, you can use

Point p = listView1.PointToClient(Control.MousePosition);
ListViewItem l = listView1.GetItemAt(p.X, p.Y);
On Sat, 23 Jul 2005 09:42:41 +0200, Maheshkumar.R
<cy**********@yahoo.com> wrote:

> hi groups,
>
> I have placed an listview control, i want to iterate thru the control

and find the clicked event items.
>
> listView2.Items.Add(fname[i].ToString(), i);
>
> how i can perform the iteration to find the item clicked...? and its

item.
>
> thankz--
> Mähésh Kumär. R
>
>

--
Happy coding!
Morten Wennevik [C# MVP]



--
Happy coding!
Morten Wennevik [C# MVP]

Nov 17 '05 #9
Well, as I said in an earlier post, there is ListView.SelectedItems/SelectedIndices or using ListView.GetItemAt(Point)

When an item is selected, the SelectedIndexChanged event is triggered. In this event, call the SelectedItems property of the ListView.

What I suspect you want to do is to add a reference to an image or a filename for each ListViewItem you add to the ListView. I don't know what you are putting in the ListView as the line 'listView2.Items.Add(fame[i].To(), I)' doesn't tell me much, but you could do something like this:

string[] filenames = Directory.GetFiles(path);
foreach(string s in filenames)
{
ListViewItem lvi = new ListViewItem(s);
lvi.Tag = s;

listView1.Items.Add(s);
}

In the SelectedIndexChanged event, you could do something like

private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
if(listView1.SelectedItems.Count == 0)
return;

ListViewItem lvi = listView1.SelectedItems[0];
string s = (string)lvi.Tag;
// Image i = Image.FromFile(s);
}
Of course, in this particular example you could simply use the Text property to get the filename.
On Sat, 23 Jul 2005 12:05:09 +0200, Maheshkumar.R <cy**********@yahoo.com> wrote:
Even i'm confused..:)..thanks for your reply.

In simple way- let say i'm having 10 items in my list item. how i can find
the particular image has been selected in that list of 10 items.Items may
vary.., at runtime, i should iterate thru collection and get my list
item...how ??
i mean, is there any method or way to get my user selected item in my
dynamic listitem..?

thankz
Maheshkumar.R
"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:op.suc1icpgklbvpo@stone...
I'm afraid I don't understand.

Do you have a listView in the left pane of image thumbnails (icons), and

if one of the thumbnails are selected (clicked), display the full image in
the right pane?

If so, store a reference to the full image in the ListViewItem.Tag

property, and use this reference to display the full image.


On Sat, 23 Jul 2005 10:59:25 +0200, Maheshkumar.R <cy**********@yahoo.com>

wrote:
> {
>
> {
>
> Image imp=new Bitmap(bmp);
>
> Image thumbnail = imp.GetThumbnailImage(300, 300, null, new Inept());
>
> imageless.Images.Add(thumbnail);
>
> listView2.Items.Add(fame[i].To(), I);
>
> }
>
>
>
> Here I want to handle the Click event of a pictures in the list
> control,like explorer...if I click thumbnail privet off picture in left
> pane, when I click it should display as full image in the right pane is my > requirements,
>
> please guide
>
> Maheshkumar.OR
>
>
>
>
>
>
>
>
>
> "Morten Wennevik" <Mo************@hotmail.com> wrote in message
> news:op.sucyjra5klbvpo@stone...
>> Hi,
>>
>> You can use the SelectedIndexChanged event with the
> SelectedIndices/SelectedItems properties to find the selected items.
>>
>> If you really want to use the Mouse position in a Click event, or need to > find out which subitem was clicked in detail view, you can use
>>
>> Point p = listView1.PointToClient(Control.MousePosition);
>> ListViewItem l = listView1.GetItemAt(p.X, p.Y);
>>
>>
>> On Sat, 23 Jul 2005 09:42:41 +0200, Maheshkumar.R <cy**********@yahoo.com> > wrote:
>>
>> > hi groups,
>> >
>> > I have placed an listview control, i want to iterate thru the control
> and find the clicked event items.
>> >
>> > listView2.Items.Add(fname[i].ToString(), i);
>> >
>> > how i can perform the iteration to find the item clicked...? and its
> item.
>> >
>> > thankz--
>> > Mähésh Kumär. R
>> >
>> >
>>
>>
>>
>> --
>> Happy coding!
>> Morten Wennevik [C# MVP]
>
>
>


--
Happy coding!
Morten Wennevik [C# MVP]



--
Happy coding!
Morten Wennevik [C# MVP]
Nov 17 '05 #10
Well, as I said in an earlier post, there is ListView.SelectedItems/SelectedIndices or using ListView.GetItemAt(Point)

When an item is selected, the SelectedIndexChanged event is triggered. In this event, call the SelectedItems property of the ListView.

What I suspect you want to do is to add a reference to an image or a filename for each ListViewItem you add to the ListView. I don't know what you are putting in the ListView as the line 'listView2.Items.Add(fame[i].To(), I)' doesn't tell me much, but you could do something like this:

string[] filenames = Directory.GetFiles(path);
foreach(string s in filenames)
{
ListViewItem lvi = new ListViewItem(s);
lvi.Tag = s;

listView1.Items.Add(s);
}

In the SelectedIndexChanged event, you could do something like

private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
if(listView1.SelectedItems.Count == 0)
return;

ListViewItem lvi = listView1.SelectedItems[0];
string s = (string)lvi.Tag;
// Image i = Image.FromFile(s);
}
Of course, in this particular example you could simply use the Text property to get the filename.
On Sat, 23 Jul 2005 12:05:09 +0200, Maheshkumar.R <cy**********@yahoo.com> wrote:
Even i'm confused..:)..thanks for your reply.

In simple way- let say i'm having 10 items in my list item. how i can find
the particular image has been selected in that list of 10 items.Items may
vary.., at runtime, i should iterate thru collection and get my list
item...how ??
i mean, is there any method or way to get my user selected item in my
dynamic listitem..?

thankz
Maheshkumar.R
"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:op.suc1icpgklbvpo@stone...
I'm afraid I don't understand.

Do you have a listView in the left pane of image thumbnails (icons), and

if one of the thumbnails are selected (clicked), display the full image in
the right pane?

If so, store a reference to the full image in the ListViewItem.Tag

property, and use this reference to display the full image.


On Sat, 23 Jul 2005 10:59:25 +0200, Maheshkumar.R <cy**********@yahoo.com>

wrote:
> {
>
> {
>
> Image imp=new Bitmap(bmp);
>
> Image thumbnail = imp.GetThumbnailImage(300, 300, null, new Inept());
>
> imageless.Images.Add(thumbnail);
>
> listView2.Items.Add(fame[i].To(), I);
>
> }
>
>
>
> Here I want to handle the Click event of a pictures in the list
> control,like explorer...if I click thumbnail privet off picture in left
> pane, when I click it should display as full image in the right pane is my > requirements,
>
> please guide
>
> Maheshkumar.OR
>
>
>
>
>
>
>
>
>
> "Morten Wennevik" <Mo************@hotmail.com> wrote in message
> news:op.sucyjra5klbvpo@stone...
>> Hi,
>>
>> You can use the SelectedIndexChanged event with the
> SelectedIndices/SelectedItems properties to find the selected items.
>>
>> If you really want to use the Mouse position in a Click event, or need to > find out which subitem was clicked in detail view, you can use
>>
>> Point p = listView1.PointToClient(Control.MousePosition);
>> ListViewItem l = listView1.GetItemAt(p.X, p.Y);
>>
>>
>> On Sat, 23 Jul 2005 09:42:41 +0200, Maheshkumar.R <cy**********@yahoo.com> > wrote:
>>
>> > hi groups,
>> >
>> > I have placed an listview control, i want to iterate thru the control
> and find the clicked event items.
>> >
>> > listView2.Items.Add(fname[i].ToString(), i);
>> >
>> > how i can perform the iteration to find the item clicked...? and its
> item.
>> >
>> > thankz--
>> > Mähésh Kumär. R
>> >
>> >
>>
>>
>>
>> --
>> Happy coding!
>> Morten Wennevik [C# MVP]
>
>
>


--
Happy coding!
Morten Wennevik [C# MVP]



--
Happy coding!
Morten Wennevik [C# MVP]
Nov 17 '05 #11
(Sat, 23 Jul 2005 15:35:09 +0530), "Maheshkumar.R"
<cy**********@yahoo.com> :
In simple way- let say i'm having 10 items in my list item. how i can find
the particular image has been selected in that list of 10 items.Items may
vary.., at runtime, i should iterate thru collection and get my list
item...how ??
i mean, is there any method or way to get my user selected item in my
dynamic listitem..?


I must be missing something, 'cause I really don't understand your
problem. Morten's trick (using a reference to the full image in the
ListViewItem.Tag property) seems to solve the puzzle. Even if your
list is dynamic, the Tag property of each item should be consistent...

So all you need to do is to handle the SelectedIndexChanged event of
your ListView: the SelectedItems property of the event object will
give you an access point to the image reference through the Tag
property.

--
Maddly
Nov 17 '05 #12
(Sat, 23 Jul 2005 15:35:09 +0530), "Maheshkumar.R"
<cy**********@yahoo.com> :
In simple way- let say i'm having 10 items in my list item. how i can find
the particular image has been selected in that list of 10 items.Items may
vary.., at runtime, i should iterate thru collection and get my list
item...how ??
i mean, is there any method or way to get my user selected item in my
dynamic listitem..?


I must be missing something, 'cause I really don't understand your
problem. Morten's trick (using a reference to the full image in the
ListViewItem.Tag property) seems to solve the puzzle. Even if your
list is dynamic, the Tag property of each item should be consistent...

So all you need to do is to handle the SelectedIndexChanged event of
your ListView: the SelectedItems property of the event object will
give you an access point to the image reference through the Tag
property.

--
Maddly
Nov 17 '05 #13
Thnkz a lot Morten Wennevik,exactly i solved my problem thru ur approach. I
used tag for each item and got it..
thnks to all,
Maheshkumar.R

"Maddly Balet" <maddly.baletDELETE@TH**@laposte.net> wrote in message
news:j0********************************@4ax.com...
(Sat, 23 Jul 2005 15:35:09 +0530), "Maheshkumar.R"
<cy**********@yahoo.com> :
In simple way- let say i'm having 10 items in my list item. how i can findthe particular image has been selected in that list of 10 items.Items may
vary.., at runtime, i should iterate thru collection and get my list
item...how ??
i mean, is there any method or way to get my user selected item in my
dynamic listitem..?


I must be missing something, 'cause I really don't understand your
problem. Morten's trick (using a reference to the full image in the
ListViewItem.Tag property) seems to solve the puzzle. Even if your
list is dynamic, the Tag property of each item should be consistent...

So all you need to do is to handle the SelectedIndexChanged event of
your ListView: the SelectedItems property of the event object will
give you an access point to the image reference through the Tag
property.

--
Maddly

Nov 17 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: InvisibleDuncan | last post by:
I have a ListView that populates some fields whenever the user selects an item. However, if they change the data in the fields and then select a new item without saving, I want to display a message...
1
by: Bob Geltz | last post by:
I am able to populate a ListView with several detail lines (several columns). When finished, I would like to pre-select the first item in the list (before the user interacts with the list). This...
6
by: Vanessa | last post by:
With this program I can do one selection, but upon the second I get an error where ///////////////// is indicated. Please help. using System; using System.Drawing; using System.Collections;...
5
by: joseph.inglis | last post by:
Hi group, Someones gonna answer this in two seconds flat but im tearing my hair out. Create a form, add a listview, add 5 items and programmatically select item at index 3. ...
1
by: youngie | last post by:
I've got a listview on a form in report style. It's populated with 40 item. I want to prevent the used clicking on some items, and if the user clicks on one of these items I want the selection to...
1
by: samoore33 | last post by:
I found this code on MSDN, and it works great. It creates a ListView dynamically and add items to it and all. It is great. I have changed a few of the column names to suit me. Dim listView1 As...
6
by: Brandon McCombs | last post by:
Hello, I have a form that contains a listview on the left side and a column of buttons on the right side. Only some of the buttons do I want enabled all the time. The other buttons should be...
5
by: Jure Bogataj | last post by:
Hi all! I have a problem (performance issue) with listview. I have implemented an ItemSelectionChange on my listview and put some code in it (I build some toolbar based on selection and update...
12
by: Tom Bean | last post by:
I am trying to display a ContextMenuStrip when a user right-clicks on an item in a ListView and have encountered a something that seems strange to me. When the ListView is initially populated,...
4
by: Brandon | last post by:
HI all, I am working on a WPF listview that get items through the XMLDataProvider and making a listview with two actual columns and in both CellTemplete XAML in a grid bind more than one snippet...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.