473,378 Members | 1,564 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.

Listbox item question

I realize that you can add items to a list box as objects so you can have
access to more than just one property like the itemindex in vb6. Question I
have is how do I cause the listbox to show a different text after the object
has already been added.
Nov 20 '05 #1
21 2226
For any given object that may be contained in the listbox it is somtimes
common practice to override the ToString function as the default text which
is displayed will be the objects name. If the object contains a value that
you want displayed then you can return this from the overridden function.

Regards - OHM

Bilal Abbasi wrote:
I realize that you can add items to a list box as objects so you can
have access to more than just one property like the itemindex in vb6.
Question I have is how do I cause the listbox to show a different
text after the object has already been added.


Best Regards - OHMBest Regards - OHM On**********@BTInternet.Com
Nov 20 '05 #2
:)

you create your own class to add as an item this class can have as mutch
vars as you need
and has to have a overrides to string function to display the text in the
listbox
i'll paste the code below

hope it helps

eric

code
\\
dim li as new clslistitem
li.text = "test"
listbox.items.add(li)
li = new clslistitem("test2")
listbox.items.add(li)
//
if you need to use an item

\\
dim itemke as clslistitem
itemke = listbox.selecteditem
var = itemke.text
//
i havent done altering but it should be similar
try
listbox.selecteditem.text = "test"
listbox.refresh
the class
\\
Public Class clsListItem
Private Tekst As String
Private Tagske As String

Private objke As Object

Public Sub New()
Tekst = ""
Tagske = ""
Omschrijvingske = ""
End Sub

Public Sub New(ByVal te As String)
Tekst = te
Tagske = ""
Omschrijvingske = ""
End Sub
Public Sub New(ByVal te As String, ByVal ta As String)
Tekst = te
Tagske = ta
Omschrijvingske = ""
End Sub
Public Sub New(ByVal te As String, ByVal ta As String, ByVal oms As
String)
Tekst = te
Tagske = ta
Omschrijvingske = oms
End Sub
Public Property Text() As String
Get
Return Tekst
End Get
Set(ByVal Value As String)
Tekst = Value
End Set
End Property

Public Property Tag() As String
Get
Return Tagske
End Get
Set(ByVal Value As String)
Tagske = Value
End Set
End Property
Public ReadOnly Property classe() As Integer
Get
Return 0
End Get
End Property

Public Property Obj() As Object
Get
Return objke
End Get
Set(ByVal Value As Object)
objke = Value
End Set
End Property

Public Overrides Function ToString() As String
Return Tekst
End Function

End Class
//
"Bilal Abbasi" <ba*****@chadbourne.com> wrote in message
news:um**************@TK2MSFTNGP11.phx.gbl...
I realize that you can add items to a list box as objects so you can have
access to more than just one property like the itemindex in vb6. Question I have is how do I cause the listbox to show a different text after the object has already been added.

Nov 20 '05 #3
Thanks EricJ

What I do right now is
Dim cl As cListItem = DirectCast(List1.Items(List1.SelectedIndex),
cListItem)

where cListItem is my own class.

When I change the text property of cl, it does not get reflected in the
listbox.

i.e.

cl.text = "***" & cl.text

I have tried list1.beginUpdate and list1.endUpdate

Any ideas?

"EricJ" <ericRéMo**@ThiSomnipack.be> wrote in message
news:3f**********************@reader1.news.skynet. be...
:)

you create your own class to add as an item this class can have as mutch
vars as you need
and has to have a overrides to string function to display the text in the
listbox
i'll paste the code below

hope it helps

eric

code
\\
dim li as new clslistitem
li.text = "test"
listbox.items.add(li)
li = new clslistitem("test2")
listbox.items.add(li)
//
if you need to use an item

\\
dim itemke as clslistitem
itemke = listbox.selecteditem
var = itemke.text
//
i havent done altering but it should be similar
try
listbox.selecteditem.text = "test"
listbox.refresh
the class
\\
Public Class clsListItem
Private Tekst As String
Private Tagske As String

Private objke As Object

Public Sub New()
Tekst = ""
Tagske = ""
Omschrijvingske = ""
End Sub

Public Sub New(ByVal te As String)
Tekst = te
Tagske = ""
Omschrijvingske = ""
End Sub
Public Sub New(ByVal te As String, ByVal ta As String)
Tekst = te
Tagske = ta
Omschrijvingske = ""
End Sub
Public Sub New(ByVal te As String, ByVal ta As String, ByVal oms As
String)
Tekst = te
Tagske = ta
Omschrijvingske = oms
End Sub
Public Property Text() As String
Get
Return Tekst
End Get
Set(ByVal Value As String)
Tekst = Value
End Set
End Property

Public Property Tag() As String
Get
Return Tagske
End Get
Set(ByVal Value As String)
Tagske = Value
End Set
End Property
Public ReadOnly Property classe() As Integer
Get
Return 0
End Get
End Property

Public Property Obj() As Object
Get
Return objke
End Get
Set(ByVal Value As Object)
objke = Value
End Set
End Property

Public Overrides Function ToString() As String
Return Tekst
End Function

End Class
//
"Bilal Abbasi" <ba*****@chadbourne.com> wrote in message
news:um**************@TK2MSFTNGP11.phx.gbl...
I realize that you can add items to a list box as objects so you can have access to more than just one property like the itemindex in vb6.
Question I
have is how do I cause the listbox to show a different text after the

object
has already been added.


Nov 20 '05 #4
* "Bilal Abbasi" <ba*****@chadbourne.com> scripsit:
I realize that you can add items to a list box as objects so you can have
access to more than just one property like the itemindex in vb6. Question I
have is how do I cause the listbox to show a different text after the object
has already been added.


Add a custom implemented 'ToString' method which returns a string to
your class. This method returns the description text for the item.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #5
I have this declaration for the ToString(): in my cListItme class.

Public Overrides Function toString() As String

Return sLookup

End Function

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:bq*************@ID-208219.news.uni-berlin.de...
* "Bilal Abbasi" <ba*****@chadbourne.com> scripsit:
I realize that you can add items to a list box as objects so you can have access to more than just one property like the itemindex in vb6. Question I have is how do I cause the listbox to show a different text after the object has already been added.


Add a custom implemented 'ToString' method which returns a string to
your class. This method returns the description text for the item.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>

Nov 20 '05 #6
* "Bilal Abbasi" <ba*****@chadbourne.com> scripsit:
I have this declaration for the ToString(): in my cListItme class.

Public Overrides Function toString() As String

Return sLookup

End Function


Does it work?

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #7
Thats really weird, I seem to have posted a reply here which is invisible to
everyone but me !!

I would say regards - ohm, but whats the point as I'm talking to myself.
One Handed Man [ OHM ] wrote:
For any given object that may be contained in the listbox it is
somtimes common practice to override the ToString function as the
default text which is displayed will be the objects name. If the
object contains a value that you want displayed then you can return
this from the overridden function.

Regards - OHM

Bilal Abbasi wrote:
I realize that you can add items to a list box as objects so you can
have access to more than just one property like the itemindex in vb6.
Question I have is how do I cause the listbox to show a different
text after the object has already been added.


Best Regards - OHMBest Regards - OHM On**********@BTInternet.Com


Best Regards - OHMBest Regards - OHM On**********@BTInternet.Com
Nov 20 '05 #8
Cor
Hi OHM,

I dont know why you don't get an answer from Bilal, but I see messages from

OHM 17:13
Eric 17:14
Herfried 19:13

For you that would be 16:13, 16:14, 18:13 I think

Just for your information.

I would say regards - ohm, but whats the point as I'm talking to myself.


Nov 20 '05 #9
Hi OHM,

My class that I am using to add items to the list box, actually does have
the toString() function overridden. Since I have option_strict set to on, I
am not able to directly change the property from the list box like,

list1.items(list1.selectedIndex).text = "new text"

What I have to do is get the object and change it's value. But it does not
get reflected in the list box.
i.e.
dim cl as cListItem = DirectCast(list1.item(list1.selectedIndex),cListIt em)
'where cListitem is my class.
cl.text = "new text"
does not cause the listbox item to change it's text, but the object itself
does change. Weird.

"One Handed Man [ OHM ]" <te***************************@BTOpenworld.com>
wrote in message news:es**************@TK2MSFTNGP12.phx.gbl...
For any given object that may be contained in the listbox it is somtimes
common practice to override the ToString function as the default text which is displayed will be the objects name. If the object contains a value that
you want displayed then you can return this from the overridden function.

Regards - OHM

Bilal Abbasi wrote:
I realize that you can add items to a list box as objects so you can
have access to more than just one property like the itemindex in vb6.
Question I have is how do I cause the listbox to show a different
text after the object has already been added.


Best Regards - OHMBest Regards - OHM On**********@BTInternet.Com

Nov 20 '05 #10
Cor
Hi Bilal,

When OHM does not answer anymore, you can maybe try this

\\\\
Dim cl As clsListItem = DirectCast(List1.SelectedItem, clsListItem)
cl.text="new text"
List1.Items.RemoveAt(List1.SelectedIndex)
List1.Items.Add(cl)
///

I hope this helps?

Cor
dim cl as cListItem = DirectCast(list1.item(list1.selectedIndex),cListIt em) 'where cListitem is my class.
cl.text = "new text"
does not cause the listbox item to change it's text, but the object itself
does change. Weird.

Nov 20 '05 #11
Did try this and the removeat emthod throws an ArgumentOutOfRangeException.
"Cor" <no*@non.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi Bilal,

When OHM does not answer anymore, you can maybe try this

\\\\
Dim cl As clsListItem = DirectCast(List1.SelectedItem, clsListItem)
cl.text="new text"
List1.Items.RemoveAt(List1.SelectedIndex)
List1.Items.Add(cl)
///

I hope this helps?

Cor
dim cl as cListItem =

DirectCast(list1.item(list1.selectedIndex),cListIt em)
'where cListitem is my class.
cl.text = "new text"
does not cause the listbox item to change it's text, but the object itself does change. Weird.


Nov 20 '05 #12
Cor
Hi Bilal,
Did try this and the removeat emthod throws an ArgumentOutOfRangeException.


What event did you use to do this, I did it with the mouse up, tested it and
now even with this complete code, and it did work?

Cor

\\\\
Dim cl As clsListItem = DirectCast(List1.SelectedItem, clsListItem)
cl.text="new text"
List1.Items.RemoveAt(List1.SelectedIndex)
List1.Items.Add(cl)
///


Nov 20 '05 #13
i played around w it a bit and the text isn't changing (strange) even if you
refresh :/

i did find a workaround that works in a combobox (dont have a listbox to
mess w atm)

Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim li As New clsListItem
li = cboSFilm.SelectedItem
Dim i As Integer = cboSFilm.SelectedIndex
cboSFilm.Items.RemoveAt(cboSFilm.SelectedIndex)
li.Text = li.Text & " test"
cboSFilm.Items.Insert(i, li)
End Sub

hope it helps

eric

"Bilal Abbasi" <ba*****@chadbourne.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Thanks EricJ

What I do right now is
Dim cl As cListItem = DirectCast(List1.Items(List1.SelectedIndex),
cListItem)

where cListItem is my own class.

When I change the text property of cl, it does not get reflected in the
listbox.

i.e.

cl.text = "***" & cl.text

I have tried list1.beginUpdate and list1.endUpdate

Any ideas?

"EricJ" <ericRéMo**@ThiSomnipack.be> wrote in message
news:3f**********************@reader1.news.skynet. be...
:)

you create your own class to add as an item this class can have as mutch
vars as you need
and has to have a overrides to string function to display the text in the
listbox
i'll paste the code below

hope it helps

eric

code
\\
dim li as new clslistitem
li.text = "test"
listbox.items.add(li)
li = new clslistitem("test2")
listbox.items.add(li)
//
if you need to use an item

\\
dim itemke as clslistitem
itemke = listbox.selecteditem
var = itemke.text
//
i havent done altering but it should be similar
try
listbox.selecteditem.text = "test"
listbox.refresh
the class
\\
Public Class clsListItem
Private Tekst As String
Private Tagske As String

Private objke As Object

Public Sub New()
Tekst = ""
Tagske = ""
Omschrijvingske = ""
End Sub

Public Sub New(ByVal te As String)
Tekst = te
Tagske = ""
Omschrijvingske = ""
End Sub
Public Sub New(ByVal te As String, ByVal ta As String)
Tekst = te
Tagske = ta
Omschrijvingske = ""
End Sub
Public Sub New(ByVal te As String, ByVal ta As String, ByVal oms As
String)
Tekst = te
Tagske = ta
Omschrijvingske = oms
End Sub
Public Property Text() As String
Get
Return Tekst
End Get
Set(ByVal Value As String)
Tekst = Value
End Set
End Property

Public Property Tag() As String
Get
Return Tagske
End Get
Set(ByVal Value As String)
Tagske = Value
End Set
End Property
Public ReadOnly Property classe() As Integer
Get
Return 0
End Get
End Property

Public Property Obj() As Object
Get
Return objke
End Get
Set(ByVal Value As Object)
objke = Value
End Set
End Property

Public Overrides Function ToString() As String
Return Tekst
End Function

End Class
//
"Bilal Abbasi" <ba*****@chadbourne.com> wrote in message
news:um**************@TK2MSFTNGP11.phx.gbl...
I realize that you can add items to a list box as objects so you can

have access to more than just one property like the itemindex in vb6.

Question
I
have is how do I cause the listbox to show a different text after the

object
has already been added.



Nov 20 '05 #14
hey, tel you what,
Please post you class and we can try this OK
PS: Sorry for delay in answering, I've been building my kids cristmas
present ( 1.3GHZ XP machine ), he's thirteen and a half and he's already
learnt HTML by tag reference manuals etc and now he's learning PHP, and
wants to learn VB.NET as well ( I get sooooo many questions when he gets
home from school every day ).

When I was his age, I was still climbing trees and collecting birds eggs.
CYA L8TR - OHM

Bilal Abbasi wrote:
Did try this and the removeat emthod throws an
ArgumentOutOfRangeException.
"Cor" <no*@non.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi Bilal,

When OHM does not answer anymore, you can maybe try this

\\\\
Dim cl As clsListItem = DirectCast(List1.SelectedItem, clsListItem)
cl.text="new text"
List1.Items.RemoveAt(List1.SelectedIndex)
List1.Items.Add(cl)
///

I hope this helps?

Cor
dim cl as cListItem =

DirectCast(list1.item(list1.selectedIndex),cListIt em)
'where cListitem is my class.
cl.text = "new text"
does not cause the listbox item to change it's text, but the object
itself does change. Weird.


Best Regards - OHMBest Regards - OHM On**********@BTInternet.Com
Nov 20 '05 #15
Perhaps it's the version of Visual Studio that we are using. I ran into a
glitch earlier and posted a few messages here before regarding selectedIndex
throwing invalidCastException. I am using Visual Studio Dot Net 2003. What
are you using?

"EricJ" <ericRéMo**@ThiSomnipack.be> wrote in message
news:3f**********************@reader3.news.skynet. be...
i played around w it a bit and the text isn't changing (strange) even if you refresh :/

i did find a workaround that works in a combobox (dont have a listbox to
mess w atm)

Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim li As New clsListItem
li = cboSFilm.SelectedItem
Dim i As Integer = cboSFilm.SelectedIndex
cboSFilm.Items.RemoveAt(cboSFilm.SelectedIndex)
li.Text = li.Text & " test"
cboSFilm.Items.Insert(i, li)
End Sub

hope it helps

eric

"Bilal Abbasi" <ba*****@chadbourne.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Thanks EricJ

What I do right now is
Dim cl As cListItem = DirectCast(List1.Items(List1.SelectedIndex),
cListItem)

where cListItem is my own class.

When I change the text property of cl, it does not get reflected in the
listbox.

i.e.

cl.text = "***" & cl.text

I have tried list1.beginUpdate and list1.endUpdate

Any ideas?

"EricJ" <ericRéMo**@ThiSomnipack.be> wrote in message
news:3f**********************@reader1.news.skynet. be...
:)

you create your own class to add as an item this class can have as mutch vars as you need
and has to have a overrides to string function to display the text in the listbox
i'll paste the code below

hope it helps

eric

code
\\
dim li as new clslistitem
li.text = "test"
listbox.items.add(li)
li = new clslistitem("test2")
listbox.items.add(li)
//
if you need to use an item

\\
dim itemke as clslistitem
itemke = listbox.selecteditem
var = itemke.text
//
i havent done altering but it should be similar
try
listbox.selecteditem.text = "test"
listbox.refresh
the class
\\
Public Class clsListItem
Private Tekst As String
Private Tagske As String

Private objke As Object

Public Sub New()
Tekst = ""
Tagske = ""
Omschrijvingske = ""
End Sub

Public Sub New(ByVal te As String)
Tekst = te
Tagske = ""
Omschrijvingske = ""
End Sub
Public Sub New(ByVal te As String, ByVal ta As String)
Tekst = te
Tagske = ta
Omschrijvingske = ""
End Sub
Public Sub New(ByVal te As String, ByVal ta As String, ByVal oms As String)
Tekst = te
Tagske = ta
Omschrijvingske = oms
End Sub
Public Property Text() As String
Get
Return Tekst
End Get
Set(ByVal Value As String)
Tekst = Value
End Set
End Property

Public Property Tag() As String
Get
Return Tagske
End Get
Set(ByVal Value As String)
Tagske = Value
End Set
End Property
Public ReadOnly Property classe() As Integer
Get
Return 0
End Get
End Property

Public Property Obj() As Object
Get
Return objke
End Get
Set(ByVal Value As Object)
objke = Value
End Set
End Property

Public Overrides Function ToString() As String
Return Tekst
End Function

End Class
//
"Bilal Abbasi" <ba*****@chadbourne.com> wrote in message
news:um**************@TK2MSFTNGP11.phx.gbl...
> I realize that you can add items to a list box as objects so you can

have
> access to more than just one property like the itemindex in vb6.

Question
I
> have is how do I cause the listbox to show a different text after the object
> has already been added.
>
>



Nov 20 '05 #16
that would be a 2003 ea on win xp pro

but like i said i didn't test on a listbox only on a combo

gimme a few min

"Bilal Abbasi" <ba*****@chadbourne.com> wrote in message
news:uK*************@TK2MSFTNGP11.phx.gbl...
Perhaps it's the version of Visual Studio that we are using. I ran into a
glitch earlier and posted a few messages here before regarding selectedIndex throwing invalidCastException. I am using Visual Studio Dot Net 2003. What are you using?

"EricJ" <ericRéMo**@ThiSomnipack.be> wrote in message
news:3f**********************@reader3.news.skynet. be...
i played around w it a bit and the text isn't changing (strange) even if

you
refresh :/

i did find a workaround that works in a combobox (dont have a listbox to
mess w atm)

Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim li As New clsListItem
li = cboSFilm.SelectedItem
Dim i As Integer = cboSFilm.SelectedIndex
cboSFilm.Items.RemoveAt(cboSFilm.SelectedIndex)
li.Text = li.Text & " test"
cboSFilm.Items.Insert(i, li)
End Sub

hope it helps

eric

Nov 20 '05 #17
sorry this works (option explicit off) if its on you will probably have to
cast the selecteditem as a clslistitem
hope it helps
Try
Dim i As Integer
Dim li As New clsListItem
li = ListBox1.SelectedItem
i = ListBox1.SelectedIndex
ListBox1.Items.RemoveAt(i)
li.Text = li.Text & " test"
ListBox1.Items.Insert(i, li)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

"EricJ" <ericRéMo**@ThiSomnipack.be> wrote in message
news:3f**********************@reader3.news.skynet. be...
that would be a 2003 ea on win xp pro

but like i said i didn't test on a listbox only on a combo

gimme a few min

"Bilal Abbasi" <ba*****@chadbourne.com> wrote in message
news:uK*************@TK2MSFTNGP11.phx.gbl...
Perhaps it's the version of Visual Studio that we are using. I ran into a
glitch earlier and posted a few messages here before regarding

selectedIndex
throwing invalidCastException. I am using Visual Studio Dot Net 2003.

What
are you using?

"EricJ" <ericRéMo**@ThiSomnipack.be> wrote in message
news:3f**********************@reader3.news.skynet. be...
i played around w it a bit and the text isn't changing (strange) even if
you
refresh :/

i did find a workaround that works in a combobox (dont have a listbox

to mess w atm)

Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e

As System.EventArgs) Handles Button1.Click
Dim li As New clsListItem
li = cboSFilm.SelectedItem
Dim i As Integer = cboSFilm.SelectedIndex
cboSFilm.Items.RemoveAt(cboSFilm.SelectedIndex)
li.Text = li.Text & " test"
cboSFilm.Items.Insert(i, li)
End Sub

hope it helps

eric


Nov 20 '05 #18
Just a Few thoughts . . .

** These really dont need to be in the Try Block **
Dim i As Integer
Dim li As New clsListItem
** What if no item is selected, you could have put this in an IF statement,
and prevented throwing an exception li = ListBox1.SelectedItem
i = ListBox1.SelectedIndex
** Then this could have been written like so without a try catch ** ListBox1.Items.RemoveAt( ListBox1.SelectedIndex )
li.Text = li.Text & " test"
ListBox1.Items.Insert(i, li)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try


Regards - OHM


Nov 20 '05 #19
Cor
Hi OHM,

When you have in your listbox
listbox1.sort = true
It does not matter if you use an insert or an add.

Just a thought.

Cor
Nov 20 '05 #20
I must have missed that somewhere . . . Never mind !

Time to go and get drunk I think....

;-)
Regards - OHM

=========================================

Cor wrote:
Hi OHM,

When you have in your listbox
listbox1.sort = true
It does not matter if you use an insert or an add.

Just a thought.

Cor


Best Regards - OHMBest Regards - OHM On**********@BTInternet.Com
Nov 20 '05 #21
You are so right. When the list box is set to sorted = true, everything
works fine with the text. When it is set to false, even though the command
window shows the correct text as was changed, however the list box does not
show it.
"Cor" <no*@non.com> wrote in message
news:uB**************@TK2MSFTNGP12.phx.gbl...
Hi OHM,

When you have in your listbox
listbox1.sort = true
It does not matter if you use an insert or an add.

Just a thought.

Cor

Nov 20 '05 #22

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

Similar topics

2
by: Marc | last post by:
Hi all, I can't figure this out. I want the ability to delete an item in a listbox and leave the window area blank, like it is when the listbox is first created and nothing selected. Right...
1
by: jez123456 | last post by:
Hi, I have a windows form with a listbox control. My code all works correctly when deleting an item from the listbox except the last item. I get the following message when trying to delete the...
6
by: Chris Leuty | last post by:
I am populating a multiselect Listbox from a dataset, with the content of the listbox filled by one table, and the selections determined from another table. So far, I have been keeping the dataset...
3
by: Stimp | last post by:
I have a listbox of values that I populate from a database. I want the user to be able to re-order the list (by first selecting an item and then clicking 'up' or 'down' buttons) and then save...
1
by: Karen Grube | last post by:
Hi! I'm using a standard server side ASP.Net listbox control on a web form. The page is basically various shades of green. The listbox itself has a pale green background and forest green text...
8
by: Steve Schroeder | last post by:
For some reason I cannot get the OnSelectedIndexChanged event to fire for a listbox I have on a page. I'm able to populate the listbox with data from a stored procedure, but cannot trigger the...
28
by: cjobes | last post by:
Hi all, I need to populate a listbox from a table column. The column has multiple entries of usernames and I need to pull a unique set of usernames. The table is part of an untyped Dataset that...
6
by: segue | last post by:
Hi; I need to change the order of a listbox array from a form app where I select order up or down. What's a good way to do that? Regards; Segue
8
by: jh | last post by:
I'd like to copy/paste into a listbox during runtime. I can do this for a textbox but can't figure out how to accomplish this for a listbox. Any help? Thanks.
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
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: 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: 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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

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.