473,748 Members | 2,567 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Listview Question

Hi all,

I want to implement a listview with editable subitems and I assume the
easiest way is to overlay a textbox over the item to be edited.

With this in mind I have come up with:

Using fullrowselect=t rue in the listview

Private Sub ListView1_ItemS electionChanged (ByVal sender As Object, _
ByVal e As System.Windows. Forms.ListViewI temSelectionCha ngedEventArgs) _
Handles ListView1.ItemS electionChanged
Dim t As New TextBox
Me.Controls.Add (t)
t.Location = e.Item.Position
t.BringToFront( )
End Sub

Unfortunately item.position only enables me to get the position of the first
column. How can I obtain the x position of the subitem that was clicked.

I have searched google, but the only examples I can find are in C++ which I
can't make any sense of.

Thanks,

Martin.
Mar 20 '06 #1
5 2372
I have found this VB6 example, but I can't figure out how to convert it to
..net, can anyone help me.

Thanks

'Declarations:
Private Type lvwItemClick
x As Long
y As Long
Flgs As Long
Itm As Long
SubItm As Long
End Type

Private Declare Function SendMessage _
Lib "user32" Alias "SendMessag eA" ( _
ByVal hwnd As Long, _
ByVal lMsg As Long, _
ByVal wParam As Long, _
lParam As Any) As Long

Dim lvwClick As lvwItemClick

Private Sub ListView1_Mouse Down(Button As Integer, _
Shift As Integer, x As Single, y As Single)

lvwClick .x = x / Screen.TwipsPer PixelX
lvwClick .y = y / Screen.TwipsPer PixelY

SendMessage ListView1.hwnd, 4153, 0, lvwClick

If Button = vbRightButton And lvwClick .Itm = 2 And lvwClick .SubItm = 1
Then _
PopupMenu mnuTest 'poppup menu mnuTest for click on Item 3, SubItem 1.

End Sub
"Martin Horn" <mv****@theinte rnet.com> wrote in message
news:Gc******** *********@newsf e7-win.ntli.net...
Hi all,

I want to implement a listview with editable subitems and I assume the
easiest way is to overlay a textbox over the item to be edited.

With this in mind I have come up with:

Using fullrowselect=t rue in the listview

Private Sub ListView1_ItemS electionChanged (ByVal sender As Object, _
ByVal e As System.Windows. Forms.ListViewI temSelectionCha ngedEventArgs) _
Handles ListView1.ItemS electionChanged
Dim t As New TextBox
Me.Controls.Add (t)
t.Location = e.Item.Position
t.BringToFront( )
End Sub

Unfortunately item.position only enables me to get the position of the
first column. How can I obtain the x position of the subitem that was
clicked.

I have searched google, but the only examples I can find are in C++ which
I can't make any sense of.

Thanks,

Martin.

Mar 20 '06 #2
I'm working on the same thing... Not yet complete, but it's getting there.

Private Sub lstRules_MouseU p(ByVal sender As Object, ByVal e _
As System.Windows. Forms.MouseEven tArgs) Handles lstRules.MouseU p
Dim ThisItem As System.Windows. Forms.ListViewI tem
Dim NewBox As Control

If Not (e.Button = Windows.Forms.M ouseButtons.Lef t) Then Exit Sub

ThisItem = lstRules.HitTes t(e.X, e.Y).Item
If ThisItem Is Nothing Then
Exit Sub
End If

NewBox = New System.Windows. Forms.TextBox
NewBox.Size = New System.Drawing. Size(lstRules.C olumns(1).Width - 10,
12)
NewBox.Text = KeyItem.ItemTex t
NewBox.Location = New System.Drawing. Point(ThisItem. Position.X + _
lstRules.Column s(0).Width + 2,
ThisItem.Positi on.Y + 1)

Me.Controls.Add (NewBox)
Me.NewBox.Bring ToFront
AddHandler NewBox.LostFocu s, AddressOf DestroyBox
NewBox.Focus()
End Sub

Private Sub DestroyBox(ByVa l sender As Object, ByVal e As System.EventArg s)
If sender IsNot Nothing Then
Me.Controls.Rem ove(sender)
sender.Dispose( )
End If
End Sub

Work in progress: Moving the textbox when the user scrolls the Listview.
If you're interested I can post that bit tomorrow

Hth,
Martin
"Martin Horn" <mv****@theinte rnet.com> wrote in message
news:Gc******** *********@newsf e7-win.ntli.net...
Hi all,

I want to implement a listview with editable subitems and I assume the
easiest way is to overlay a textbox over the item to be edited.

With this in mind I have come up with:

Using fullrowselect=t rue in the listview

Private Sub ListView1_ItemS electionChanged (ByVal sender As Object, _
ByVal e As System.Windows. Forms.ListViewI temSelectionCha ngedEventArgs) _
Handles ListView1.ItemS electionChanged
Dim t As New TextBox
Me.Controls.Add (t)
t.Location = e.Item.Position
t.BringToFront( )
End Sub

Unfortunately item.position only enables me to get the position of the
first column. How can I obtain the x position of the subitem that was
clicked.

I have searched google, but the only examples I can find are in C++ which
I can't make any sense of.

Thanks,

Martin.

Mar 20 '06 #3
Hi Martin,

I have come up with something similar myself, but I can't see how to easily
adapt it to work with scrolling of the listview, so I would definitely be
interested to see your solution.

Here is my version anyway, which retrieves the text from the any of the 6
subitems in my listview and fills the textbox with it when the user double
clicks the listview subitem.

Note: My example doesn't dynamically create the textbox and I have omitted
the code to remove the textbox.

Private Sub ListView1_Mouse DoubleClick(ByV al sender As Object, _
ByVal e As System.Windows. Forms.MouseEven tArgs) _
Handles ListView1.Mouse DoubleClick
Dim ItemX As ListViewItem
ItemX = ListView1.GetIt emAt(e.X, e.Y)
If ItemX Is Nothing Then Exit Sub

Dim col As Integer = GetColumnNumber (e.X)

EditBox.Top = ItemX.Position. Y
EditBox.Left = GetColumnX(e.X) + 2
EditBox.Text = ListView1.Selec tedItems(0).Sub Items(col).Text
EditBox.Width = ListView1.Colum ns(col).Width
EditBox.BringTo Front()
EditBox.Focus()
End Sub

Private Function GetColumnNumber (ByVal MouseX As Integer) As Integer
If MouseX < GetTotalWidth(0 ) Then Return -1
If MouseX < GetTotalWidth(1 ) Then Return 0
If MouseX < GetTotalWidth(2 ) Then Return 1
If MouseX < GetTotalWidth(3 ) Then Return 2
If MouseX < GetTotalWidth(4 ) Then Return 3
If MouseX < GetTotalWidth(5 ) Then Return 4
If MouseX < GetTotalWidth(6 ) Then Return 5
End Function

Private Function GetColumnX(ByVa l MouseX As Integer) As Integer
If MouseX < GetTotalWidth(0 ) Then Return 0
If MouseX < GetTotalWidth(1 ) Then Return GetTotalWidth(0 )
If MouseX < GetTotalWidth(2 ) Then Return GetTotalWidth(1 )
If MouseX < GetTotalWidth(3 ) Then Return GetTotalWidth(2 )
If MouseX < GetTotalWidth(4 ) Then Return GetTotalWidth(3 )
If MouseX < GetTotalWidth(5 ) Then Return GetTotalWidth(4 )
If MouseX < GetTotalWidth(6 ) Then Return GetTotalWidth(5 )
End Function

Private Function GetTotalWidth(B yVal Cols As Integer) As Integer
Dim tot As Integer = 0
For n As Integer = 0 To Cols - 1
tot += ListView1.Colum ns(n).Width
Next
Return tot
End Function

"Martin" <x@y.com> wrote in message
news:ex******** ******@TK2MSFTN GP09.phx.gbl...
I'm working on the same thing... Not yet complete, but it's getting there.

Private Sub lstRules_MouseU p(ByVal sender As Object, ByVal e _
As System.Windows. Forms.MouseEven tArgs) Handles lstRules.MouseU p
Dim ThisItem As System.Windows. Forms.ListViewI tem
Dim NewBox As Control

If Not (e.Button = Windows.Forms.M ouseButtons.Lef t) Then Exit Sub

ThisItem = lstRules.HitTes t(e.X, e.Y).Item
If ThisItem Is Nothing Then
Exit Sub
End If

NewBox = New System.Windows. Forms.TextBox
NewBox.Size = New System.Drawing. Size(lstRules.C olumns(1).Width - 10,
12)
NewBox.Text = KeyItem.ItemTex t
NewBox.Location = New System.Drawing. Point(ThisItem. Position.X + _
lstRules.Column s(0).Width + 2,
ThisItem.Positi on.Y + 1)

Me.Controls.Add (NewBox)
Me.NewBox.Bring ToFront
AddHandler NewBox.LostFocu s, AddressOf DestroyBox
NewBox.Focus()
End Sub

Private Sub DestroyBox(ByVa l sender As Object, ByVal e As
System.EventArg s)
If sender IsNot Nothing Then
Me.Controls.Rem ove(sender)
sender.Dispose( )
End If
End Sub

Work in progress: Moving the textbox when the user scrolls the Listview.
If you're interested I can post that bit tomorrow

Hth,
Martin
"Martin Horn" <mv****@theinte rnet.com> wrote in message
news:Gc******** *********@newsf e7-win.ntli.net...
Hi all,

I want to implement a listview with editable subitems and I assume the
easiest way is to overlay a textbox over the item to be edited.

With this in mind I have come up with:

Using fullrowselect=t rue in the listview

Private Sub ListView1_ItemS electionChanged (ByVal sender As Object, _
ByVal e As System.Windows. Forms.ListViewI temSelectionCha ngedEventArgs) _
Handles ListView1.ItemS electionChanged
Dim t As New TextBox
Me.Controls.Add (t)
t.Location = e.Item.Position
t.BringToFront( )
End Sub

Unfortunately item.position only enables me to get the position of the
first column. How can I obtain the x position of the subitem that was
clicked.

I have searched google, but the only examples I can find are in C++ which
I can't make any sense of.

Thanks,

Martin.


Mar 21 '06 #4
I have changed my objective a bit. Since detecting a scroll event in a
Listview requires me to subclass the Listview (MS simply forgot to raise a
scroll event, although it is built in the API) I am going to do it right.
I'm building a subclass of the Listview that allows any kind of control
(checkbox, combobox, datetimepicker, textbox) to be added as subitem.

If you're interested I will publish the code on my site when I'm done.
"Martin Horn" <mv****@theinte rnet.com> schrieb im Newsbeitrag
news:a8******** *********@newsf e2-gui.ntli.net...
Hi Martin,

I have come up with something similar myself, but I can't see how to
easily adapt it to work with scrolling of the listview, so I would
definitely be interested to see your solution.

Here is my version anyway, which retrieves the text from the any of the 6
subitems in my listview and fills the textbox with it when the user double
clicks the listview subitem.

Note: My example doesn't dynamically create the textbox and I have omitted
the code to remove the textbox.

Private Sub ListView1_Mouse DoubleClick(ByV al sender As Object, _
ByVal e As System.Windows. Forms.MouseEven tArgs) _
Handles ListView1.Mouse DoubleClick
Dim ItemX As ListViewItem
ItemX = ListView1.GetIt emAt(e.X, e.Y)
If ItemX Is Nothing Then Exit Sub

Dim col As Integer = GetColumnNumber (e.X)

EditBox.Top = ItemX.Position. Y
EditBox.Left = GetColumnX(e.X) + 2
EditBox.Text = ListView1.Selec tedItems(0).Sub Items(col).Text
EditBox.Width = ListView1.Colum ns(col).Width
EditBox.BringTo Front()
EditBox.Focus()
End Sub

Private Function GetColumnNumber (ByVal MouseX As Integer) As Integer
If MouseX < GetTotalWidth(0 ) Then Return -1
If MouseX < GetTotalWidth(1 ) Then Return 0
If MouseX < GetTotalWidth(2 ) Then Return 1
If MouseX < GetTotalWidth(3 ) Then Return 2
If MouseX < GetTotalWidth(4 ) Then Return 3
If MouseX < GetTotalWidth(5 ) Then Return 4
If MouseX < GetTotalWidth(6 ) Then Return 5
End Function

Private Function GetColumnX(ByVa l MouseX As Integer) As Integer
If MouseX < GetTotalWidth(0 ) Then Return 0
If MouseX < GetTotalWidth(1 ) Then Return GetTotalWidth(0 )
If MouseX < GetTotalWidth(2 ) Then Return GetTotalWidth(1 )
If MouseX < GetTotalWidth(3 ) Then Return GetTotalWidth(2 )
If MouseX < GetTotalWidth(4 ) Then Return GetTotalWidth(3 )
If MouseX < GetTotalWidth(5 ) Then Return GetTotalWidth(4 )
If MouseX < GetTotalWidth(6 ) Then Return GetTotalWidth(5 )
End Function

Private Function GetTotalWidth(B yVal Cols As Integer) As Integer
Dim tot As Integer = 0
For n As Integer = 0 To Cols - 1
tot += ListView1.Colum ns(n).Width
Next
Return tot
End Function

"Martin" <x@y.com> wrote in message
news:ex******** ******@TK2MSFTN GP09.phx.gbl...
I'm working on the same thing... Not yet complete, but it's getting
there.

Private Sub lstRules_MouseU p(ByVal sender As Object, ByVal e _
As System.Windows. Forms.MouseEven tArgs) Handles lstRules.MouseU p
Dim ThisItem As System.Windows. Forms.ListViewI tem
Dim NewBox As Control

If Not (e.Button = Windows.Forms.M ouseButtons.Lef t) Then Exit Sub

ThisItem = lstRules.HitTes t(e.X, e.Y).Item
If ThisItem Is Nothing Then
Exit Sub
End If

NewBox = New System.Windows. Forms.TextBox
NewBox.Size = New System.Drawing. Size(lstRules.C olumns(1).Width - 10,
12)
NewBox.Text = KeyItem.ItemTex t
NewBox.Location = New System.Drawing. Point(ThisItem. Position.X + _
lstRules.Column s(0).Width + 2,
ThisItem.Positi on.Y + 1)

Me.Controls.Add (NewBox)
Me.NewBox.Bring ToFront
AddHandler NewBox.LostFocu s, AddressOf DestroyBox
NewBox.Focus()
End Sub

Private Sub DestroyBox(ByVa l sender As Object, ByVal e As
System.EventArg s)
If sender IsNot Nothing Then
Me.Controls.Rem ove(sender)
sender.Dispose( )
End If
End Sub

Work in progress: Moving the textbox when the user scrolls the Listview.
If you're interested I can post that bit tomorrow

Hth,
Martin
"Martin Horn" <mv****@theinte rnet.com> wrote in message
news:Gc******** *********@newsf e7-win.ntli.net...
Hi all,

I want to implement a listview with editable subitems and I assume the
easiest way is to overlay a textbox over the item to be edited.

With this in mind I have come up with:

Using fullrowselect=t rue in the listview

Private Sub ListView1_ItemS electionChanged (ByVal sender As Object, _
ByVal e As System.Windows. Forms.ListViewI temSelectionCha ngedEventArgs) _
Handles ListView1.ItemS electionChanged
Dim t As New TextBox
Me.Controls.Add (t)
t.Location = e.Item.Position
t.BringToFront( )
End Sub

Unfortunately item.position only enables me to get the position of the
first column. How can I obtain the x position of the subitem that was
clicked.

I have searched google, but the only examples I can find are in C++
which I can't make any sense of.

Thanks,

Martin.



Mar 21 '06 #5
Although my solution works in the context in which I am using it, I am well
aware that it isn't very efficient and would be very interested in seeing
how you approach the problem, as I am a newbie programmer and what you are
suggesting is well beyond my capabilities at the moment.

If you want to email me the link to your site you can send it to
mvhorn@remove_t his_bit.ntlworl d.com or post it here instead.

Kind regards,

Martin.

"Martin" <x@y.com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
I have changed my objective a bit. Since detecting a scroll event in a
Listview requires me to subclass the Listview (MS simply forgot to raise a
scroll event, although it is built in the API) I am going to do it right.
I'm building a subclass of the Listview that allows any kind of control
(checkbox, combobox, datetimepicker, textbox) to be added as subitem.

If you're interested I will publish the code on my site when I'm done.
"Martin Horn" <mv****@theinte rnet.com> schrieb im Newsbeitrag
news:a8******** *********@newsf e2-gui.ntli.net...
Hi Martin,

I have come up with something similar myself, but I can't see how to
easily adapt it to work with scrolling of the listview, so I would
definitely be interested to see your solution.

Here is my version anyway, which retrieves the text from the any of the 6
subitems in my listview and fills the textbox with it when the user
double clicks the listview subitem.

Note: My example doesn't dynamically create the textbox and I have
omitted the code to remove the textbox.

Private Sub ListView1_Mouse DoubleClick(ByV al sender As Object, _
ByVal e As System.Windows. Forms.MouseEven tArgs) _
Handles ListView1.Mouse DoubleClick
Dim ItemX As ListViewItem
ItemX = ListView1.GetIt emAt(e.X, e.Y)
If ItemX Is Nothing Then Exit Sub

Dim col As Integer = GetColumnNumber (e.X)

EditBox.Top = ItemX.Position. Y
EditBox.Left = GetColumnX(e.X) + 2
EditBox.Text = ListView1.Selec tedItems(0).Sub Items(col).Text
EditBox.Width = ListView1.Colum ns(col).Width
EditBox.BringTo Front()
EditBox.Focus()
End Sub

Private Function GetColumnNumber (ByVal MouseX As Integer) As Integer
If MouseX < GetTotalWidth(0 ) Then Return -1
If MouseX < GetTotalWidth(1 ) Then Return 0
If MouseX < GetTotalWidth(2 ) Then Return 1
If MouseX < GetTotalWidth(3 ) Then Return 2
If MouseX < GetTotalWidth(4 ) Then Return 3
If MouseX < GetTotalWidth(5 ) Then Return 4
If MouseX < GetTotalWidth(6 ) Then Return 5
End Function

Private Function GetColumnX(ByVa l MouseX As Integer) As Integer
If MouseX < GetTotalWidth(0 ) Then Return 0
If MouseX < GetTotalWidth(1 ) Then Return GetTotalWidth(0 )
If MouseX < GetTotalWidth(2 ) Then Return GetTotalWidth(1 )
If MouseX < GetTotalWidth(3 ) Then Return GetTotalWidth(2 )
If MouseX < GetTotalWidth(4 ) Then Return GetTotalWidth(3 )
If MouseX < GetTotalWidth(5 ) Then Return GetTotalWidth(4 )
If MouseX < GetTotalWidth(6 ) Then Return GetTotalWidth(5 )
End Function

Private Function GetTotalWidth(B yVal Cols As Integer) As Integer
Dim tot As Integer = 0
For n As Integer = 0 To Cols - 1
tot += ListView1.Colum ns(n).Width
Next
Return tot
End Function

"Martin" <x@y.com> wrote in message
news:ex******** ******@TK2MSFTN GP09.phx.gbl...
I'm working on the same thing... Not yet complete, but it's getting
there.

Private Sub lstRules_MouseU p(ByVal sender As Object, ByVal e _
As System.Windows. Forms.MouseEven tArgs) Handles lstRules.MouseU p
Dim ThisItem As System.Windows. Forms.ListViewI tem
Dim NewBox As Control

If Not (e.Button = Windows.Forms.M ouseButtons.Lef t) Then Exit Sub

ThisItem = lstRules.HitTes t(e.X, e.Y).Item
If ThisItem Is Nothing Then
Exit Sub
End If

NewBox = New System.Windows. Forms.TextBox
NewBox.Size = New System.Drawing. Size(lstRules.C olumns(1).Width - 10,
12)
NewBox.Text = KeyItem.ItemTex t
NewBox.Location = New System.Drawing. Point(ThisItem. Position.X + _
lstRules.Column s(0).Width + 2,
ThisItem.Positi on.Y + 1)

Me.Controls.Add (NewBox)
Me.NewBox.Bring ToFront
AddHandler NewBox.LostFocu s, AddressOf DestroyBox
NewBox.Focus()
End Sub

Private Sub DestroyBox(ByVa l sender As Object, ByVal e As
System.EventArg s)
If sender IsNot Nothing Then
Me.Controls.Rem ove(sender)
sender.Dispose( )
End If
End Sub

Work in progress: Moving the textbox when the user scrolls the Listview.
If you're interested I can post that bit tomorrow

Hth,
Martin
"Martin Horn" <mv****@theinte rnet.com> wrote in message
news:Gc******** *********@newsf e7-win.ntli.net...
Hi all,

I want to implement a listview with editable subitems and I assume the
easiest way is to overlay a textbox over the item to be edited.

With this in mind I have come up with:

Using fullrowselect=t rue in the listview

Private Sub ListView1_ItemS electionChanged (ByVal sender As Object, _
ByVal e As System.Windows. Forms.ListViewI temSelectionCha ngedEventArgs)
_
Handles ListView1.ItemS electionChanged
Dim t As New TextBox
Me.Controls.Add (t)
t.Location = e.Item.Position
t.BringToFront( )
End Sub

Unfortunately item.position only enables me to get the position of the
first column. How can I obtain the x position of the subitem that was
clicked.

I have searched google, but the only examples I can find are in C++
which I can't make any sense of.

Thanks,

Martin.



Mar 21 '06 #6

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

Similar topics

3
2813
by: andrewcw | last post by:
I have a simple winform with the following code. But although I can read back the info, the display fails to provide the text or the cell background color changes. private void ListViewBroke() { listView.View = View.Details; ArrayList LVcolTitles= new ArrayList(); LVcolTitles.Add("Drive"); LVcolTitles.Add("Cust");
1
787
by: J_Max | last post by:
Hello, This might be a really easy question, but... I am developing a simple Smart Device application that uses a listview. I have a function that adds a item to the listview - code is below. I use the type listviewitem, selitem, on one form to modify the listviewitem, using a timer, every second, and use selitem1 to modify items, after they have ended the time on the timer form, from the form that the listview is located - this way I...
7
6448
by: Dave Y | last post by:
I am a newbie to C# and am having trouble trying to override a ListView property method. I have created a new class derived from the Forms.Listview and I cannot figure out the syntax to override ListView.Items.Add(), . I see that it is a virtual method so it should be easy to do. If anyone can help I would appreciate it greatly. I can do what I need to do in a different way this would just make everything significantly cleaner and eaasier...
3
9308
by: MikeY | last post by:
Hopefully someone can help me on this. I am using C#, making Windows forms. I have created a listView with checkbox's. I have enabled the checkboxes under the properties, and all the data, checkbox's and icons are displayed as they are meant to be. My problem is this, I am trying to achieve the same results as I get with CheckListBox(s), where I am able to select (Check-mark) various checkboxs items and able to alter the data. I do...
1
1434
by: Derck | last post by:
SORRY, for the crosspost, but I think I posted it in the wrong group! Hello all, I have a question.. I am tying to make a global listview class where other listviews in my application points to, so when I change something in that listview all listviews who points to that listview must be updated.. But I don't have a idea why it isn't working.. I tried to make a singeton listview class and get a instance on the form
12
7485
by: J L | last post by:
When I fill a listview, I resize the columns to fit the data. I need to know if the data will fit vertically or if there will be a vertical scroll bar. I need to know this so I can allow for it on the overall size of the listview. My question therefore is, how can I tell if the items I have added will fit in the listview at its given height? A secondary one, just for interest sake...is there a way to determine the exact heght needed...
1
2858
by: Chris | last post by:
Hi all, I posted the following in microsoft.public.dotnet.framework.windowsforms but it seems that group has little traffic. Hi all, I have a listview box which is populated from methods of objects stored in a List<T> collection. The items in this collection are generated from a user filled out form. The items in the listview have the same index as the ones in List<T>, so I
12
3412
by: garyusenet | last post by:
I have had no replies to my previous post so perhaps I didn't write it good enough. Please excuse new thread but i wanted to break from the last thread hopefully this thread will be better. Very simple. I would like to create listviewitem's for display in a listview control. The listview items need to contain properties from Internet Explorer windows i've managed to collect into an arraylist.
1
2174
by: =?Utf-8?B?THluYkBtcy5jb20=?= | last post by:
I have a executable winforms application I would like to change. I use quite a number of listview controls in my main form. I dump about 15 columns of data into a couple of listviews. This data comes from classes that implement Ienumerable ... I use a method in the main form to update the listviews... s. I want to change this application to Only to show 4 columns of data (new data)
5
9536
by: Mark Olbert | last post by:
How do I get the DataPager and ListView to play nice together when I use a custom datasource? In my webpage, I use linq to pull data from a SqlServer database and assign the resulting IEnumerable<to the ListView's Datasource property. This all works fine to display the first 3 items (the DataPager is set to display three items at a time), but when I click on the next page in the DataPager...nothing happens. There's a roundtrip to the...
0
8996
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9562
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9333
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9254
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8255
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6078
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4879
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3319
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2217
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.