asked on
ASKER
Select a.CUSTNUM, a.SHIPMTHD, c.SORTORDER from RM00101 a
OUTER APPLY
(
SELECT CUSTNUM, SHIPMTHD, SORTORDER FROM gsi_route_sort_order b
WHERE b.CUSTNUM = a.CUSTNUM and b.SHIPMTHD = a.SHIPMTHD
) c
SELECT rm.custnum, rm.shipmthd, grso.sortorder
FROM rm00101 rm
INNER JOIN gsi_route_sort_order grso ON
gsro.custnum = rm.custnum AND
gsro.shipmthd = rm.shipmthd
ORDER BY gsro.sortorder
The .NET Framework is not specific to any one programming language; rather, it includes a library of functions that allows developers to rapidly build applications. Several supported languages include C#, VB.NET, C++ or ASP.NET.
TRUSTED BY
ASKER
It is my understanding that I need to create an unbound dgv to allow for the rows to be moved up and down.
Am I correct in that understanding?