rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!
I want the root user to be the first result. Just the root.
root
anotheruser
otheruser
someuser
after the result (which the root first come out (should)), records are then sorted by asc, alphabetically. NotKLH is right putting a whitespace or a special character on the root user but the root has to enter [special character]root on the login form.
I want the root user to be the first result. Just the root.
root
anotheruser
otheruser
someuser
after the result (which the root first come out (should)), records are then sorted by asc, alphabetically. NotKLH is right putting a whitespace or a special character on the root user but the root has to enter [special character]root on the login form.
Ahhh, well make an extra column called importance. Give root an importance of 0 and everything else an importance of 1 and use this query:
Code:
SELECT username, importance
FROM [user]
ORDER BY importance, username;