问题描述
就是一订房系统,主要就是想在预定界面上能分辨出哪个房间已经订了,哪个还没订。(订了的变色)高手帮帮忙!不胜感激!!!
解决方案
解决方案二:
SqlConnectioncn=newSqlConnection("连接字符串");SqlCommandcmd=newSqlCommand("select客房号fromtablenamewhere预订=1",cn);SqlDataReaderdr=cmd.ExecuteReader(CommandBehavior.CloseConnection);while(dr.Read()){Labeltmp=(Label)this.Controls.Find(dr["客房号"].ToString(),true)[0];if(tmp!=null)tmp.BackColor=Color.Red;}dr.Close();cmd.Dispose();
解决方案三:
哦sorry我需要vb2005的哦不过还是非常感谢你哦!
解决方案四:
DimcnAsNewSqlConnection("连接字符串")DimcmdAsNewSqlCommand("select客房号fromtablenamewhere预订=1",cn)DimdrAsSqlDataReader=cmd.ExecuteReader(CommandBehavior.CloseConnection)Whiledr.Read()DimtmpAsLabel=CType(this.Controls.Find(dr("客房号").ToString(),True)(0),Label)IftmpIsNotNothingThentmp.BackColor=Color.RedEndWhiledr.Close()cmd.Dispose()
解决方案五:
非常感谢哈
解决方案六:
怎么给你加分啊??