User Dmitri Kouminov - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T08:14:10Zhttp://stackoverflow.com/feeds/user/96619http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1538345/format-an-sql-query-using-a-function/1544495#15444950Answer by Dmitri Kouminov for Format an SQL Query using a functionDmitri Kouminov2009-10-09T15:27:36Z2009-10-09T15:27:36Z<p>In SQL Server create function</p>
<pre><code>CREATE FUNCTION [dbo].[GetX]
(
@id INT
)
RETURNS NVARCHAR(1024)
AS
BEGIN
DECLARE @AllInX NVARCHAR(1024)
SELECT @AllInX = ISNULL(@AllInX + ', ', '') + LTRIM(RTRIM(X))
FROM NamesAndX
WHERE ID = @id
RETURN @AllInX
END
</code></pre>
<p>And your query will be</p>
<pre><code>SELECT ID
, Name
, dbo.GetX(ID)
FROM Names
</code></pre>
http://stackoverflow.com/questions/879286/how-convert-pcl-generated-by-hp-laserjet-5-into-pdf-in-c1How convert PCL generated by HP LaserJet 5 into PDF in C#?Dmitri Kouminov2009-05-18T19:11:13Z2009-07-09T14:02:25Z
<p>I need to retire 15 years old system and preserve all data. It can only print documents into specific printer HP LaserJet 5. I can print documents into PCL files and looking for ways to convert all this files into PDFs programmatically. Preferably in C#. Can anybody recommend good library or command line tool? Preferably free ;-)</p>
http://stackoverflow.com/questions/1021973/select-distinct-from-usercolumn-and-minimum-value-of-dates-for-each-field-in-user/1021982#10219821Answer by Dmitri Kouminov for Select distinct from usercolumn and minimum value of dates for each field in usercolumnDmitri Kouminov2009-06-20T16:39:19Z2009-06-20T16:39:19Z<p>Something like this should do the tick</p>
<pre><code> SELECT usercolumn
, MIN(datecolumn)
FROM YouTable
GROUP BY usercolumn
, MIN(datecolumn)
</code></pre>
http://stackoverflow.com/questions/1019414/linq-to-sql-with-stored-procedures-and-user-defined-table-type-parameter1LINQ to SQL with stored procedures and user defined table type parameterDmitri Kouminov2009-06-19T18:29:52Z2009-06-19T20:33:00Z
<p>I am using LINQ to SQL with stored procedures in SQL Server 2008. Everything work well except one problem. L2S cannot generate the method for the stored procedure with user defined table type as parameter.
Method signature in dbml design panel use object for parameter type instead of table type and when I tried to compile I got error:</p>
<pre><code>Error: DBML1005: Mapping between DbType 'Structured' and
Type 'System.Object' in Parameter 'ParaName' of Function 'dbo.StoredProcName'
is not supported.
</code></pre>
<p>Is there a way to work around this of this problem? I don't want to go back to traditional ADO.NET data access.
<br>
Thanks</p>
http://stackoverflow.com/questions/841015/sharepoint-2007-x64-workflow-with-visual-studio-20083SharePoint 2007 x64 workflow with Visual Studio 2008?Dmitri Kouminov2009-05-08T17:47:00Z2009-06-19T18:41:56Z
<p>I have development environment with 64-bit SharePoint 2007. I tried to create SharePoint workflow with Visual Studio 2008 and got error message "A 32-bit version of SharePoint Server is not installed. Please install a 32-bit version of SharePoint Server". Is there any way to solve this problem?</p>
http://stackoverflow.com/questions/637486/how-to-get-the-current-users-active-directory-details-in-c/1003265#10032650Answer by Dmitri Kouminov for How to get the current user's Active Directory details in C#Dmitri Kouminov2009-06-16T18:45:16Z2009-06-16T18:45:16Z<p>Add reference to COM "Active DS Type Library"</p>
<p><hr /></p>
<pre><code> Int32 nameTypeNT4 = (int) ActiveDs.ADS_NAME_TYPE_ENUM.ADS_NAME_TYPE_NT4;
Int32 nameTypeDN = (int) ActiveDs.ADS_NAME_TYPE_ENUM.ADS_NAME_TYPE_1779;
Int32 nameTypeUserPrincipalName = (int) ActiveDs.ADS_NAME_TYPE_ENUM.ADS_NAME_TYPE_USER_PRINCIPAL_NAME;
ActiveDs.NameTranslate nameTranslate = new ActiveDs.NameTranslate();
// Convert NT name DOMAIN\User into AD distinguished name
// "CN= User\\, Name,OU=IT,OU=All Users,DC=Company,DC=com"
nameTranslate.Set(nameTypeNT4, ntUser);
String distinguishedName = nameTranslate.Get(nameTypeDN);
Console.WriteLine(distinguishedName);
// Convert AD distinguished name "CN= User\\, Name,OU=IT,OU=All Users,DC=Company,DC=com"
// into NT name DOMAIN\User
ntUser = String.Empty;
nameTranslate.Set(nameTypeDN, distinguishedName);
ntUser = nameTranslate.Get(nameTypeNT4);
Console.WriteLine(ntUser);
// Convert NT name DOMAIN\User into AD UserPrincipalName Name.User@Company.com
nameTranslate.Set(nameTypeNT4, ntUser);
String userPrincipalName = nameTranslate.Get(nameTypeUserPrincipalName);
Console.WriteLine(userPrincipalName);
</code></pre>
http://stackoverflow.com/questions/879725/what-is-net-ria-services/899707#8997070Answer by Dmitri Kouminov for What is .NET RIA Services?Dmitri Kouminov2009-05-22T19:58:05Z2009-05-22T19:58:05Z<p>General info and downloads <a href="http://silverlight.net/forums/t/80529.aspx" rel="nofollow">http://silverlight.net/forums/t/80529.aspx</a>
<br />
<br />
Detailed info here RIAServicesOverviewforMay2009.docx
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=76bb3a07-3846-4564-b0c3-27972bcaabce&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=76bb3a07-3846-4564-b0c3-27972bcaabce&displaylang=en</a></p>
http://stackoverflow.com/questions/889629/how-to-get-a-date-in-yyyy-mm-dd-format-from-a-tsql-datetime-field/889680#8896800Answer by Dmitri Kouminov for How to get a date in YYYY-MM-DD format from a TSQL datetime field?Dmitri Kouminov2009-05-20T19:09:42Z2009-05-20T20:43:48Z<p>SELECT CONVERT(NVARCHAR(20), GETDATE(), 23)</p>
http://stackoverflow.com/questions/879286/how-convert-pcl-generated-by-hp-laserjet-5-into-pdf-in-c/884791#8847910Answer by Dmitri Kouminov for How convert PCL generated by HP LaserJet 5 into PDF in C#?Dmitri Kouminov2009-05-19T20:13:56Z2009-05-19T20:13:56Z<p>The simplest solution I found is <a href="http://www.verypdf.com/pcltools/index.html" rel="nofollow">VeryPDF PCL Converter</a> <a href="http://www.verypdf.com/pcltools/index.html" rel="nofollow">http://www.verypdf.com/pcltools/index.html</a>. It has command line mode, GUI (for command line), batch mode and only cost $125. My company has been pay for it. Hope this will help somebody too.</p>
http://stackoverflow.com/questions/877928/select-from-inner-joined-tables/878007#8780071Answer by Dmitri Kouminov for 'SELECT *' from inner joined tablesDmitri Kouminov2009-05-18T14:22:17Z2009-05-18T14:22:17Z<p>Do not use *. Use somthing like this:</p>
<pre><code>SELECT P.field1 AS 'Field from P'
, P.field2
, S.field1 AS 'Field from S'
, S.field4
FROM Products P
INNER JOIN
Services S
ON P.IdService = S.IdService
</code></pre>
http://stackoverflow.com/questions/833458/hidden-features-of-the-wss-3-0-sharepoint-2007-development-platform/836660#8366601Answer by Dmitri Kouminov for Hidden features of the WSS 3.0 / SharePoint 2007 development platformDmitri Kouminov2009-05-07T19:49:31Z2009-05-07T19:49:31Z<p><code>SPEmailEventReceiver</code> class. Allow e-mail enable lists like Contacts that don't have this ability out of the box. </p>
http://stackoverflow.com/questions/836368/is-there-a-64-bit-version-of-microsoft-common-controls-mscomctl-ocx/836594#836594-2Answer by Dmitri Kouminov for Is there a 64-bit version of Microsoft Common Controls (MSCOMCTL.OCX)?Dmitri Kouminov2009-05-07T19:37:55Z2009-05-07T19:37:55Z<p>OCX is COM bassed. But COM don't have 64-bit implementation.</p>
http://stackoverflow.com/questions/830880/how-to-enter-long-sql-text-sample-data-with-visual-studio/830928#8309281Answer by Dmitri Kouminov for How to enter long SQL text sample data with Visual Studio?Dmitri Kouminov2009-05-06T18:11:47Z2009-05-06T18:11:47Z<p>I don't think it's possible. Management Studio display multi-lines text as one string.</p>
http://stackoverflow.com/questions/821660/noise-words-sql-server-2005-backslash/821683#8216830Answer by Dmitri Kouminov for Noise Words SQL SERVER 2005 BackSlashDmitri Kouminov2009-05-04T19:50:11Z2009-05-04T19:50:11Z<p>Try this
<br />
<br />
<strong>select [description] from MyTable
<br />
where [description] LIKE '%3/4 and bear%'</strong></p>
http://stackoverflow.com/questions/814029/tsql-how-to-check-a-value-against-a-value-in-a-different-column-before-insertin/814111#8141110Answer by Dmitri Kouminov for TSQL - How to check a value against a value in a different column before inserting?Dmitri Kouminov2009-05-02T04:03:57Z2009-05-02T04:03:57Z<p>You can try to use triggers.</p>
http://stackoverflow.com/questions/812932/play-youtube-flv-offline/812948#8129481Answer by Dmitri Kouminov for Play Youtube FLV Offline ?Dmitri Kouminov2009-05-01T19:49:18Z2009-05-01T19:49:18Z<p>Did you try VLC media player <a href="http://www.videolan.org" rel="nofollow">http://www.videolan.org</a>?</p>
http://stackoverflow.com/questions/808756/appropriate-net-data-type-for-decimal20-0/808787#8087870Answer by Dmitri Kouminov for Appropriate .Net data type for decimal(20,0)Dmitri Kouminov2009-04-30T20:05:52Z2009-04-30T20:05:52Z<p>.NET decimal has methods <strong>decimal.ToInt64()</strong>, <strong>decimal.ToInt32()</strong> etc.</p>
http://stackoverflow.com/questions/808670/combine-two-or-more-pdfs/808703#8087030Answer by Dmitri Kouminov for Combine two (or more) PDF'sDmitri Kouminov2009-04-30T19:46:00Z2009-04-30T19:46:00Z<p>Here the solution <a href="http://www.wacdesigns.com/2008/10/03/merge-pdf-files-using-c" rel="nofollow">http://www.wacdesigns.com/2008/10/03/merge-pdf-files-using-c</a>
It use free open source iTextSharp library <a href="http://sourceforge.net/projects/itextsharp" rel="nofollow">http://sourceforge.net/projects/itextsharp</a></p>
http://stackoverflow.com/questions/807683/loading-gui-app-from-windows-service/808508#8085080Answer by Dmitri Kouminov for Loading GUI App from Windows ServiceDmitri Kouminov2009-04-30T18:56:03Z2009-04-30T18:56:03Z<p>You can use free <a href="http://technet.microsoft.com/en-us/sysinternals/bb963905.aspx" rel="nofollow">Autologon</a> utility <a href="http://technet.microsoft.com/en-us/sysinternals/bb963905.aspx" rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/bb963905.aspx</a> from Sysinternals/Microsoft and put you application into Startup for autologon user profile. After that you can configure screen sever to start in several minutes and check "On resume, display logon screen" checkbox. </p>
http://stackoverflow.com/questions/808106/documenting-existing-code/808158#8081580Answer by Dmitri Kouminov for documenting existing codeDmitri Kouminov2009-04-30T17:37:39Z2009-04-30T17:37:39Z<p><a href="http://www.helixoft.com" rel="nofollow">VSdocman</a> (<a href="http://www.helixoft.com" rel="nofollow">http://www.helixoft.com</a>) is excellent tool for generate documentation for C# and VB.NET. They also has tool for VB6. You can download 14 day trial version. Price started from $229 for .NET version and $79 for VB6. </p>
http://stackoverflow.com/questions/802428/sharepoint-integration-for-single-sign-on/802486#8024860Answer by Dmitri Kouminov for SharePoint Integration for Single-sign OnDmitri Kouminov2009-04-29T13:58:45Z2009-04-29T13:58:45Z<p>You can build ASP.NET application integrated into SharePoint. See here detailed description on how it can be done <a href="http://rshelton.com/archive/2007/10/05/free-sharepoint-document-workflow-workshop---part-2-asp.net-workflow.aspx." rel="nofollow">http://rshelton.com/archive/2007/10/05/free-sharepoint-document-workflow-workshop---part-2-asp.net-workflow.aspx.</a> Ignore workflow part. Just look how build and deploy "Association Form". This will give you a good idea on how to build you own SharePoint integrated web form.</p>
http://stackoverflow.com/questions/92811/reverse-engineering-for-database-diagramming-in-visio-with-sql-server-2008/799349#7993490Answer by Dmitri Kouminov for Reverse Engineering for Database Diagramming in Visio with SQL Server 2008Dmitri Kouminov2009-04-28T18:50:28Z2009-04-28T18:50:28Z<p>Chip,
<br />
The problem with your solution is that you lost actual physical data types. For example my column in SQL server is NVARCHA(50) converted into ODBC generic LONGVARBINARY. When I changed driver to SQL server it converted to type IMAGE.
<br />
It's not a big problem for 2-3 tables database. But the idea is to simplify documentation for big databases.
<br />
Looks like your only free solution for now it to create database diagram inside of SQL server.</p>
http://stackoverflow.com/questions/798355/best-development-virtualisation-environment/798374#7983740Answer by Dmitri Kouminov for Best development virtualisation environmentDmitri Kouminov2009-04-28T14:51:19Z2009-04-28T14:51:19Z<p>Hyper-V server - free real hypervisor.
<br />
Windows 2008 Server with Hyper-V.
<br />
VMWorkstation</p>
http://stackoverflow.com/questions/792541/how-do-i-handle-sharepoint-exceptions/797979#7979791Answer by Dmitri Kouminov for How do I handle SharePoint exceptions?Dmitri Kouminov2009-04-28T13:38:05Z2009-04-28T13:38:05Z<p>Look in this article "Simplifying SharePoint debugging by creating the troubleshooting toolbox" <a href="http://sharepointmagazine.net/technical/development/getting-started-with-sharepoint-programming-simplifying-sharepoint-debugging-by-creating-the-troubleshooting-toolbox" rel="nofollow">http://sharepointmagazine.net/technical/development/getting-started-with-sharepoint-programming-simplifying-sharepoint-debugging-by-creating-the-troubleshooting-toolbox</a>. It has several good tips on logging, debugging etc. when you develop app for SharePoint.</p>
http://stackoverflow.com/questions/795645/windows-server-2008-hyper-v-on-x86-processor/795887#7958870Answer by Dmitri Kouminov for Windows Server 2008 Hyper-V on x86 processorDmitri Kouminov2009-04-28T01:24:13Z2009-04-28T01:24:13Z<p>Hyper-V only is supported for x64 CPU. In addition to it 64 bit CPU should support Intel or AMD virtualization hardware. Guest OS can be 32 or 64 bit. There is simple application SecurAble <a href="http://www.grc.com/securable.htm" rel="nofollow">http://www.grc.com/securable.htm</a> that you can use to test you hardware without actually installing Windows 2008/Hyper-V. In many cases you should enable hardware virtualization in BIOS.
<br />
There are several problems with Hyper-V. One of the most annoying is luck of USB support in guest OS.
<br />
Other than that it’s a very good tool.</p>
http://stackoverflow.com/questions/795180/sharepoint-public-form/795233#7952331Answer by Dmitri Kouminov for sharepoint public formDmitri Kouminov2009-04-27T20:47:50Z2009-04-27T20:47:50Z<p>You can create simple workflow that move new document from public document library to protected one. Or you can email enable document library to get filled form as attachment to protected document library.
<br>
Here free workshop on with videos, detailed descriptions of the development environment etc. on how to build SharePoint Workflows. <a href="http://rshelton.com/archive/2007/10/05/free-workshop-sharepoint-document-workflow-for-developers---part-1.aspx" rel="nofollow">http://rshelton.com/archive/2007/10/05/free-workshop-sharepoint-document-workflow-for-developers---part-1.aspx</a></p>
http://stackoverflow.com/questions/774871/why-did-you-learn-c/795168#7951681Answer by Dmitri Kouminov for Why did you learn C?Dmitri Kouminov2009-04-27T20:32:12Z2009-04-27T20:32:12Z<p>I switched to C from Pascal when I started programming for Windows 3. The only available good book at that time was "Programming Windows" by Charles Petzold. All samples was on C. So I had no choice ;-)</p>
http://stackoverflow.com/questions/794466/how-to-avoid-memory-leaks/794537#7945370Answer by Dmitri Kouminov for How to avoid Memory Leaks?Dmitri Kouminov2009-04-27T17:48:09Z2009-04-27T17:48:09Z<p>Use "using" keyword to automatically call Dispose() method of IDisposable object.
<br/>
For any COM interop you have to manually release all resources. </p>
http://stackoverflow.com/questions/793960/can-anybody-recommend-any-web-app-security-info-websites/794101#7941010Answer by Dmitri Kouminov for Can anybody recommend any web app security info websites?Dmitri Kouminov2009-04-27T15:39:21Z2009-04-27T15:39:21Z<p>Dominick Baier's site on .net and security www.leastprivilege.com.
He also has excellent book on ASP.NET security "Developing More-Secure Microsoft® ASP.NET 2.0 Applications".</p>
http://stackoverflow.com/questions/792094/how-to-get-linq-to-produce-exactly-the-sql-i-want/794063#7940631Answer by Dmitri Kouminov for How to get linq to produce exactly the sql I want?Dmitri Kouminov2009-04-27T15:31:53Z2009-04-27T15:31:53Z<p>I believe the best way is to use stored procedures. In this case you has full control on the SQL.</p>
http://stackoverflow.com/questions/1021973/select-distinct-from-usercolumn-and-minimum-value-of-dates-for-each-field-in-user/1021982#1021982Comment by Dmitri Kouminov on Select distinct from usercolumn and minimum value of dates for each field in usercolumnDmitri Kouminov2009-06-21T16:39:00Z2009-06-21T16:39:00ZSorry. Just mistypes.Thanks for correction.http://stackoverflow.com/questions/1019414/linq-to-sql-with-stored-procedures-and-user-defined-table-type-parameter/1019646#1019646Comment by Dmitri Kouminov on LINQ to SQL with stored procedures and user defined table type parameterDmitri Kouminov2009-06-19T20:56:58Z2009-06-19T20:56:58ZInteresting. There is a light at the end of the tunnel. LINQ to SQL is alive. Great. Thanks.http://stackoverflow.com/questions/1019414/linq-to-sql-with-stored-procedures-and-user-defined-table-type-parameter/1019646#1019646Comment by Dmitri Kouminov on LINQ to SQL with stored procedures and user defined table type parameterDmitri Kouminov2009-06-19T20:01:52Z2009-06-19T20:01:52ZDo you have any info on new feature (if any) in L2S in .NET4.0?http://stackoverflow.com/questions/833458/hidden-features-of-the-wss-3-0-sharepoint-2007-development-platform/836660#836660Comment by Dmitri Kouminov on Hidden features of the WSS 3.0 / SharePoint 2007 development platformDmitri Kouminov2009-06-11T21:53:50Z2009-06-11T21:53:50ZYes. I did it for contact listhttp://stackoverflow.com/questions/879286/how-convert-pcl-generated-by-hp-laserjet-5-into-pdf-in-c/916927#916927Comment by Dmitri Kouminov on How convert PCL generated by HP LaserJet 5 into PDF in C#?Dmitri Kouminov2009-05-27T20:52:41Z2009-05-27T20:52:41ZIt cost $895 compare to $125 for VeryPDF PCL Converter. http://stackoverflow.com/questions/889629/how-to-get-a-date-in-yyyy-mm-dd-format-from-a-tsql-datetime-field/889680#889680Comment by Dmitri Kouminov on How to get a date in YYYY-MM-DD format from a TSQL datetime field?Dmitri Kouminov2009-05-20T20:43:32Z2009-05-20T20:43:32ZYou right don't need replace.http://stackoverflow.com/questions/889629/how-to-get-a-date-in-yyyy-mm-dd-format-from-a-tsql-datetime-field/889680#889680Comment by Dmitri Kouminov on How to get a date in YYYY-MM-DD format from a TSQL datetime field?Dmitri Kouminov2009-05-20T19:16:30Z2009-05-20T19:16:30ZI prever to use UNICODE. Mos of my projects international ;-)http://stackoverflow.com/questions/812932/play-youtube-flv-offline/812944#812944Comment by Dmitri Kouminov on Play Youtube FLV Offline ?Dmitri Kouminov2009-05-01T19:53:58Z2009-05-01T19:53:58ZSee book "Coding4Fun: 10 .NET Programming Projects for Wiimote, YouTube, World of Warcraft, and More" <a href="http://www.amazon.com/Coding4Fun-Programming-Projects-Wiimote-Warcraft/dp/0596520743/ref=pd_bbs_1?ie=UTF8&s=books&qid=1241207549&sr=8-1" rel="nofollow">amazon.com/Coding4Fun-Programming-Projects-Wiimot…</a>