未将对象设置引用到实例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了未将对象设置引用到实例相关的知识,希望对你有一定的参考价值。
Dim w_ComboKbn_ZeiKbn1 As New ComboEditorKbnMei
With w_ComboKbn_ZeiKbn1
' DbContorlの设定
.DataControl = DC
' デモコードの设定
.KbnCd = "DEMO_FLG"
'名称表示用セル位置の设定
.NameCell = New MPosition(shtHinmoku.KeyPos("DEMO_FLG").Col, _
shtHinmoku.KeyPos("DEMO_FLG").Row)
' アイテムを设定
.SetItems()
End With
Me.shtHinmoku.ExTemplate.Cells("DEMO_FLG").Editor = w_ComboKbn_ZeiKbn1
最后一句
未将对象引用设置到对象的实例
SqlConnection mysqlconnection123 = new SqlConnection("server=localhost;uid=sa;password=wxj;database=Bid");
mysqlconnection123.Open();
string mySqlString="select Add_Item.Item_desc 物品名称用描述,max(item_price.price) as 最高出价,Add_Item.base_price 底价 from add_item join item_price on Add_Item.[user_id]!=item_price.userid and item_price.itemid=Add_Item.id join [user] on 1=1 where [user.account]=" + Request.Form["account"].ToString() + " group by Item_desc,price,base_price "; //说是这行错,未将对象引用设置到对象的实例
SqlCommand mycommand = new SqlCommand(mySqlString, mysqlconnection123);
SqlDataReader sqlread = mycommand.ExecuteReader();
while (sqlread.Read())
DataGrid2.DataSource = sqlread["Add_Item.Item_desc "];
DataGrid2.DataSource = sqlread["item_price.price "];
DataGrid2.DataSource = sqlread["Add_Item.base_price "];
DataGrid2.DataBind();
请高手指点!谢谢
Debug下这个本回答被提问者采纳
以上是关于未将对象设置引用到实例的主要内容,如果未能解决你的问题,请参考以下文章