"(for us Brits "pants" don't mean trousers Smile | :) )" What? They do around these parts
MarqW
Posts
-
The man may own no pants or shoes... -
CCC Tuesday (Solved)Correct. Sorry if it wasn't challenging enough, I don't really do Cyptic Crosswords, just knew the last one ;-)
-
CCC Tuesday (Solved)Sorry it's a bit late, was in a meeting... Black and white lamb starts to cry (4)
-
CCC Monday + Hint + Hint: SOLVED!Urm, I have no idea for actually providing a puzzle. I also don't frequent CP much, but I'll try and remember. BTW, what does CCC actually stand for?
-
CCC Monday + Hint + Hint: SOLVED!The Wireless?
-
VB Date NonsenseI would argue that it's not nonsense - you can tell by looking at it exactly what it does - it's just not the best way of doing it :)
-
Theme broken imagesI spent ages looking for the bookmark button which had disappeared. It turns out that following images are broken links. They return "Page Not Found"
http://s.codeproject.com/App\_Themes/Valentines/Img/email.gif
http://s.codeproject.com/App\_Themes/Valentines/Img/print.gif
http://www.codeproject.com/App\_Themes/Valentines/Img/bookmark.gif -
MQOTDYip... Love that movie :D
-
Tabs versus spaces: Spaces wonI hate all the defaults of tabs space of 4 and 8... I mean 8!? Come on, you're half way across the screen. 2 is the magic number :-D
-
Coding - the new LatinI can kind of agree - I got into programming mainly because my parents got me a programming book, and my dad did really primitive code. That said, if they don't get any exposure they'll never even think of looking at it.
-
how to disable multi select of checkbox in listview ?Just a little improvement for you. This one only performs one check condition, and handles the case if both keys are pressed (or one key with Alt or Win)
if( (Control.ModifierKeys & (Keys.Shift | Keys.Control)) )
{
e.NewValue = e.CurrentValue;
} -
how to disable multi select of checkbox in listview ?Seriously? The reply above has already converted it to C#. Even if you hadn't seen that, it's one line of code which pretty much translates as-is, apart from If Then, becomes If( )
-
how to disable multi select of checkbox in listview ?I've got a better solution:
Private Sub ListView1_ItemCheck(ByVal sender As Object, ByVal e As System.Windows.Forms.ItemCheckEventArgs) Handles ListView1.ItemCheck
If (ModifierKeys And (Keys.Shift Or Keys.Control)) <> 0 Then e.NewValue = e.CurrentValue
End SubEnjoy
-
Next VS 2010 RantSorry, but he is correct. Might be the MSI for Visual Studio, but it's not Visual Studio 2010