Hi
I've got a TSQL view which looks like this
SELECT TOP 100 PERCENT --Needed for the ORDER BY clause
N.NHSReasonID
,N.Reason
,N.Notes
,N.TopValue
FROM
dbo.NHSReason N
ORDER BY
N.TopValue DESC
,N.Reason
In my VB.Net application, I have a ComboBox which uses the above as its datasource...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.