Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0duallist problemduallist problem
Previous
 
Next
New Post
9/2/2009 5:44 PM
 

Hi,

I'm trying to populate a duallist control with this code:

Dim arrAvailable As New ArrayList
Dim arrAssigned As New ArrayList

Dim mySqlString As New StringBuilder()
 mySqlString.Append("SELECT dbo.SunsetHill_MetaState_Course.CourseCategoryID, ")
 mySqlString.Append(" dbo.SunsetHill_MetaState_Course.NameVC")
 mySqlString.Append(" FROM dbo.SunsetHill_MetaState_CourseCategory, ")
 mySqlString.Append(" dbo.SunsetHill_MetaState_Course")
 mySqlString.Append(" WHERE(dbo.SunsetHill_MetaState_CourseCategory.CourseCategoryID = dbo.SunsetHill_MetaState_Course.CourseCategoryID) ")
 mySqlString.Append(" ORDER BY dbo.SunsetHill_MetaState_Course.SortOrderIN")
 Dim dataReader As SqlDataReader = DotNetNuke.Data.DataProvider.Instance.ExecuteSQL(mySqlString.ToString())
 Do While dataReader.Read()
        Dim objItem As New ListItem
        objItem.Value = dataReader("CourseCategoryID").ToString
        objItem.Text = dataReader("NameVC").ToString
        arrAvailable.Add(objItem)
 Loop

Me.ctlCourses.Available = arrAvailable

***********************

I'm using an example from a DNN3 tutorial.  When the last line of code executes - Me.ctlCourses.Available = arrAvailable - there are 35 items in the arrAvailable array - but the duallist control does not get populated...

Anyone know what I may be doing wrong?

 

 
New Post
9/2/2009 8:52 PM
 

You will need to bind the conrtol after setting their array values.
ctlCourses.DataBind()


Robert Harriman
WEBMAZING.NET
AutoWebSuite / BrokerWebSuite

DNN Modules for Auto Dealers and Real Estate Professionals.

 
New Post
9/3/2009 10:08 AM
 

Tried that last night - with no luck.

I did some research and found a free dual-list control (and a bunch of others) here:

http://www.codeplex.com/metabuildersweb/

Anyone looking for a basic dual list control that support double-click to move from one list to the other - this one works great and comes with good documentation.

 

 

 

 

 

 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0duallist problemduallist problem


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out