Click here to Skip to main content
15,891,621 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I use below code:
VB
sSql = String.Format("SELECT BuyMemoNo,ProductID,ProductName from BuyProduct  where BuyMemoNo = {0}", TextBox6.Text)
Call FillList()

Public Sub FillList()
    With ListView1
        .Clear()
        .Columns.Add("ColumnHeader", 50)
        .Columns.Add("ID", 50)
        .Columns.Add("Product Name", 300)
        FillListView(ListView1, GetData(sSql))
    End With
End Sub

Now show 'FillListView' is not declared. It may be inaccessible due to its protection level.

I am using sql-server-2012.
how i can solve it?
Posted
Updated 1-May-15 5:50am
v3
Comments
John C Rayan 1-May-15 11:49am    
where is FillListView? What are you trying to do?

1 solution

We already answered this. FillListView cannot be found. You aren't posting it and we can't see it so we can't help you beyond that.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900