User vitule - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T12:01:58Zhttp://stackoverflow.com/feeds/user/1287http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/63774/is-it-a-problem-for-your-boss-when-you-study-at-work5Is it a problem (for your boss) when you study at work?vitule2008-09-15T15:10:35Z2009-10-05T02:10:20Z
<p>Almost every day at work for about an hour, I make it a point to stop working on the current project and study something to become a better developer. Read some blogs, or a chapter from a book.<br />
My previous boss didn't have a problem with it (because he was doing the same) but my current boss doesn't like it. I feel it makes me more productive in the long run so I haven't stopped; I got better at hiding it and when I'm "caught", I lie that I'm finding a solution to a roadblock I hit.<br />
I started feeling guilty about this over time and decided to find a new job. </p>
<p>Now, in your experience, do I have a decent chance of finding working environment where studying is encouraged or are most bosses like my current one?<br />
Is there a good way to address this during a job interview?</p>
http://stackoverflow.com/questions/205736/oracle-get-list-of-all-tables2Oracle: get list of all tables?vitule2008-10-15T17:54:49Z2009-09-09T02:36:51Z
<p>How do I query an Oracle database to display the names of all tables in it?</p>
http://stackoverflow.com/questions/582288/how-do-i-place-a-hyperlink-on-every-page-of-a-ssrs-2005-report0How do I place a hyperlink on every page of a SSRS 2005 report?vitule2009-02-24T15:52:15Z2009-08-03T04:18:12Z
<p>I am building a SSRS 2005 report that has potentially multiple pages. I would like to put in a hyperlink so that it appears on the top of every page. The hyperlink links back to the same report - basically I have a "summary" and "detail" mode and want to have hyperlinks to switch between.<br />
So far I tried two approaches: </p>
<ul>
<li>Put a textbox in the body, and in Properties -> Navigation, jump to a report. This works fine except it only shows on the very first page.</li>
<li>Drag the same textbox in the header of the report. Now it appears on every page, but clicking on it results in an error message: "The source of the report definition has not been specified".</li>
</ul>
<p>google turned up nothing, what now?<br />
Thanks.</p>
http://stackoverflow.com/questions/260048/sharepoint-can-i-see-the-content-of-a-document-in-the-itemadding-event-handler0SharePoint: Can I see the content of a document in the ItemAdding() event handler?vitule2008-11-03T21:35:32Z2009-06-26T14:26:04Z
<p>I'd like to inspect the content of a file before it is uploaded to the SharePoint doc library.<br />
I hooked up a handler to the <code>ItemAdding()</code> event but don't know how to get the content of the file.<br />
Note: I know that in the <code>ItemAdded()</code> I can use <code>properties.ListItem.File</code> but that's too late. </p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/309188/sharepoint-what-is-the-max-size-of-the-multi-line-text-field-can-i-set-it0SharePoint: What is the max size of the multi line text field? Can I set it?vitule2008-11-21T15:53:37Z2009-06-22T09:24:53Z
<p>What is the max size of the multi line text field? Can I set it?</p>
http://stackoverflow.com/questions/406954/what-is-a-good-name-for-a-configuration-value-that-holds-that-name-of-a-table-or0What is a good name for a configuration value that holds that name of a table or view?vitule2009-01-02T14:45:14Z2009-06-20T16:39:40Z
<p>Is there a database term for "table or view"?<br />
In my app, the table name I'm pulling data from is configurable using the configuration setting <code>UserTableName</code>
Now the DBA went and renamed the table but created a view using the original name.<br />
So nothing changed on my side but now I feel that <code>UserTableName</code> is misleading and I would like to change it to User*Whatever*Name where <em>Whatever</em> is a term for a table or view.<br />
Is there such a thing or am I just being an idiot? </p>
http://stackoverflow.com/questions/301999/sharepoint-programmatically-move-documents-between-document-libraries1SharePoint: programmatically move documents between document libraries vitule2008-11-19T14:19:53Z2009-04-11T05:31:03Z
<p>What's the best way to move a document from one doc library to another? I don't care about version history or preserving CreatedBy and ModifiedBy metadata...</p>
<pre><code>SPList lib1 = (SPDocumentLibrary) web.Lists["lib1"];
SPList lib2 = (SPDocumentLibrary) web.Lists["lib2"];
SPItem item1 = lib1.Items[0];
//insert code to move item1 to lib2
</code></pre>
<p>I'm currently looking at <code>SPItem.MoveTo()</code> but wonder if anyone already solved this problem and has some advice.<br />
Thanks in advance.</p>
http://stackoverflow.com/questions/658611/autofilter-combo-box-for-asp-net-form1Autofilter Combo Box for ASP.Net formvitule2009-03-18T14:56:03Z2009-03-18T19:52:42Z
<p>I need a control similar to the <code>SharePoint:LookupField</code>, but bindable to any data source.
(i.e. dropdown box that allows typing and filters the items based on what is typed so far)
Preferably, same look and feel as the <code>LookupField</code>.<br />
Any recommendations?<br />
Thanks.</p>
http://stackoverflow.com/questions/657241/sharepoint-listitem-error-value-does-not-fall-within-the-expected-range/658648#6586481Answer by vitule for SharePoint ListItem Error: "Value does not fall within the expected range"vitule2009-03-18T15:04:38Z2009-03-18T15:04:38Z<p>The "Title" field may exist in the list but not in the default view.
Can you do this?</p>
<pre><code>foreach (var item in list.Items) Console.WriteLine((string)item["Title"]);
</code></pre>
http://stackoverflow.com/questions/74460/resume-parsing-library-for-a-net-project2Résumé parsing library for a .Net projectvitule2008-09-16T16:52:15Z2009-02-25T07:12:22Z
<p>I need to extract information from hundreds of résumés. The ideal would be .doc, .docx, .pdf, .rtf --> hr-xml but since more than 90% of the résumés are .doc, the other formats are not a must have. </p>
<p>I'm looking to buy a third-party tool or a component.</p>
<p>Do you have any good/bad experience solving a similar problem?</p>
<p><strong>Clarification</strong>: I'm not looking to use MS Indexing Services or Lucene or any other search indexing engine. It's not that straightforward. The biggest challenge is that the layout/format of the résumés is not the same, so simple indexing won't do.</p>
http://stackoverflow.com/questions/467136/cannot-set-a-breakpoint-in-aspx-page-running-under-wss1Cannot set a breakpoint in aspx page running under WSSvitule2009-01-21T21:38:51Z2009-01-29T16:46:56Z
<p>In my SharePoint app, I deploy some aspx pages to the <code>[12 Hive]\TEMPLATE\LAYOUTS</code> folder.<br />
The pages are compiled in a debug mode, I'm copying both .apsx and .cs files.<br />
I used to be able to attach to w3wp.exe and set a breakpoint inside the .cs files and hit them just fine. Not today. I'm getting the dreaded "The breakpoint will not currently be hit. No symbols have been loaded for this document" message.<br />
I'm sure there's only one w3wp running.<br />
I can deploy a change to the code (so I know it's the correct location). </p>
<p>What's my next step?<br />
Thanks.</p>
<p><em>update</em>: I figured it out. Dont' know what did "debug=false" in <code>C:\Inetpub\wwwroot\wss\VirtualDirectories\80\web.config</code> but it's working now.</p>
http://stackoverflow.com/questions/439265/how-do-i-add-an-empty-first-entry-do-an-aspdropdownlist6How do I add an empty first entry do an <asp:DropDownList>?vitule2009-01-13T15:06:39Z2009-01-16T18:21:06Z
<p>I have a dropdown, I have a datasource, I have <code>AutoPostBack</code> set to <code>true</code>.<br />
I want to add a first entry to the datasource that says something like "--- select country ---" and selecting this entry won't cause postback.<br />
This feels like it should be easy to do, yet I can't seem to be able to find a good solution.<br />
Thanks.</p>
http://stackoverflow.com/questions/290322/sharepoint-make-a-list-field-hidden-programmatically2SharePoint: Make a list field hidden programmaticallyvitule2008-11-14T14:58:29Z2009-01-04T08:25:05Z
<p>I'm trying to hide the "Title" field in a list.
This doesn't seem to work:</p>
<pre><code>SPList myList;
...
SPField titleField = myList.Fields.GetField("Title");
//titleField.PushChangesToLists = true; <-- doesn't seem to make a difference
titleField.ShowInEditForm = false;
titleField.ShowInDisplayForm = false;
titleField.ShowInNewForm = false;
titleField.Update();
//myList.Update(); <-- make no difference
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/370909#3709090Answer by vitule for What are your favorite Vim tricks?vitule2008-12-16T10:22:24Z2008-12-16T10:22:24Z<pre><code>Ctrl+w Ctrl+]
</code></pre>
<p>splits current window to open the definition of the tag below the cursor</p>
http://stackoverflow.com/questions/314467/sharepoint-and-thread-safety/314576#3145762Answer by vitule for SharePoint and thread safety vitule2008-11-24T15:59:42Z2008-11-24T15:59:42Z<p>There is one issue that I often run into: when writing your own list item receivers, you need to be aware of the fact that some of the events fire asynchronously, e.g. <code>ItemAdded()</code> which means <em>your code</em> could be running in multiple threads at the same time.</p>
http://stackoverflow.com/questions/301999/sharepoint-programmatically-move-documents-between-document-libraries/302117#3021170Answer by vitule for SharePoint: programmatically move documents between document libraries vitule2008-11-19T14:57:26Z2008-11-19T14:57:26Z<p>Got it:</p>
<pre><code>SPList lib1 = (SPDocumentLibrary) web.Lists["lib1"];
SPList lib2 = (SPDocumentLibrary) web.Lists["lib2"];
SPListItem item1 = lib1.Items[0];
byte[] fileBytes = item1.File.OpenBinary();
string destUrl = lib2.RootFolder.Url + "/" + item1.File.Name;
SPFile destFile = lib2.RootFolder.Files.Add(destUrl, fileBytes, true /*overwrite*/);
</code></pre>
http://stackoverflow.com/questions/40322/i-cant-see-report-builder-button-in-the-report-manager-on-sql-server-20051I can't see "Report Builder" button in the Report Manager on SQL Server 2005vitule2008-09-02T19:06:09Z2008-11-19T07:44:38Z
<p>I am a member of all the roles (Browser, Content Manager, My Reports, Publisher, Report Builder). If I login with a Local Administrator account, I can see and use it fine. Any ideas?</p>
http://stackoverflow.com/questions/272468/duplicate-a-list/272898#2728985Answer by vitule for Duplicate a listvitule2008-11-07T17:38:32Z2008-11-07T17:38:32Z<p>Judging from the SharePoint tag, I'm assuming you meant to ask "How do I copy a SharePoint list (SPList) programmatically?"<br />
Without testing it (or even trying to compile it), I would do something like:</p>
<pre><code>SPWeb web; /* add code to initialize to current web */
SPList sourceList = web.Lists["nameOfSourceList"];
sourceList.SaveAsTemplate("templateFNM.stp", "tempList", "tempListDescription",
true /* include list content */);
SPListTemplate template = web.ListTemplates["tempList"];
web.Lists.Add("newListName", "newListDescription", template);
web.Update();
SPList newList = web.Lists["newListName"];
</code></pre>
<p>Also, <a href="http://www.sharepointblogs.com/sajana/archive/2008/07/06/saving-a-custon-list-template-and-uploading-it-to-another-site-programmatically.aspx" rel="nofollow">here's</a> a link to a blog post that achieves the same accross web applications. </p>
<p>And finally a word of advice: you'll get better search results if you use "programmatically" instead of "code wise".</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/250992/sharepoint-should-i-use-lists-or-a-database6SharePoint: should I use lists or a database?vitule2008-10-30T17:16:12Z2008-11-01T19:36:39Z
<p>I am in a process of designing a custom SharePoint application. On a previous project, all the data was kept in SharePoint lists and that's the way I've been trying now. But, I'm getting to the point where the data model grows and I feel a need to normalize it and split one logical entity into several physical lists. I'm wondering if I should switch from the SP lists to a classic database. On one hand, I am happy with the SharePoint out-of-box New Item, Edit Item, All Items forms; on the other hand I'm worried that the performance will suffer once I have to query joined data (if it stays in <code>SPList</code>s).<br />
If you have any insight or experience with this problem, please share. Thanks.</p>
http://stackoverflow.com/questions/205736/oracle-get-list-of-all-tables/205811#2058111Answer by vitule for Oracle: get list of all tables?vitule2008-10-15T18:12:19Z2008-10-15T18:12:19Z<p>Querying <code>user_tables</code> and <code>dba_tables</code> didn't work.<br />
This one did: </p>
<pre><code>select table_name from all_tables
</code></pre>
http://stackoverflow.com/questions/103402/how-can-you-have-sharepoint-link-lists-default-to-opening-in-a-new-window/103541#1035412Answer by vitule for How can you have SharePoint Link Lists default to opening in a new window?vitule2008-09-19T16:38:59Z2008-09-19T16:38:59Z<p>You can edit the page in SharePoint designer, convert the List View web part to an XSLT Data View. (by right click + "Convert to XSLT Data View").<br />
Then you can edit the XSLT - find the <code>A</code> tag and add an attribute <code>target="_blank"</code></p>
http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/95883#958836Answer by vitule for What are your favorite Vim tricks?vitule2008-09-18T19:14:38Z2008-09-18T19:14:38Z<p><strong>Ctrl+]</strong><br />
equivalent to Right click + "Go to Definition" in Visual Studio<br />
(one must first create the tags file using e.g. <strong>ctags</strong>)</p>
http://stackoverflow.com/questions/23288/free-asp-net-and-or-css-themes6Free ASP.Net and/or CSS Themesvitule2008-08-22T19:36:06Z2008-09-02T19:18:18Z
<p>Where can I get some decent looking free ASP.Net or CSS themes?</p>
http://stackoverflow.com/questions/40264/how-many-constructor-arguments-is-too-many/40300#403001Answer by vitule for How many constructor arguments is too many?vitule2008-09-02T18:55:35Z2008-09-02T18:55:35Z<p>I think your question is more about the design of your classes than about the number of arguments in the constructor. If I needed 20 pieces of data (arguments) to successfully initialize an object, I would probably consider breaking up the class.</p>
http://stackoverflow.com/questions/40230/guids-as-primary-keys-offline-oltp/40279#402790Answer by vitule for GUIDs as Primary Keys - Offline OLTPvitule2008-09-02T18:48:23Z2008-09-02T18:48:23Z<p>Using GUIDs saved us a lot of work when we had to merge two databases into one.</p>
http://stackoverflow.com/questions/11720/how-can-i-create-virtual-machines-as-part-of-a-build-process-using-msbuild-and-ms/24369#243692Answer by vitule for How can I create virtual machines as part of a build process using MSBuild and MS Virtual Server and/or Hyper-V Server Virtualization?vitule2008-08-23T16:50:42Z2008-08-23T16:50:42Z<p>Checkout <a href="http://www.codeplex.com/PSHyperv" rel="nofollow">Powershell Management library for Hyper-V on CodePlex</a>. Some features:</p>
<blockquote>
<p>Finding a VM<br />
Connecting to a VM<br />
Discovering and manipulating Machine states<br />
Backing up, exporting and snapshotting VMs<br />
Adding and removing VMs, configuring motherboard settings.<br />
Manipulating Disk controllers, drives and disk images<br />
Manipluating Network Interface Cards<br />
Working with VHD files </p>
</blockquote>
http://stackoverflow.com/questions/22354/sharepoint-comexception-0x81020037/22703#227031Answer by vitule for Sharepoint COMException 0x81020037vitule2008-08-22T15:48:33Z2008-08-22T15:48:33Z<p>Sometimes I see the <code>ItemAdded</code> or <code>ItemUpdated</code> firing twice for a single operation.
You can try to put a breakpoint in the <code>ItemAdded()</code> method to confirm that.</p>
<p>The solution in my case was to single thread the <code>ItemAdded()</code> method:</p>
<pre><code>private static object myLock = new object();
public override void ItemAdded(SPItemEventProperties properties) {
if (System.Threading.Monitor.TryEnter(myLock, TimeSpan.FromSeconds(30))
{
//do your stuff here.
System.Threading.Monitor.Exit(myLock);
}
}
</code></pre>
http://stackoverflow.com/questions/22165/transactional-design-pattern/22220#222202Answer by vitule for Transactional Design Patternvitule2008-08-22T12:40:18Z2008-08-22T12:40:18Z<p>If your changes are done to the SharePoint object model, you can use the fact that changes are not committed until you call the <code>Update()</code> method of the modified object, such as <code>SPList.Update()</code> or <code>SPWeb.Update()</code>.</p>
<p>Otherwise, I would use the <em>Command</em> Design Pattern. Chapter 6 in <a href="http://rads.stackoverflow.com/amzn/click/0596007124" rel="nofollow">Head First Design Patterns</a> even has an example that implements the undo functionality.</p>
http://stackoverflow.com/questions/1170655/change-document-library-type-after-it-has-been-created-from-list-definition/1170723#1170723Comment by vitule on Change document library "Type" after it has been created from list definitionvitule2009-11-06T15:15:37Z2009-11-06T15:15:37Zbad idea. maybe it helped you this time but you might get burned in the future.http://stackoverflow.com/questions/254887/how-to-efficiently-delete-all-files-in-a-document-library/255897#255897Comment by vitule on How to efficiently delete all files in a document library?vitule2009-09-01T17:33:50Z2009-09-01T17:33:50ZThe ProcessBatchData() approach is faster by several orders of magnitute.http://stackoverflow.com/questions/254887/how-to-efficiently-delete-all-files-in-a-document-library/254918#254918Comment by vitule on How to efficiently delete all files in a document library?vitule2009-09-01T17:33:16Z2009-09-01T17:33:16Ztoo slow. Use ProcessBatchData()http://stackoverflow.com/questions/47833/in-c-what-is-the-best-way-to-test-if-a-dataset-is-empty/47839#47839Comment by vitule on In C#, what is the best way to test if a dataset is empty?vitule2009-08-27T13:48:07Z2009-08-27T13:48:07Zit seems that the author defines "empty dataset" as dataset with no tables or with any number of empty tables.http://stackoverflow.com/questions/183950/add-scriptmanager-to-page-programmatically/184262#184262Comment by vitule on Add ScriptManager to Page Programmatically?vitule2009-07-21T13:04:25Z2009-07-21T13:04:25ZI wonder if this can lead to having more than one ScriptManager on the page...http://stackoverflow.com/questions/309517/when-to-drink-when-listening-to-stack-overflow/564393#564393Comment by vitule on When to drink when listening to Stack Overflow?vitule2009-04-02T13:35:28Z2009-04-02T13:35:28Zgood one! you can already tell the next sentence will be about PHP or someone caring about the quality of their code...http://stackoverflow.com/questions/205736/oracle-get-list-of-all-tables/637184#637184Comment by vitule on Oracle: get list of all tables?vitule2009-03-13T17:08:41Z2009-03-13T17:08:41Zmy recommendation is to start a new question for this. good luck.http://stackoverflow.com/questions/309517/when-to-drink-when-listening-to-stack-overflow/563792#563792Comment by vitule on When to drink when listening to Stack Overflow?vitule2009-02-25T18:16:42Z2009-02-25T18:16:42Zi have the same problem with "virtually".http://stackoverflow.com/questions/74460/resume-parsing-library-for-a-net-project/374755#374755Comment by vitule on Résumé parsing library for a .Net projectvitule2009-01-16T18:26:17Z2009-01-16T18:26:17ZSad but true. We tried a couple of third party tools but with the success rate below 60%, we ended up hiring an intern for couple of weeks and let her be our parser... http://stackoverflow.com/questions/439265/how-do-i-add-an-empty-first-entry-do-an-aspdropdownlist/439280#439280Comment by vitule on How do I add an empty first entry do an <asp:DropDownList>?vitule2009-01-13T17:40:23Z2009-01-13T17:40:23ZSo I took back the acceptance of this answer. The RequiredFieldValidator displays the error text when I select the "-- select country --" item but causes a postback anyway.http://stackoverflow.com/questions/439265/how-do-i-add-an-empty-first-entry-do-an-aspdropdownlist/439295#439295Comment by vitule on How do I add an empty first entry do an <asp:DropDownList>?vitule2009-01-13T15:23:14Z2009-01-13T15:23:14Zthanks. But I feel like this should work out-of-box. With AutoPostBack on, there is no way to select the first entry. So you must insert one that does nothing.http://stackoverflow.com/questions/406954/what-is-a-good-name-for-a-configuration-value-that-holds-that-name-of-a-table-or/406969#406969Comment by vitule on What is a good name for a configuration value that holds that name of a table or view?vitule2009-01-02T14:59:14Z2009-01-02T14:59:14ZYou're right, I don't care -- that's why I realized that naming the configuration field "UserTableName" is not abstract enough. Thanks for your answer.http://stackoverflow.com/questions/406954/what-is-a-good-name-for-a-configuration-value-that-holds-that-name-of-a-table-or/406961#406961Comment by vitule on What is a good name for a configuration value that holds that name of a table or view?vitule2009-01-02T14:51:07Z2009-01-02T14:51:07Zthanks, but that won't work - UserDataSource is already a name of my class.http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/380934#380934Comment by vitule on Common programming mistakes for .NET developers to avoid?vitule2008-12-19T15:54:08Z2008-12-19T15:54:08Zyep, use System.Threading.Monitor.TryEnter() and System.Threading.Monitor.Exit() instead.http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/140418#140418Comment by vitule on What Easter Eggs have you placed in code?vitule2008-12-18T17:25:10Z2008-12-18T17:25:10ZHasselhoff in bikini underwear... well, I tried to click the 'offensive' button but clicked outside of it. Fortunately, this application (stackoverflow) didn't visually rape me for that...