I have spent two days trying to get this to work Ideeally it would be included in an ascx page. I could not get that to work so I tried this stripped down page. Same problem, no data, just the data loading message.
Here is my aspx page.
<%@ Register TagPrefix="richcombo" Namespace="RicherComponents.RichLiveComboControl" Assembly="RichLiveCombo" %>
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="LIVETEST.aspx.vb" Inherits="WFB.CPGI.Tracker.LiveTest" %>
my asp.vb page is .
Public Class LiveTest
Inherits System.Web.UI.Page
Public WithEvents RichLivecombo1 As RicherComponents.RichLiveComboControl.RichLiveCombo
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
Private Sub InitializeComponent()
End Sub
'NOTE: The following placeholder declaration is required by the Web Form Designer.
'Do not delete or move it.
Private designerPlaceholderDeclaration As System.Object
Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Dim sURL As String = Server.MapPath("DATA/DataCustomers.mdb")
RichLivecombo1.LoadingImagePath = "DataLoadingImages/dataloading_red.gif"
RichLivecombo1.ConnectionString = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" + sURL
RichLivecombo1.SQLStatement = "SELECT * FROM Customers ORDER BY CompanyName"
RichLivecombo1.DataTextField = "CompanyName"
RichLivecombo1.DataValueField = "CustomerID"
RichLivecombo1.DataMember = "Customers"
'lblMessage.Text =RichLiveCombo1.Text
End Sub
Sub submit_Click(ByVal sender As Object, ByVal e As System.EventArgs)
' lblMessage.Text = RichLivecombo1.Text
End Sub
End Class