User Vincent Van Den Berghe - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T20:36:05Zhttp://stackoverflow.com/feeds/user/39259http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1219628/generics-reflection/1219639#12196392Answer by Vincent Van Den Berghe for Generics ReflectionVincent Van Den Berghe2009-08-02T19:37:01Z2009-08-02T19:37:01Z<p>You could limit T to an interface, and use that interface in the iteration.</p>
http://stackoverflow.com/questions/785673/c-and-excel-interop-issue-saving-the-excel-file-not-smooth/785739#7857390Answer by Vincent Van Den Berghe for C# and Excel Interop issue, Saving the excel file not smoothVincent Van Den Berghe2009-04-24T13:02:03Z2009-04-24T13:02:03Z<p><code>ExcelApp.Interactive = false</code> suppresses any dialog box.</p>
<p><code>excelApp.ActiveWorkbook.SaveAs(exportDirectory)</code></p>
http://stackoverflow.com/questions/367444/read-only-propertygrid/610119#6101190Answer by Vincent Van Den Berghe for Read-only PropertyGridVincent Van Den Berghe2009-03-04T11:05:38Z2009-03-04T11:05:38Z<p>The <code>ReadOnly</code> attribute is set on the class definition, not on an instance of an object. Hence this will have an impact on all instances of that class.</p>
<p>To achieve what you want, create a custom <code>PropertyDescriptor</code> in which you override the <code>IsReadOnly</code> property, and apply this to the properties of your object instance.</p>
http://stackoverflow.com/questions/371728/how-can-i-permanently-prevent-excel-from-setting-all-new-documents-to-r1c1-mode/371812#3718120Answer by Vincent Van Den Berghe for How can I permanently prevent Excel from setting all new documents to R1C1 mode?Vincent Van Den Berghe2008-12-16T16:21:56Z2008-12-16T16:21:56Z<p>As In.Spite mentioned, it's probably a default template issue. If you overwrite the default with one that has the <code>R1C1 reference</code> box unchecked, it should remember the setting.</p>
<p>Here's as KB describing where you can find the default template:
<a href="http://support.microsoft.com/kb/924460" rel="nofollow">http://support.microsoft.com/kb/924460</a></p>
<p>Locate the template, open it, untick the `R1C1 reference box, and overwrite the old template.</p>
http://stackoverflow.com/questions/371571/dos-delete-is-deleting-the-whole-directory-instead-of-individual-files/371582#37158214Answer by Vincent Van Den Berghe for dos : delete is deleting the whole directory instead of individual filesVincent Van Den Berghe2008-12-16T15:00:52Z2008-12-16T15:00:52Z<p>Put filenames between double quotes... (e.g. "D:\My Program\test.exe")</p>
http://stackoverflow.com/questions/356371/excel-interop-efficiency-and-performance4Excel Interop - Efficiency and performanceVincent Van Den Berghe2008-12-10T15:03:46Z2008-12-15T18:31:10Z
<p>I was wondering what I could do to improve the performance of Excel automation, as it can be quite slow if you have a lot going on in the worksheet...</p>
<p>Here's a few I found myself:</p>
<ul>
<li><p><code>ExcelApp.ScreenUpdating = false</code> -- turn of the redrawing of the screen</p></li>
<li><p><code>ExcelApp.Calculation = Excel.XlCalculation.xlCalculationManual</code> -- turning of the calculation engine so Excel doesn't autotomatically recalculates when a cell value changes (turn it back on after you're done)</p></li>
<li><p>Reduce calls to <code>Worksheet.Cells.Item(row, col)</code> and <code>Worksheet.Range</code> -- I had to poll hundreds of cells to find the cell I needed. Implementing some caching of cell locations, reduced the execution time from ~40 to ~5 seconds.</p></li>
</ul>
<p>What kind of interop calls take a heavy toll on performance and should be avoided? What else can you do to avoid unnecessary processing being done?</p>
http://stackoverflow.com/questions/359229/snap-to-grid-mouse-locking-up/359262#3592622Answer by Vincent Van Den Berghe for Snap to grid mouse locking upVincent Van Den Berghe2008-12-11T13:00:23Z2008-12-11T13:00:23Z<p>Your mouse keeps snapping to the same point if you try to move it -- because it's still closest to that point... If you move the mouse left, move the cursor to the point to the left of the current one instead of recalculating at the current. Apply for the 3 other directions... </p>
<p>I wouldn't recommend this behaviour though, it will cause a lot of irritation. Snap your controls to the grid, not the mouse. </p>
http://stackoverflow.com/questions/359220/is-there-a-non-scripting-language-for-linux-apache/359238#3592380Answer by Vincent Van Den Berghe for Is there a non-scripting language for Linux/Apache?Vincent Van Den Berghe2008-12-11T12:52:03Z2008-12-11T12:52:03Z<p>What do you mean with non-scripted?
You can run ASP.NET on Linux with <a href="http://www.go-mono.com/" rel="nofollow">MONO</a>... <a href="https://java.sun.com/products/jsp/" rel="nofollow">JSP</a> will run on Linux too.</p>
http://stackoverflow.com/questions/356464/localization-of-displaynameattribute/356527#3565270Answer by Vincent Van Den Berghe for Localization of DisplayNameAttributeVincent Van Den Berghe2008-12-10T15:47:06Z2008-12-10T15:47:06Z<p>I apologize for the VB.NET code, my C# is a bit rusty... But you'll get the idea, right?</p>
<p>First of all, create a new class: <code>LocalizedPropertyDescriptor</code>, which inherits <code>PropertyDescriptor</code>. Override the <code>DisplayName</code> property like this:</p>
<pre><code>Public Overrides ReadOnly Property DisplayName() As String
Get
Dim BaseValue As String = MyBase.DisplayName
Dim Translated As String = Some.ResourceManager.GetString(BaseValue)
If String.IsNullOrEmpty(Translated) Then
Return MyBase.DisplayName
Else
Return Translated
End If
End Get
End Property
</code></pre>
<p><code>Some.ResourceManager</code> is the ResourceManager of the resource file that contains your translations.</p>
<p>Next, implement <code>ICustomTypeDescriptor</code> in the class with the localized properties, and override the <code>GetProperties</code> method:</p>
<pre><code>Public Function GetProperties() As PropertyDescriptorCollection Implements System.ComponentModel.ICustomTypeDescriptor.GetProperties
Dim baseProps As PropertyDescriptorCollection = TypeDescriptor.GetProperties(Me, True)
Dim LocalizedProps As PropertyDescriptorCollection = New PropertyDescriptorCollection(Nothing)
Dim oProp As PropertyDescriptor
For Each oProp In baseProps
LocalizedProps.Add(New LocalizedPropertyDescriptor(oProp))
Next
Return LocalizedProps
End Function
</code></pre>
<p>You can now use the 'DisplayName` attribute to store a reference to a value in a resource file...</p>
<pre><code><DisplayName("prop_description")> _
Public Property Description() As String
</code></pre>
<p><code>prop_description</code> is the key in the resource file.</p>
http://stackoverflow.com/questions/349418/what-would-be-a-good-second-language-to-learn-for-a-c-programmer/349439#3494391Answer by Vincent Van Den Berghe for What would be a good second language to learn (for a C# programmer)Vincent Van Den Berghe2008-12-08T12:54:54Z2008-12-08T12:54:54Z<p>Scripting languages like Ruby or Python. Why? They allow you to quickly write scripts to automate certain tasks, unit tests, ...</p>
http://stackoverflow.com/questions/349251/how-do-i-find-out-how-many-files-are-in-a-directory/349415#3494152Answer by Vincent Van Den Berghe for How do I find out how many files are in a directory?Vincent Van Den Berghe2008-12-08T12:46:54Z2008-12-08T12:46:54Z<p>There is no faster way. No matter what you use, it all boils down to <code>FindFirstFile</code> and <code>FindNextFile</code> Win32 calls.<br />
You could try using something like <a href="http://www.codeproject.com/KB/files/FileSystemEnumerator.aspx" rel="nofollow">this</a>, but it will probably take just as much time -- but maybe with a little less memory usage (= probably not worth it).</p>
http://stackoverflow.com/questions/344203/maximum-number-of-threads-per-process-in-linux/344264#3442643Answer by Vincent Van Den Berghe for Maximum number of threads per process in Linux?Vincent Van Den Berghe2008-12-05T15:50:00Z2008-12-05T16:30:38Z<p>To retrieve it:</p>
<pre><code>cat /proc/sys/kernel/threads-max
</code></pre>
<p>To set it:</p>
<pre><code>echo 123456789 > /proc/sys/kernel/threads-max
</code></pre>
<p>123456789 = # of threads</p>
http://stackoverflow.com/questions/343921/ms-dos-edit-a-file/343942#3439420Answer by Vincent Van Den Berghe for MS DOS edit a fileVincent Van Den Berghe2008-12-05T14:14:30Z2008-12-05T14:14:30Z<p>First of all, using a batch file to achieve this, is messy (IMHO). You will have to use an external tool anyway to do the string replacement. I'd use some scripting language instead.</p>
<p>If you really want to use a batch, <a href="http://stackoverflow.com/questions/130116/dos-batch-commands-to-read-first-line-from-text-file">this</a> will get you started.</p>
http://stackoverflow.com/questions/340138/why-is-visual-studio-not-able-to-open-csproj-files/340149#3401490Answer by Vincent Van Den Berghe for Why is Visual Studio not able to open .csproj files?Vincent Van Den Berghe2008-12-04T10:28:53Z2008-12-04T10:28:53Z<p>Have you installed the C# part of Visual Studio? You might have unchecked it in a custom installation.</p>
http://stackoverflow.com/questions/337702/c-how-to-implement-one-catchem-all-exception-handler-with-resume/337761#3377611Answer by Vincent Van Den Berghe for C# - How to implement one catch'em all exception handler with resume?Vincent Van Den Berghe2008-12-03T16:28:38Z2008-12-03T16:28:38Z<p>Add a handler to the Application.ThreadException event.</p>
http://stackoverflow.com/questions/333571/asp-net-system-unauthorizedaccessexception-access-to-path-denied/333592#3335921Answer by Vincent Van Den Berghe for ASP.NET: System.UnauthorizedAccessException - Access to Path DeniedVincent Van Den Berghe2008-12-02T10:37:21Z2008-12-02T13:00:06Z<p>Make sure the ASP.NET account has read/write permission on the folder you're writing to (basic windows security).<br />
How to:
<a href="http://www.microsoft.com/windowsxp/using/networking/security/permissions.mspx" rel="nofollow">http://www.microsoft.com/windowsxp/using/networking/security/permissions.mspx</a><br />
(first 4 steps, check the boxes and click <code>OK</code>)</p>
<p>[EDIT]<br />
You need to authenticate yourself with an account known on the remote server. You probably gave rights to the local ASP.NET account on the remote server, which won't work because that's not the user you access the folder with (from the webserver).<br />
[/EDIT]</p>
http://stackoverflow.com/questions/333447/what-is-your-biggest-time-saving-feature-in-visual-studio-2008/333453#3334533Answer by Vincent Van Den Berghe for What is your biggest time saving feature in Visual Studio 2008Vincent Van Den Berghe2008-12-02T09:28:04Z2008-12-02T09:28:04Z<p>A lot of features have been mentioned <a href="http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008">here</a>... Especially <a href="http://blogs.msdn.com/saraford/archive/tags/Visual+Studio+2008+Tip+of+the+Day/default.aspx" rel="nofollow">this</a> blog has loads of useful tips.</p>
http://stackoverflow.com/questions/316940/threaded-loading-waiting-screen3Threaded loading (waiting) screenVincent Van Den Berghe2008-11-25T10:29:20Z2008-12-01T13:21:33Z
<p>I'm looking for a generic method to implement a wait screen during long operations. I have used threading a few times before, but I have the feeling that I implemented it either very poorly, or with way too much hassle (and copy/pasting - the horror!).</p>
<p>I want to keep this as generic and simple as possible, so I won't have to implement loads of <code>BackgroundWorker</code>s handling all kinds of crap, making things hard to maintain.</p>
<p>Here's what I would like to do -- please note this might differ from what's actually possible/best practise/whatever -- using VB.NET, Framework 2.0 (so no anonymous methods):</p>
<pre><code> Private Sub HandleBtnClick(sender as Object, e as EventArgs) Handles Button.Click
LoadingScreen.Show()
'Do stuff here, this takes a while!'
Dim Result as Object = DoSomethingTakingALongTime(SomeControl.SelectedObject)
LoadingScreen.Hide()
ProcessResults(Result)
End Sub
</code></pre>
<p>The application is now completely single-threaded, so everything runs on the GUI thread. I need to be able to access objects in <code>DoSomethingTakingALongTime()</code> without getting cross-thread exceptions. The GUI thread waits for some method (which takes a long time) to complete, while the <code>LoadingScreen</code> Form should stay responsive (it's animated/has a progressbar/etc.).</p>
<p>Is this a doable/good approach or am I seeing this way too simplistic? What is the best practise concerning this matter? And most importantly: how could I implement such a system? As I already mentioned, I have very little experience with threading, so be gentle please :-)</p>
http://stackoverflow.com/questions/325514/code-reusability-is-it-worth-it/325529#3255291Answer by Vincent Van Den Berghe for Code Reusability: Is it worth it?Vincent Van Den Berghe2008-11-28T11:20:08Z2008-11-28T11:20:08Z<p>If you're sure you're not going to need it again, don't bother. Not even if you think it <em>might</em> come in handy. Refactor it when you really need it again...</p>
<p>However, not making it reuseable is no excuse for not making it transparent. Whenever I write code as transparently as possible, it always turns out to be 99% reusable already...</p>
http://stackoverflow.com/questions/325504/well-written-java-open-source-projects-for-learning/325510#3255100Answer by Vincent Van Den Berghe for well written java open source projects (for learning)?Vincent Van Den Berghe2008-11-28T11:11:56Z2008-11-28T11:11:56Z<p>Just check out the AllTime favourites at SourceForge, there's lots of stuff you can learn there.</p>
<p>Or go to the <a href="http://sourceforge.net/softwaremap/" rel="nofollow">SourceForge Software Map</a>, pick a category you like and add a filter: <code>Require</code>-><code>Programming Language</code>-><code>Java</code>.</p>
<p>Enjoy!</p>
http://stackoverflow.com/questions/325464/listing-files-with-checkboxes-c-winforms/325480#3254802Answer by Vincent Van Den Berghe for Listing Files With CheckBoxes (C# / WinForms)Vincent Van Den Berghe2008-11-28T10:53:49Z2008-11-28T10:53:49Z<p>The <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.checkedlistbox.aspx" rel="nofollow"><code>CheckedListBox</code></a> control would be a good start :)</p>
http://stackoverflow.com/questions/325426/c-programmatic-equivalent-of-defaulttype/325431#3254311Answer by Vincent Van Den Berghe for C# - Programmatic equivalent of default(Type)Vincent Van Den Berghe2008-11-28T10:14:46Z2008-11-28T10:14:46Z<p>Have you tried the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx" rel="nofollow"><code>DefaultValueAttribute</code></a>?</p>
http://stackoverflow.com/questions/324797/is-there-a-sweet-efficient-way-to-call-the-same-method-twice-with-two-different/324809#3248093Answer by Vincent Van Den Berghe for Is there a sweet, efficient way to call the same method twice with two different arguments?Vincent Van Den Berghe2008-11-27T23:37:58Z2008-11-27T23:37:58Z<p>Create a function to which you pass the <code>String</code> and a <code>Dictionary(String, String)</code>. Iterate over each item in the Dictionary and <code>InputString.Replace(DictionaryEntry.Key, DictionaryEntry.Value)</code>. Return the string with the replaced values.</p>
<p>But I'd just do <code>.Replace.Replace</code> if it's only 2 times...</p>
http://stackoverflow.com/questions/317630/phpmyadmin-save-file-to-disk/317707#3177074Answer by Vincent Van Den Berghe for phpmyadmin - save file to diskVincent Van Den Berghe2008-11-25T15:26:51Z2008-11-27T10:43:19Z<p>Did you configure the php extension to send an http header?</p>
<p>In httpd.conf:
AddType application/x-httpd-php .php</p>
<p>EDIT<br />
The file is not necessarily named <code>httpd.conf</code>, that's just the default name. Try searching for other configuration files in the Apache directory -- the extension probably is <code>.conf</code> but it might be something else...
If you used apt-get on debian to install apache2, try <code>/etc/apache2/apche2.conf</code><br />
/EDIT</p>
http://stackoverflow.com/questions/322247/populate-property-object-during-property-call/322257#3222570Answer by Vincent Van Den Berghe for Populate Property Object during Property CallVincent Van Den Berghe2008-11-26T21:40:29Z2008-11-26T21:40:29Z<p>Go with it. If there's a better way, I'd like to hear it too :)</p>
http://stackoverflow.com/questions/321881/killing-an-interop-application-process/321975#3219750Answer by Vincent Van Den Berghe for Killing an interop Application processVincent Van Den Berghe2008-11-26T20:07:44Z2008-11-26T20:07:44Z<p>I posted a solution to this a few days ago:
<a href="http://stackoverflow.com/questions/51462/killing-excelexe-on-server#312513">http://stackoverflow.com/questions/51462/killing-excelexe-on-server#312513</a></p>
<p>Same method as StingyJack mentions; the only one I know to really work.</p>
http://stackoverflow.com/questions/321155/net-formstartposition-centerscreen-not-centering/321247#3212470Answer by Vincent Van Den Berghe for .Net FormStartPosition.CenterScreen not centeringVincent Van Den Berghe2008-11-26T16:09:36Z2008-11-26T16:09:36Z<p>Do you have any form resizing/positioning logic implemented? If so, comment it out and try again. </p>
<p>Try setting the <code>Form.StartPosition</code> in the designer (which will set it in <code>InitializeComponent()</code>) instead of in the Load event. </p>
<p>Try resetting the <code>Form.Location</code> and <code>Form.Size</code> value. If your form is localized, remove the <code>Form.Location</code> AND <code>Form.Size</code> entry in the resource file. </p>
http://stackoverflow.com/questions/320976/how-do-i-hire-a-programmer-smarter-than-me/321017#3210170Answer by Vincent Van Den Berghe for How do I hire a programmer smarter than me?Vincent Van Den Berghe2008-11-26T15:07:16Z2008-11-26T15:07:16Z<p>I would have someone even smarter interview them. He/she will probably know what kind of questions to ask. Also, sometimes people can be very convincing, even when they're wrong or unknowing. Make sure <em>you</em> know the right answer and caveats so they don't bullshit you :)</p>
<p>[EDIT]What Gabriel1836 said![/EDIT]</p>
http://stackoverflow.com/questions/320208/wpf-office-2007-theme/320242#3202422Answer by Vincent Van Den Berghe for WPF Office 2007 ThemeVincent Van Den Berghe2008-11-26T10:28:19Z2008-11-26T10:28:19Z<p>If you happen to have <a href="http://www.infragistics.com/dotnet/netadvantage/wpf.aspx#Overview" rel="nofollow">Infragistics NetAdvantage</a>: it has some Office 2007 themes.</p>
http://stackoverflow.com/questions/318632/textbox-anchored-to-a-form-on-all-4-sides-not-displayed-properly/318745#3187452Answer by Vincent Van Den Berghe for Textbox anchored to a form on all 4 sides not displayed properlyVincent Van Den Berghe2008-11-25T20:34:31Z2008-11-25T20:34:31Z<p>Is your <code>Form</code> localized? Check the resource files for an entry with <code>Textbox.Size</code>, delete is and reset the size.<br />
Is your <code>Form</code> inherited and is the <code>Textbox</code> on the baseform? Try setting the <code>Textbox</code>'s access modifier to Protected or Public.<br />
Have you implemented custom resize logic? Turn it off and see if the problem is still there.<br />
Have you entered a <code>Textbox.MinimumSize</code>/<code>MaximumSize</code>? Remove or change the value.</p>
<p>It might also be a combination of these things...</p>
http://stackoverflow.com/questions/625601/face-book-find-friendsComment by Vincent Van Den Berghe on face book find friendsVincent Van Den Berghe2009-03-09T09:52:54Z2009-03-09T09:52:54ZI think he wants to create a facebook app?http://stackoverflow.com/questions/389504/catch-block-not-catching-exception/389812#389812Comment by Vincent Van Den Berghe on Catch block not catching exceptionVincent Van Den Berghe2008-12-29T11:25:31Z2008-12-29T11:25:31Z+1 Thanks! Too bad there's only one crappy workaround... More code = more bugs ;-)http://stackoverflow.com/questions/371571/dos-delete-is-deleting-the-whole-directory-instead-of-individual-files/371712#371712Comment by Vincent Van Den Berghe on dos : delete is deleting the whole directory instead of individual filesVincent Van Den Berghe2008-12-16T16:07:57Z2008-12-16T16:07:57ZYou're welcome :)http://stackoverflow.com/questions/359086/net-designtime-datasource-for-combobox/359198#359198Comment by Vincent Van Den Berghe on .NET Designtime Datasource (for Combobox)Vincent Van Den Berghe2008-12-11T12:41:34Z2008-12-11T12:41:34ZDataObjectMethod has no parameterless constructors, add a <code>System.ComponentModel.DataObjectMethodType</code>.http://stackoverflow.com/questions/356464/localization-of-displaynameattribute/356527#356527Comment by Vincent Van Den Berghe on Localization of DisplayNameAttributeVincent Van Den Berghe2008-12-10T16:56:50Z2008-12-10T16:56:50ZMarc Gravell's solution is the way to go if you don't need anything else than a translated DisplayName -- I use the custom descriptor for other stuff too, and this was my solution. There is no way to do this without supplying some sort of key, though.http://stackoverflow.com/questions/352771/how-to-animate-rotating-cube-in-cComment by Vincent Van Den Berghe on How to animate rotating cube in C#?Vincent Van Den Berghe2008-12-09T14:02:39Z2008-12-09T14:02:39ZWPF or WinForms?http://stackoverflow.com/questions/344203/maximum-number-of-threads-per-process-in-linux/344264#344264Comment by Vincent Van Den Berghe on Maximum number of threads per process in Linux?Vincent Van Den Berghe2008-12-05T16:31:54Z2008-12-05T16:31:54ZThanks, I removed the distro stuff. So I'm guessing this works on all 2.x kernels?http://stackoverflow.com/questions/309282/what-are-the-worst-metaphors-in-computer-science-and-engineering/309299#309299Comment by Vincent Van Den Berghe on What are the worst metaphors in computer science and engineering?Vincent Van Den Berghe2008-12-05T11:22:50Z2008-12-05T11:22:50ZI'd say that's the greatest, not the worst ;)http://stackoverflow.com/questions/333447/what-is-your-biggest-time-saving-feature-in-visual-studio-2008/333453#333453Comment by Vincent Van Den Berghe on What is your biggest time saving feature in Visual Studio 2008Vincent Van Den Berghe2008-12-03T10:04:51Z2008-12-03T10:04:51ZNo problem, enjoy!http://stackoverflow.com/questions/333571/asp-net-system-unauthorizedaccessexception-access-to-path-denied/333592#333592Comment by Vincent Van Den Berghe on ASP.NET: System.UnauthorizedAccessException - Access to Path DeniedVincent Van Den Berghe2008-12-02T13:00:33Z2008-12-02T13:00:33ZYou need to authenticate yourself with an account known on the remote server. You probably gave rights to the local ASP.NET account on the remote server, which won't work because that's not the user you access the folder with (from the webserver).http://stackoverflow.com/questions/316940/threaded-loading-waiting-screen/330806#330806Comment by Vincent Van Den Berghe on Threaded loading (waiting) screenVincent Van Den Berghe2008-12-02T10:47:06Z2008-12-02T10:47:06ZThanks! I'll look into this and get back to you :-)http://stackoverflow.com/questions/317630/phpmyadmin-save-file-to-diskComment by Vincent Van Den Berghe on phpmyadmin - save file to diskVincent Van Den Berghe2008-11-27T10:43:46Z2008-11-27T10:43:46ZCheck my reply about the config file, I updated it.http://stackoverflow.com/questions/316940/threaded-loading-waiting-screen/316945#316945Comment by Vincent Van Den Berghe on Threaded loading (waiting) screenVincent Van Den Berghe2008-11-25T11:06:39Z2008-11-25T11:06:39ZWhich thread? The application is built single-threaded (= GUI thread), which already uses Application.Run to show the main form.http://stackoverflow.com/questions/316940/threaded-loading-waiting-screen/316960#316960Comment by Vincent Van Den Berghe on Threaded loading (waiting) screenVincent Van Den Berghe2008-11-25T10:57:47Z2008-11-25T10:57:47Z<continued> I don't really care about the main form, only the loading screen should be responsive. Nor do I care in which thread logic is executed, but I can't seem to get it right, I always run into cross-thread exceptions...http://stackoverflow.com/questions/316940/threaded-loading-waiting-screen/316960#316960Comment by Vincent Van Den Berghe on Threaded loading (waiting) screenVincent Van Den Berghe2008-11-25T10:55:39Z2008-11-25T10:55:39Z.NET is very picky about when and how it updates the GUI. Sometimes it runs fine until you click somewhere, and it completely stops updating. I know long operations should be executed in a thread instead of the GUI, but I didn't mention it because I want to know if this solution is feasbible.