Hello,
I just found this post very usefull for a quick reference of the formatting strings: http://idunno.org/archive/2004/14/01/122.aspx
Just post it here to keep a track ;)
Hello,
I just found this post very usefull for a quick reference of the formatting strings: http://idunno.org/archive/2004/14/01/122.aspx
Just post it here to keep a track ;)
Hm, recently I came to a strange site:
http://php-compiler.net/doku.php
It's an enthusiastic project to make PHP compiler for .NET and to make possible write PHP applications in the .NET environment and ASP.NET 2.0. It is still in BETA stage, but they already have Project templates for VS2005 SP1.
I shall investigate and make further posts about this one ;)
A quick search with not wasting much time just showed me this nice site: http://regexlib.com/RETester.aspx where you can test your Regular Expressions.
You might find it usefull.
In my last project I decided to go out with MySQL. Why - do not ask why ;)
Anyway.
In the process of building, debugging, developing I noticed that some of the searches does not return a correct result. A search in a VARCHAR field (for Cyrillic characters). I looked for the table encoding - it was UTF8; I looked for the column encoding - it was UTF8 (both collations utf8_general_ci); I looked for the server default encoding - UTF8; I looked for the encoding passed by the client application - again it was UTF8.
Suddenly, by incident I noticed - the encoding of the database was cp1251 (the Cyrillic one). It killed me.
A simple command solved the problem:
ALTER DATABASE {db_name} DEFATULT ENCODING utf8, DEFAULT COLLATION utf8_general_ci;
But I was inserting correct values, when I was browsing the table I could see the right values, but when I search for specific values in the STORED PROCEDURE with AD-HOC SQL built dynamically in the procedure, I could not get the results ...
No Idea ... but I begin to look more and more to the MS SQL server ... and its EXPRESS edition...
Hello,
Merry Christmas and Happy New 2008 !!
So, May be you have heard a lot of "Print Spooler hangs" using Windows Vista and sharing a printer. I had a terrible couple of days looking for solution of the problem. Including online chat with HP support and posting on Microsoft TechNet forums.
Problem anatomy:
Now, the only way I got this printer to print job from the XP is the following:
Any other attempts to print (i.e. authenticate with different name, that has full access to the printer /SECURITY TAB/, or UAC ON) just sends the print job to the Queue and nothing happens until restart of print spooler service on the VISTA.
Here is the solution:
What do you need to make it work?
The tricky part - change the following policies in the VISTA host:
Note: To change local policies you can click the "START" and then in the search box type in: gpedit.msc
The drivers part - install the additional drivers on the VISTA box:
The next trick (optional if the above scenario still does not solve the problem):
The funniest:
Voila!
Hope this will work out for you.
The original forum posts are here:
http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=2629862&SiteID=17