Microsoft
Software
Hardware
Network
Question : Is their anyway to convert label to a string
Is their anyway to convert label to a string
Dim u As UserControl = TryCast(FindControl("Event
Details"),
UserControl)
Dim b As Label = TryCast(u.FindControl("lbl
EventID"),
Label)
Answer : Is their anyway to convert label to a string
If u are able to find the control, then u can assign the label text to string like
Dim b As Label = TryCast(u.FindControl("lbl
EventID"),
Label)
dim str as string
str = b.Text
Random Solutions
How do I convert a stored procedure to be used for batch processing?
How to use DOS with Virtual PC
Autogeneration of Alphanumeric in vb.net and inserting it to sql server
Animation in emial body
Multiple Criteria in Query
Outlook Disconnected
IE 6 Close "memory could not be read" error
PHP write permissions
DoCmd.OpenForm Question
What is First Normal Form (1NF)?