User Robert Vuković - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T00:26:50Zhttp://stackoverflow.com/feeds/user/6240http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1853414/generic-repository-irepositoryt-or-irepository5Generic repository - IRepository<T> or IRepositoryRobert Vuković2009-12-05T20:50:16Z2009-12-05T21:09:18Z
<p>I have seen two different approaches for creating generic repositories. What are differences between those two approaches (pros and cons) ?
Please diregard difference in the methods because I am interested in difference between </p>
<pre><code> public interface IRepository<T> where T : class
</code></pre>
<p>and </p>
<pre><code> public interface IRepository : IDisposable
</code></pre>
<p>Is there any difference in functionality, flexibility, unit testing ... ? What will I get or lose ?<br>
Is there any difference how they are registered in Dependency Injection frameworks ?</p>
<p><strong>Option 1</strong></p>
<pre><code> public interface IRepository<T> where T : class
{
T Get(object id);
void Attach(T entity);
IQueryable<T> GetAll();
void Insert(T entity);
void Delete(T entity);
void SubmitChanges();
}
</code></pre>
<p><strong>Option 2</strong></p>
<pre><code> public interface IRepository : IDisposable
{
IQueryable<T> GetAll<T>();
void Delete<T>(T entity);
void Add<T>(T entity);
void SaveChanges();
bool IsDisposed();
}
</code></pre>
http://stackoverflow.com/questions/791658/system-net-webclient-fails-weirdly/1815215#18152150Answer by Robert Vuković for System.Net.WebClient fails weirdlyRobert Vuković2009-11-29T10:42:22Z2009-11-29T10:42:22Z<p>Take a look at this link:<br>
<a href="http://www.hashemian.com/blog/2007/06/http-authorization-and-net-webrequest.htm" rel="nofollow">HTTP Authorization and .NET WebRequest, WebClient Classes</a></p>
<p>I had the same problem as you. I have only added one line and it started to work. Try this</p>
<pre><code>private void ThisDoesntWork()
{
WebClient wc = new WebClient();
wc.Credentials = new NetworkCredential("username", "password", "domain");
//After adding the headers it started to work !
wc.Headers.Add(HttpRequestHeader.UserAgent, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)");
wc.DownloadString("http://teamfoundationserver/reports/........"); //blows up wih HTTP 401
}
</code></pre>
http://stackoverflow.com/questions/190344/wpf-blurry-fonts-problem-solutions19WPF Blurry fonts problem - SolutionsRobert Vuković2008-10-10T06:50:27Z2009-10-27T15:31:42Z
<p>Problem is described and demonstrated on the following links:</p>
<ul>
<li><a href="http://www.paulstovell.com/blog/wpf-why-is-my-text-so-blurry" rel="nofollow">Paul Stovell WPF: Blurry Text Rendering </a></li>
<li><a href="http://www.gamedev.net/community/forums/topic.asp?topic%5Fid=445078" rel="nofollow">www.gamedev.net forum</a></li>
<li><a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=380919&wa=wsignin1.0" rel="nofollow">Microsoft Connect: WPF text renderer produces badly blurred text on small font sizes</a></li>
</ul>
<p>Explanation: <a href="http://windowsclient.net/wpf/white-papers/wpftextclarity.aspx" rel="nofollow">Text Clarity in WPF</a>. This link has font comparison.</p>
<p>I would like to collect all possible solutions for this problem. Microsoft Expression Blend uses WPF but fonts look readable. </p>
<ul>
<li>Dark background as in Microsoft Expression Blend</li>
<li>Increasing the font size and changing the font (Calibri ... ) <a href="http://stackoverflow.com/questions/190344/wpf-blurry-fonts-problem#190521">[link]</a></li>
<li>Embed windows forms <a href="http://stackoverflow.com/questions/190344/wpf-blurry-fonts-problem#190540">[link]</a></li>
<li>Use GDI+ and/or Windows Forms TextRenderer class to render text to a bitmap, and then render that bitmap as a WPF control. <a href="http://stackoverflow.com/questions/190344/wpf-blurry-fonts-problem#283216">[link]</a></li>
</ul>
<p>Are there any more solutions?</p>
<p><a href="http://stackoverflow.com/questions/190344/wpf-blurry-fonts-problem-solutions/1494126#1494126"><strong>This is going to be fixed in VS2010 (and WPF4) beta 2</strong></a></p>
<p><a href="http://blogs.msdn.com/text/archive/2009/08/24/wpf-4-0-text-stack-improvements.aspx" rel="nofollow"><strong>WPF 4.0 Text Stack Improvements</strong></a></p>
http://stackoverflow.com/questions/665779/fba-roles-with-sharepoint-user-groups0Fba roles with SharePoint user groupsRobert Vuković2009-03-20T11:39:20Z2009-08-24T02:00:03Z
<p>I have built custom Membership and Role providers. Users are some clients that belong to the company and I am using Company as a Role.</p>
<p>I would like to create SharePoint Group and add more companies to it (for example type of industry) and then do redirecting and security by the SPGroup. </p>
<p>How do I retrieve SPGroup for the current logged in user ?<br />
I would like to this in my custom Login page so another problem is how do I retrieve SPUser or SPGroup knowing login name ? </p>
<p>This is what I have now:</p>
<pre><code>
private List GetGroupsForUser(List roleAccounts)
{
List groups = new List();
SPSecurity.RunWithElevatedPrivileges(
delegate()
{
using (SPSite site = new SPSite(SPContext.Current.Web.Site.ID))
{
SPUserCollection users = site.RootWeb.SiteUsers;
foreach (string account in roleAccounts)
{
SPGroupCollection accGroups = users[account].Groups;
foreach (SPGroup spg in groups)
{
groups.Add(spg);
}
}
}
}
);
return groups;
}
private string GetRoleManagerName()
{
foreach (KeyValuePair setting in SPContext.Current.Site.WebApplication.IisSettings)
{
if (string.IsNullOrEmpty(setting.Value.RoleManager) == false)
return setting.Value.RoleManager.ToLower();
}
return null;
}
private List GetSpAccounts()
{
List roleAccounts = new List();
string roleProviderName = GetRoleManagerName();
foreach (string role in Roles.GetRolesForUser(login.UserName))
{
roleAccounts.Add(roleProviderName + ":" + role.ToLower());
}
return roleAccounts;
}
// and now I can use it
List roleAccounts = GetSpAccounts();
List groups = GetGroupsForUser(roleAccounts);
</code></pre>
<p>But I have a felling that I should not have to do this manually like this. How will Target Audience work if only role is added to the group ?</p>
http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming/159201#1592010Answer by Robert Vuković for Python Vs. Ruby for MetaprogrammingRobert Vuković2008-10-01T19:07:13Z2009-07-30T07:38:13Z<h2>What about OCaml ?</h2>
<p>OCaml features: a static type system, type inference, parametric polymorphism, tail recursion, pattern matching, first class lexical closures, functors (parametric modules), exception handling, and incremental generational automatic garbage collection.</p>
<p>I think that it satisfies the following:</p>
<blockquote>
<p>Important:</p>
<ol>
<li>Nice, clean, sane syntax and consistent, intuitive semantics. Basically a well thought-out, fun to use, modern language.</li>
<li>Multiple paradigms. No one paradigm is right for every project, or even every small subproblem within a project.</li>
<li>An interesting language that actually affects the way one thinks about programming.</li>
</ol>
<p>Somewhat important:</p>
<ol>
<li>Performance. It would be nice if performance was decent, but when performance is a real priority, I'll use D instead.</li>
<li>Well-documented.</li>
</ol>
</blockquote>
http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense7SQL Server Management Studio 2008 IntellisenseRobert Vuković2008-10-30T13:12:02Z2009-07-01T22:40:13Z
<p>I just installed SQL Server Express 2008 because of intellisense feature. It worked at first but than it stopped working. Looking for the option to check and later consulting Google I have found that it looks like <strong>Microsoft disabled intellisense if you connect to SQL Server 2005 databases.</strong></p>
<p>Is this absolutely correct ?<br/>
Is there any solution for this (some registry "switch") ? </p>
http://stackoverflow.com/questions/902588/visual-basic-net-resources-for-c-developer0Visual Basic.NET resources for C# developerRobert Vuković2009-05-23T22:02:49Z2009-05-23T22:22:20Z
<p>I am C# developer and now I am involved in some large, already in production, project that is written in Visual Basic.NET.</p>
<p>I am trying hard not to write in C# and use some automatic conversion tool to Visual Basic.NET. I want to be able to read and write fluently in Visual Basic.NET <strong>QUICKLY</strong>. I can write and read VB.NET but it is not so easy like writing and reading C#.</p>
<p>I would be grateful if someone who was in the same situation could share there experience or point to some good resources.</p>
http://stackoverflow.com/questions/757381/how-to-use-bdd-naming-style-with-resharper-4-5/790335#7903350Answer by Robert Vuković for How to use bdd naming style with Resharper 4.5?Robert Vuković2009-04-26T06:13:49Z2009-04-26T06:13:49Z<p>There is no need to remove rules. New Rule can be added that accept underscores</p>
<p>Resharper | Options -> Languages -> Common -> Naming Style and add new rule to the bottom "User defined naming rules"</p>
http://stackoverflow.com/questions/759737/sharepoint-2007-publishing-site-and-audience-targeting-in-web-part1SharePoint 2007 Publishing site and Audience Targeting in Web PartRobert Vuković2009-04-17T09:29:13Z2009-04-19T07:15:02Z
<p>In a Publishing site I have web part that has to show news items from the list that has Audience Targeting field. I am using CAML query to retrieve small number of last news items. </p>
<p><strong>Is it possible to specify Target Audience in the CAML query ?</strong> If not, how should I do it ? Retrieve all results and than apply filter in a loop ? </p>
<p>I am practically duplicating Content Query Web Part and I need Audience Targeting in my custom web part. </p>
http://stackoverflow.com/questions/727271/deploying-layouts-in-sharepoint2Deploying Layouts in SharePointRobert Vuković2009-04-07T19:34:04Z2009-04-14T00:47:43Z
<p>I am developing publishing site. I have some layouts <strong>that are pre-populated with web parts</strong> and have a problem when I need to make some change on the layout.
Deployment succeeds but I still see old version. If make I change in SP Designer it is reflected OK but not if the change is done by the feature that is being deployed.
It looks like after I deploy particular layout any site collection in that web application will have the first version. </p>
<p>I have tried deleting complete site, all the pages, layouts and nothing happens, after deployment I still see old layout.</p>
<p>Current solution for this problem was that I take new virtual image and start with clean machine.</p>
<p>Real problem is how to solve this on clients installation without reverting to clean machine. There will be some bug fixes and I will have to send new WSP file with some changes in layout. </p>
<p><strong>Is there any way to force SharePoint to use newly deployed layout and not some old Unghosted version?</strong></p>
<p>If the layouts are without web parts I don't have this problem.</p>
<p><strong>Update</strong><br />
I am using default "Publishing Portal" and deploying layouts using features. For development I am using VSeWSS 1.3.</p>
<p>tried in SharePoint designer to detach page from layout and attach it again but still no results.</p>
http://stackoverflow.com/questions/704859/sharepoint-2007-banner-hit-counter1SharePoint 2007 Banner Hit CounterRobert Vuković2009-04-01T10:02:05Z2009-04-01T21:04:55Z
<p>In the SharePoint publishing site I will have some banners that are Web Parts and can have any HTML content inside them. I have requirement to count clicks on that banners. Banners will have some links to external sites.</p>
<p>I am not sure where to store counters for individual banners. Custom List is the first thing that came to my mind but I am not sure how will it behave in concurrent access. Can I lock list (list item) and do the counter increment ? What will happen for other list access if it is in lock state ? Will it fail or just wait ?</p>
<p>Are there any alternatives to storing counters somewhere else ?</p>
http://stackoverflow.com/questions/624296/how-to-deploy-sharepoint-publishing-site-with-multiple-sites1How to deploy Sharepoint publishing site with multiple sitesRobert Vuković2009-03-08T21:12:39Z2009-03-20T02:15:23Z
<p>I am developing publishing site and it will have complex tree structure.<br />
Is there any way to deploy site structure (multiple sub sites - SPWeb) using SharePoint solution?<br />
I know I can create site tree programmatically. </p>
http://stackoverflow.com/questions/662039/search-center-on-sharepoint-publishing-site1Search Center on SharePoint Publishing siteRobert Vuković2009-03-19T12:30:39Z2009-03-19T16:40:30Z
<p>Can someone give me some directions on how to setup SharePoint Search Center so I can get results from the list and that they have some custom (modified) link? </p>
<p>I have Forms authentication (and anonymous access) enabled with alternate access mapping.</p>
<p>Right now in the Default zone I get results from the data in lists and they all point to the AllItems.aspx. If try search from the Internet zone I don't get any results from the lists and I am guessing that this is because of some security settings. But if make them to show how will I customize resulting link so that list items are shown with some publishing page.
For example if I keep news in the News list and when I do search I want to get result with link in following format </p>
<pre>http://somesite/Pages/News.aspx?itemId=12</pre>
<p>where the itemID is he id of the news item.</p>
<p>Can I customize link in the result ?</p>
http://stackoverflow.com/questions/634496/deploying-control-adapters-in-sharepoint0Deploying Control Adapters in SharePointRobert Vuković2009-03-11T13:25:49Z2009-03-12T17:42:41Z
<p>Is there any way to automatically deploy Control Adapters (some menu modifications) in SharePoint using WSP solution and features ? Can I programmatically edit/deploy some ".browser" file?</p>
<p>If it is not possible what are the alternatives (some good practice) ?</p>
<p>I need this for Publishing site.</p>
http://stackoverflow.com/questions/613517/moss-sharepoint-publishing-page-schedule-options-not-appearing/624331#6243310Answer by Robert Vuković for MOSS (SharePoint) publishing page schedule options not appearingRobert Vuković2009-03-08T21:31:20Z2009-03-08T21:31:20Z<p>Not sure if this can help but maybe can give you some direction to look. There are three BLANKINTERNET templates:</p>
<ol>
<li><p><strong>BLANKINTERNET#0</strong>
Publishing site - A site for publishing web pages on a schedule with workflow features enabled</p></li>
<li><p><strong>BLANKINTERNET#1</strong>
Press releases site</p></li>
<li><p><strong>BLANKINTERNET#2</strong>
Publishing site with workflow—A publishing site for web
pages using approval workflows</p></li>
</ol>
http://stackoverflow.com/questions/607497/sharepoint-2007-publishing-site-with-deep-menu-structure1SharePoint 2007 Publishing site with deep menu structureRobert Vuković2009-03-03T18:09:58Z2009-03-04T23:07:39Z
<p>I am a beginner in SharePoint and I need to create publishing site that will have multilevel menu. Requirement is that levels will not be fixed and that client should be able to add pages and customize menu.<br />
If I am not mistaken pages can be created only in the first level under the site. I don't see something like folders concept. For the navigation purposes I can add heading and it will be shown as another level. If I need more levels I need to create sub sites. </p>
<pre>
Site
Page1
Page2
Heading
Page3
</pre>
<p>Is this correct? </p>
<pre>
Site
Page1
Page2
Sublevel_1
Page1_1
Sublevel_2
Page2_1
Sublevel_3
Page3_1
...
</pre>
<p>Can I do something like this without creating SharePoint sub sites ?
If I don't need I will skip writing some custom menu control or write custom SiteMapProvider. I will than need to write UI for managing navigation also.</p>
<p><strong>EDIT:</strong><br />
I have managed to create Folder in Pages list and create (actually move) pages to that folder and even create sub folder but they are not showing on the menu not even in the navigation settings page. I can't approve folder, it is in pending status what ever I try.</p>
<p>I looks like this is not possible by the <a href="http://andrewconnell.com/blog/archive/2008/05/19/Subfolders-are-not-Supported-in-the-Pages-Library-in-MOSS.aspx" rel="nofollow">Andrew Connell: Subfolders are <em>not</em> Supported in the Pages Library in MOSS Publishing Sites</a></p>
http://stackoverflow.com/questions/585518/sharepoint-2007-publishing-site-development-and-deployment2SharePoint 2007 Publishing site development and deploymentRobert Vuković2009-02-25T10:41:48Z2009-02-25T18:25:08Z
<p>I am total beginner in SharePoint and I need some help in starting a project. I have to develop publishing site that will be delivered to the client. I would like to give client deployment experience like he would get when deploying standard ASP.NET application as much as possible. I plan to use Visual Studio 2008 with SharePoint extensions and maybe WSPBuilder or some other tools.
I also need help in structuring whole project.</p>
<p>Here is what I plan to do:<br />
1. Develop minimal site definition<br />
2. Create site from this defionition. How should I do this from code ? Use SharePoint Feature ? How should I activate it ?<br />
3. Develop all the needed infrastructure for the site (master page, layouts, content types, ...) as SharePoint Features.</p>
<p>Is this correct and how should I develop all those parts so I can make a some kind install script so can client create get complete site with one click ? </p>
http://stackoverflow.com/questions/446634/microsoft-enterprise-library-3-1-validation-message-from-resx/556046#5560461Answer by Robert Vuković for Microsoft Enterprise Library 3.1 - Validation - Message From resxRobert Vuković2009-02-17T09:09:52Z2009-02-17T09:09:52Z<p>You should use <strong>Message Template Tokens</strong>.<br />
Take a look at the following link:</p>
<ul>
<li><a href="http://www.pnpguidance.net/Post/ValidationApplicationBlockMessageTemplateTokensResourceFiles.aspx" rel="nofollow">Validation Application Block Message Template Tokens and Resource Files</a></li>
</ul>
<p>You will find more in Enterprise Library documentation.</p>
http://stackoverflow.com/questions/549524/asp-net-webforms-data-binding-solutions0ASP.NET WebForms Data Binding SolutionsRobert Vuković2009-02-14T18:37:02Z2009-02-16T22:04:42Z
<p>I am looking for some easy to use data binding to forms controls. Something that will handle formatting, validation and error handling, something that will handle filling controls from business object/DTOs and vice versa with minimal code. I did use google and have found these two links:</p>
<ul>
<li><a href="http://www.developerfusion.com/article/4659/implementing-twoway-data-binding-for-aspnet/" rel="nofollow">Implementing two-way Data Binding for ASP.NET</a> </li>
<li><a href="http://msdn.microsoft.com/en-us/library/aa478957.aspx" rel="nofollow">Using Reflection to Bind Business Objects to ASP.NET Form Controls</a></li>
</ul>
<p>I am curios if there is something newer and more complete.<br />
Are you using FormView or manualy fill controls and variables or something else?</p>
http://stackoverflow.com/questions/548314/create-an-asp-net-web-service-from-a-wsdl-file/549568#5495683Answer by Robert Vuković for Create an asp.net web service from a WSDL fileRobert Vuković2009-02-14T18:58:20Z2009-02-14T18:58:20Z<p>If you already created interfaces you need to implement those interfaces.<br />
Just create new web service and add interface that you generated so that it inherits that interface. Visual Studio can automatically generate stubs for every method in interface. Mark them with WebMethod attribute and put some code that will return some test data/results.</p>
<p>If you got inteface (with some more attributes that were automatically generated:</p>
<pre><code>
public interface IRealWebService
{
string GetName();
}
</code></pre>
<p>You should make new service:</p>
<pre><code>
public class WebTestService : System.Web.Services.WebService, IRealWebService
{
#region IRealWebService Members
[WebMethod]
public string GetName()
{
return "It Works !!!!";
}
#endregion
}
</code></pre>
http://stackoverflow.com/questions/514870/is-there-any-way-to-determine-how-many-characters-will-be-written-by-sprintf/514899#5148990Answer by Robert Vuković for Is there any way to determine how many characters will be written by sprintf?Robert Vuković2009-02-05T07:19:25Z2009-02-05T07:19:25Z<p>Take a look at <a href="http://69.10.233.10/KB/string/stdstring.aspx?display=Print" rel="nofollow">CodeProject: CString-clone Using Standard C++</a>. It uses solution you suggested with enlarging buffer size.</p>
<p><pre>
// -------------------------------------------------------------------------
// FUNCTION: FormatV
// void FormatV(PCSTR szFormat, va_list, argList);
//<br />
// DESCRIPTION:
// This function formats the string with sprintf style format-specs.
// It makes a general guess at required buffer size and then tries
// successively larger buffers until it finds one big enough or a
// threshold (MAX_FMT_TRIES) is exceeded.
//
// PARAMETERS:
// szFormat - a PCSTR holding the format of the output
// argList - a Microsoft specific va_list for variable argument lists
//
// RETURN VALUE:
// -------------------------------------------------------------------------</p>
<pre><code>void FormatV(const CT* szFormat, va_list argList)
{
#ifdef SS_ANSI
int nLen = sslen(szFormat) + STD_BUF_SIZE;
ssvsprintf(GetBuffer(nLen), nLen-1, szFormat, argList);
ReleaseBuffer();
#else
CT* pBuf = NULL;
int nChars = 1;
int nUsed = 0;
size_type nActual = 0;
int nTry = 0;
do
{
// Grow more than linearly (e.g. 512, 1536, 3072, etc)
nChars += ((nTry+1) * FMT_BLOCK_SIZE);
pBuf = reinterpret_cast<CT*>(_alloca(sizeof(CT)*nChars));
nUsed = ssnprintf(pBuf, nChars-1, szFormat, argList);
// Ensure proper NULL termination.
nActual = nUsed == -1 ? nChars-1 : SSMIN(nUsed, nChars-1);
pBuf[nActual+1]= '\0';
} while ( nUsed < 0 && nTry++ < MAX_FMT_TRIES );
// assign whatever we managed to format
this->assign(pBuf, nActual);
#endif
}
</code></pre>
<p></pre></p>
http://stackoverflow.com/questions/201355/how-can-i-stop-excel-2003-from-hanging-after-opening-a-spreadsheet-in-ie/497100#4971001Answer by Robert Vuković for How can I stop Excel 2003 from hanging after opening a spreadsheet in IE?Robert Vuković2009-01-30T20:22:41Z2009-01-30T20:22:41Z<p>Not sure if this helps but ...</p>
<p>I had some similar problem (generating CSV content on the fly) long time ago and all I can remember is that it had to do something with right Response methods being called. The code was something like this</p>
<pre><code>
Response.Clear();
Response.Buffer = true;
Response.AppendHeader("Content-Disposition", "attachment; filename=export.csv");
Response.Cache.SetCacheability(HttpCacheability.Private);
Response.Cache.SetExpires(DateTime.MinValue);
Response.Cache.SetLastModified(DateTime.Now);
Response.Cache.SetMaxAge(new TimeSpan(1));
Response.ContentType = "text/csv";
Response.ContentEncoding = System.Text.Encoding.Unicode;
...
//Some writing to the Response.OutputStream
...
Response.Flush();
//I am not sure about the following line:
Response.End();
</code></pre>
http://stackoverflow.com/questions/336009/where-is-the-handy-designer-for-setting-permissions-and-schema-diagram-designer-i/346865#3468650Answer by Robert Vuković for Where is the handy designer for setting Permissions and schema diagram designer in a SQL2005 Database Project in VSTS2008 Database Edition GDR RTM?Robert Vuković2008-12-06T22:04:26Z2009-01-13T12:17:52Z<p>I was looking for some graphic designers and was disappointed when I didn't find any.</p>
<p>As I use it, it is looking better and better. Instead of graphic designers I design tables in database using SQL Server Management Studio and than reverse all to the scripts. Than I can make changes to the scripts directly and deploy new database version or continue to make changes in the database directly. </p>
<p>Round trip development works great.</p>
http://stackoverflow.com/questions/424154/asp-net-membership-provider-with-confirmation-email4ASP.NET Membership Provider with Confirmation emailRobert Vuković2009-01-08T13:06:20Z2009-01-10T19:29:30Z
<p>Is there any framework/library for using ASP.NET Membership Provider with confirmation email, something ready to be used ? </p>
<p>Standard functionality used on almost all public web sites.</p>
http://stackoverflow.com/questions/424154/asp-net-membership-provider-with-confirmation-email/428291#4282914Answer by Robert Vuković for ASP.NET Membership Provider with Confirmation emailRobert Vuković2009-01-09T14:44:02Z2009-01-09T14:44:02Z<p>Found good example:</p>
<p><a href="http://aspnet.4guysfromrolla.com/articles/062508-1.aspx" rel="nofollow">4Guys from Rolla : Examining ASP.NET 2.0's Membership, Roles, and Profile</a> </p>
http://stackoverflow.com/questions/404717/is-refactoring-by-compilation-errors-bad/404725#4047251Answer by Robert Vuković for Is Refactoring by Compilation Errors Bad?Robert Vuković2009-01-01T08:35:25Z2009-01-01T08:35:25Z<p>I do usual refactorings but still do refactorings by introducing compiler errors. I do them usually when changes are not so simple and when this refactoring is not real refactoring (I am changing functionality). Those compiler errors are giving me spots that I need to take a look and make some more complicate change than name or parameter change.</p>
http://stackoverflow.com/questions/362764/vs2008-error-after-installing-tfs-powertools/366786#3667861Answer by Robert Vuković for VS2008 Error After installing TFS PowertoolsRobert Vuković2008-12-14T17:55:10Z2008-12-14T17:55:10Z<p>TFS Power tools installs something to be able to inform developers using MSN Messenger and this error is caused by MSN Messenger. Maybe this should help <a href="http://msn-errors.blogspot.com/2006/11/msn-messenger-errors-80040111-and.html" rel="nofollow">MSN Messenger Errors 80040111 and 80040154</a></p>
<blockquote>
<p>Fix 80040111 and 80040154 Error.</p>
<p>Cause: MSXML library may be corrupted and may have to be reinstalled</p>
<p>Troubleshooting steps:</p>
<p>Step 1. Re-register msxml3.dll</p>
<ul>
<li>Click on the Start menu, select Run and type the following:<br />
<strong>Regsvr32 %windir%\system32\msxml3.dll</strong></li>
</ul>
<p>Hopefully, you will see a window popup that says: <br />
<strong>DllRegisterServer succeeded in C:\Windows\System32\msxml3.dll is succeeded.</strong></p>
<p>Step 2. Restart your computer and sign into Messenger again</p>
</blockquote>
http://stackoverflow.com/questions/360569/how-do-i-change-the-file-naming-convention-for-scripted-objects-files-in-sql2005/362668#3626681Answer by Robert Vuković for How Do I Change the File Naming Convention for Scripted Objects Files in SQL2005?Robert Vuković2008-12-12T13:03:20Z2008-12-12T13:03:20Z<p>I don't know if customization like this is possible but what about using little <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">PowerShell</a> like this:</p>
<pre><code>
ls | % {rni -path $_.Name -new ($_.name.Split('.')[0] + "." + $_.name.Split('.')[2] + "." +$_.name.Split('.')[1] + "." +$_.name.Split('.')[3])}
</code></pre>
<p>Maybe someone can give even better snippet ?</p>
http://stackoverflow.com/questions/352130/sql-reporting-services-restrict-export-formats1SQL Reporting Services - Restrict Export FormatsRobert Vuković2008-12-09T08:38:45Z2008-12-09T10:07:29Z
<p>Is it possible to limit export formats only PDF and Excel ?</p>
http://stackoverflow.com/questions/135734/page-down-and-page-up-in-emacs1Page down and Page up in EmacsRobert Vuković2008-09-25T20:12:59Z2008-11-23T17:02:22Z
<p>I am trying to learn Emacs and trying to find best keyboard layout for me. One thing is really annoying me. I have added following lines to .emacs</p>
<pre><code>(global-set-key "\C-y" 'scroll-up)
(global-set-key "\M-y" 'scroll-down)
</code></pre>
<p>And it works but, if I hold Control and press ‘y’ few time it will scroll page down every time bat if I hold Windows key (mapped as Meta) and press ‘y’ few times it will scroll up only first time and for every successive key presses I will get character ‘y’ in the buffer. Can the page up behave like page down ? I want to hold Meta and keep pressing ‘y’ to scroll multiple pages up.</p>
<p>I am using GNU Emacs 23.0.60.1 (i386-mingw-nt5.1.2600) of 2008-05-12 on LENNART-69DE564 (patched). It is Emacs with EmacsW32 patch. Is this problem with this Emacs ? Problem with Meta key ?</p>
<p>I tried original GNU Emacs (not patched) and it works OK with Alt. But my problem is not that I want to scroll without releasing any key. I release key 'y' and press it multiple times but don't want to have to release Meta key. Same problem is described here:</p>
<p><a href="http://groups.google.com/group/gnu.emacs.help/browse_thread/thread/f30f4b75a8b75b10" rel="nofollow">http://groups.google.com/group/gnu.emacs.help/browse_thread/thread/f30f4b75a8b75b10</a></p>
<p>Problem is not in that I have changed key mapping. It looks like it is a bug in EmacsW32 version. Here is another description of the problem:
<a href="http://www.nabble.com/23.0.60--Unreleased-Meta-Win-modifier-td19213327.html" rel="nofollow">Unreleased Meta/Win modifier</a></p>
http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming/159201#159201Comment by Robert Vuković on Python Vs. Ruby for MetaprogrammingRobert Vuković2009-07-30T07:39:09Z2009-07-30T07:39:09ZI just read about OCaml and maybe it can not create stuff at runtime so I have removed it.http://stackoverflow.com/questions/757381/how-to-use-bdd-naming-style-with-resharper-4-5/790335#790335Comment by Robert Vuković on How to use bdd naming style with Resharper 4.5?Robert Vuković2009-06-15T10:11:15Z2009-06-15T10:11:15ZYou are right. I don't use underscores for regular methods so I didn't noticed this.http://stackoverflow.com/questions/424154/asp-net-membership-provider-with-confirmation-emailComment by Robert Vuković on ASP.NET Membership Provider with Confirmation emailRobert Vuković2009-05-20T06:48:44Z2009-05-20T06:48:44ZLook at the accepted answer. It is mine. :)
This was the most simplest and good explained solution.http://stackoverflow.com/questions/727271/deploying-layouts-in-sharepoint/744400#744400Comment by Robert Vuković on Deploying Layouts in SharePointRobert Vuković2009-04-13T19:04:47Z2009-04-13T19:04:47ZSPWeb.RevertAllDocumentContentStreams() helped, but I have to do iisreset BEFORE deployment. Without iisreset there is no change.http://stackoverflow.com/questions/727271/deploying-layouts-in-sharepoint/740430#740430Comment by Robert Vuković on Deploying Layouts in SharePointRobert Vuković2009-04-13T12:55:42Z2009-04-13T12:55:42ZIt looks like I have to do IISRESET before deployment. then it works.http://stackoverflow.com/questions/727271/deploying-layouts-in-sharepoint/740430#740430Comment by Robert Vuković on Deploying Layouts in SharePointRobert Vuković2009-04-13T12:21:16Z2009-04-13T12:21:16ZActually it kinda works but not deterministic. It layout updates on a page after some trial end error deployment problems. Just to make it work on the first deployment.http://stackoverflow.com/questions/727271/deploying-layouts-in-sharepoint/738724#738724Comment by Robert Vuković on Deploying Layouts in SharePointRobert Vuković2009-04-11T15:31:15Z2009-04-11T15:31:15ZI am not using Site Definitons or Site Templates. I am deploying layouts using features.http://stackoverflow.com/questions/727271/deploying-layouts-in-sharepoint/729271#729271Comment by Robert Vuković on Deploying Layouts in SharePointRobert Vuković2009-04-09T07:00:09Z2009-04-09T07:00:09ZI am doing development from VS using VSeWSS. I have tried lots of things with no result. http://stackoverflow.com/questions/704859/sharepoint-2007-banner-hit-counter/706795#706795Comment by Robert Vuković on SharePoint 2007 Banner Hit CounterRobert Vuković2009-04-02T10:34:53Z2009-04-02T10:34:53ZI don't see that number of views on your site is updating. Should I worry about simultaneous list access ? I planed to have only one list item for every banner and than just increment counter. http://stackoverflow.com/questions/665779/fba-roles-with-sharepoint-user-groups/665993#665993Comment by Robert Vuković on Fba roles with SharePoint user groupsRobert Vuković2009-03-20T15:11:54Z2009-03-20T15:11:54ZThanks for answering but SPContext.Current.Web.CurrentUser.Roles thows exeption. One more not I am doing all this on the login page in the OnLoggedIn event.http://stackoverflow.com/questions/624296/how-to-deploy-sharepoint-publishing-site-with-multiple-sites/664778#664778Comment by Robert Vuković on How to deploy Sharepoint publishing site with multiple sitesRobert Vuković2009-03-20T08:01:10Z2009-03-20T08:01:10ZI skipped creating site definition and will make all customization with features. Right now we use console app to creates site from custom XML as Thomas suggested. http://stackoverflow.com/questions/634496/deploying-control-adapters-in-sharepoint/639712#639712Comment by Robert Vuković on Deploying Control Adapters in SharePointRobert Vuković2009-03-16T07:28:58Z2009-03-16T07:28:58ZThis is publishing site and will have to deploy to two virtual folders (FBA) :(. But maybe I could manage it also.http://stackoverflow.com/questions/634496/deploying-control-adapters-in-sharepoint/639712#639712Comment by Robert Vuković on Deploying Control Adapters in SharePointRobert Vuković2009-03-12T17:52:26Z2009-03-12T17:52:26ZYou think that I should, inside Feature, write bare .NET code and put file in the physical folder ? Maybe it is worth a try if I can get full path within the Feature.http://stackoverflow.com/questions/624296/how-to-deploy-sharepoint-publishing-site-with-multiple-sites/624455#624455Comment by Robert Vuković on How to deploy Sharepoint publishing site with multiple sitesRobert Vuković2009-03-08T22:47:48Z2009-03-08T22:47:48Z:) I have already made some console application that generates site structure from XML. If you made feature in WSP where do you put xml and how do you access it? You deploy xml file too? Where?http://stackoverflow.com/questions/607497/sharepoint-2007-publishing-site-with-deep-menu-structure/607510#607510Comment by Robert Vuković on SharePoint 2007 Publishing site with deep menu structureRobert Vuković2009-03-03T18:34:44Z2009-03-03T18:34:44ZAs I said I am beginner, can you provide me some link or some more info ? Thanks for answer, I will surely investigate this.