Delphi always did this right. Even back in 1990. But Some dipshit at Microsoft thought this would be the perfect way to make controls dock. When you dock a binding navigator to the top of your panel or form, and then a Datagridview to "fill", Microsoft thought this is what you'd have in mind.
Even the little box that pops up seems to show it correctly.
Whatever the case, I must now use a splitter - an object with tons of functionality that I don't want - to complete my layout.
Microsoft, you SUCK.
...
Bryan Valencia is a contributing editor and founder of Visual Studio Journey. He owns and operates Software Services, a web design and hosting company in Manteca, California.
Wednesday, August 29, 2012
Wednesday, August 1, 2012
C#: Quickly Strip out all the Spaces from a String
This line of code will remove all spaces from a string.
...
Bryan Valencia is a contributing editor and founder of Visual Studio Journey. He owns and operates Software Services, a web design and hosting company in Manteca, California.
string s="Some string with spaces";
string s2 = string.Join("",s.Split(' '));
...
Bryan Valencia is a contributing editor and founder of Visual Studio Journey. He owns and operates Software Services, a web design and hosting company in Manteca, California.
Subscribe to:
Posts (Atom)