User Joel Lucsy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T12:55:44Z http://stackoverflow.com/feeds/user/645 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1801916/advanced-topic-of-dynamic-lazy-loading-of-dlls-in-silverlight-application/1801989#1801989 1 Answer by Joel Lucsy for Advanced topic of dynamic lazy loading of DLLs in silverlight application Joel Lucsy 2009-11-26T07:01:25Z 2009-11-26T07:01:25Z <p>I'm not 100% certain this is what you're looking for, but in the Silverlight project properties, check "Reduce XAP size by using application library caching".</p> <p>This will load any dependent libraries when the XAP loads, but keep them in separate zips. Any library that is built from you must contain a "libraryname.extmap.xml" file. This is the trigger to DevStudio that it should bundle it up as a zip. The properties of the file should have its "Copy to Output Dir" checked. The contents should look like:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;manifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; &lt;assembly&gt; &lt;name&gt;Common&lt;/name&gt; &lt;version&gt;1.0.0.0&lt;/version&gt; &lt;publickeytoken&gt;20f21d15449ebfc7&lt;/publickeytoken&gt; &lt;relpath&gt;Common.dll&lt;/relpath&gt; &lt;extension downloadUri="Common.zip" /&gt; &lt;/assembly&gt; &lt;/manifest&gt; </code></pre> http://stackoverflow.com/questions/1801914/finding-file-size-windows-mfc-application/1801959#1801959 2 Answer by Joel Lucsy for Finding file size windows MFC application Joel Lucsy 2009-11-26T06:53:15Z 2009-11-26T06:53:15Z <p>To get all your info in one shot, use:</p> <pre><code>CFileStatus filestatus; CFile::GetStatus( filename, filestatus ); </code></pre> http://stackoverflow.com/questions/1790678/why-doesnt-fastbitmap-get-garbage-collected/1790737#1790737 0 Answer by Joel Lucsy for Why doesn't FastBitmap get garbage collected? Joel Lucsy 2009-11-24T15:18:16Z 2009-11-24T15:18:16Z <p>If this class isn't being Garbage Collected, then something else still has a reference to it. While the internal data may be what is keeping it locked, I'd look elsewhere first.</p> http://stackoverflow.com/questions/1749740/are-thread-and-process-ids-unique/1749782#1749782 3 Answer by Joel Lucsy for Are thread and process ids unique? Joel Lucsy 2009-11-17T15:46:21Z 2009-11-17T15:46:21Z <p>The process/thread id will be unique if the programs are running simultaneously as the OS needs to differentiate them. But the system does reuse ids. So, for your situation, yes, its a good idea to add either process id or thread id into your marker, tho I don't think you'd need both.</p> http://stackoverflow.com/questions/1729439/silverlight-updating-the-ui-during-processing/1729550#1729550 0 Answer by Joel Lucsy for Silverlight, Updating the UI during processing Joel Lucsy 2009-11-13T14:29:15Z 2009-11-13T14:29:15Z <p>I thought Silverlight only allow asynchronous calls. If you are doing things asynchronously then your use of Sleep is misleading as the upload wouldn't block the UI.</p> http://stackoverflow.com/questions/1715543/convert-xaml-canvas-to-bitmap/1716342#1716342 0 Answer by Joel Lucsy for convert XAML-Canvas to bitmap Joel Lucsy 2009-11-11T16:28:33Z 2009-11-11T16:28:33Z <p>Try using <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.writeablebitmap.aspx" rel="nofollow">WriteableBitmap</a></p> http://stackoverflow.com/questions/1710334/how-do-i-get-notification-that-the-local-visual-studio-build-is-complete/1710965#1710965 0 Answer by Joel Lucsy for How do I get notification that the local Visual Studio build is complete? Joel Lucsy 2009-11-10T20:28:38Z 2009-11-10T20:28:38Z <p>Personally I just have the "Output" window turn on by default and don't use the task list. This way I can see what it is doing at all times. I find the messages from this window to be much more enlightening than the task/error list.</p> http://stackoverflow.com/questions/1710828/c-problem-loading-c-dll/1710913#1710913 5 Answer by Joel Lucsy for C#: problem loading C++ DLL Joel Lucsy 2009-11-10T20:20:24Z 2009-11-10T20:20:24Z <p>C# uses "stdcall" calling convention by default. You've specified "C". You need to either specify</p> <p><code> [DllImport("SimpleDLL.dll",CallingConvention=CallingConvention.Cdecl)] </code></p> <p>or change your c code to:</p> <p><code> int _declspec(dllexport) stdcall mymean(int x, int y, int z) </code></p> http://stackoverflow.com/questions/1709680/changing-internal-representation-in-runtime/1710876#1710876 0 Answer by Joel Lucsy for Changing internal representation in runtime Joel Lucsy 2009-11-10T20:14:33Z 2009-11-10T20:14:33Z <p>Perhaps you're looking for the <a href="http://en.wikipedia.org/wiki/Bridge%5Fpattern" rel="nofollow">Bridge pattern</a>.</p> http://stackoverflow.com/questions/42987/net-ipc-without-having-a-service-mediator 0 .NET IPC without having a service mediator Joel Lucsy 2008-09-04T01:20:39Z 2009-10-22T15:36:44Z <p>I have two unrelated processes that use .NET assemblies as plugins. However, either process can be started/stopped at any time. I can't rely on a particular process being the server. In fact, there may be multiple copies running of one of the processes, but only one of the other.</p> <p>I initially implemented a solution based off of <a href="http://www.developer.com/net/net/article.php/3520891" rel="nofollow">this article</a>. However, this requires the one implementing the server to be running before the client.</p> <p>Whats the best way to implement some kind of notification to the server when the client(s) were running first?</p> http://stackoverflow.com/questions/1514118/disable-automatic-dll-loading-in-c/1514170#1514170 0 Answer by Joel Lucsy for Disable automatic DLL loading in C++ Joel Lucsy 2009-10-03T16:15:59Z 2009-10-03T16:15:59Z <p>The delayload functionality won't load a dll until its first function call, not scope. If you have global initializers that call into that dll, then that maybe be why you think its scope based. My company uses the technique of calling LoadLibrary before use without problems. I suggest digging further into your problem.</p> http://stackoverflow.com/questions/1471799/silverlight-serialisation-deserialisation-problem/1471834#1471834 0 Answer by Joel Lucsy for Silverlight serialisation/deserialisation problem Joel Lucsy 2009-09-24T13:53:14Z 2009-09-24T13:53:14Z <p>A couple of ideas: </p> <ul> <li>serialize a property that is used only for serialization thereby bypassing any validation</li> <li>serialize a parent class and use a derived class for validation</li> </ul> http://stackoverflow.com/questions/958695/c-compiler-for-windows-without-ide/958740#958740 3 Answer by Joel Lucsy for C++ Compiler for Windows without IDE? Joel Lucsy 2009-06-06T01:15:11Z 2009-06-06T01:15:11Z <p><a href="http://digitalmars.com/" rel="nofollow">Digital Mars</a> is excellent.</p> http://stackoverflow.com/questions/953472/how-would-you-create-this-solution-in-visual-studio/953553#953553 0 Answer by Joel Lucsy for How would you create this solution in visual studio? Joel Lucsy 2009-06-04T23:02:29Z 2009-06-04T23:02:29Z <p>Bring up the properties for the reference to the exe and set copy-local to false.</p> http://stackoverflow.com/questions/945320/sleep-function-in-c-in-windows-does-a-function-with-better-precision-exist/945344#945344 0 Answer by Joel Lucsy for Sleep function in c in windows. Does a function with better precision exist? Joel Lucsy 2009-06-03T15:12:41Z 2009-06-03T15:12:41Z <p>Look into <a href="http://msdn.microsoft.com/en-us/library/ms712704(VS.85).aspx" rel="nofollow">Multimedia Timers</a>.</p> http://stackoverflow.com/questions/936853/how-to-read-and-write-extended-windows-file-attributes-with-win32/936912#936912 2 Answer by Joel Lucsy for How to read and write extended windows file attributes with win32 Joel Lucsy 2009-06-01T21:34:11Z 2009-06-01T21:34:11Z <p>Extended Attributes are a property of the filesystem, i.e. NTFS. The tags associated with jpegs and AVIs are stored within the file itself. The Win32 API's will only provide you with the EA's from the filesystem, not the ones embedded within the files. You'll have to look into third-party libraries to retrieve the embedded attributes.</p> http://stackoverflow.com/questions/936710/how-advisable-is-not-having-a-message-loop-in-winmain/936891#936891 0 Answer by Joel Lucsy for How advisable is not having a message loop in WinMain? Joel Lucsy 2009-06-01T21:29:59Z 2009-06-01T21:29:59Z <p>I have read somewhere (and can't find the reference) is that Windows will create a message queue on demand. If you never call a function that looks for a message queue, one will never be created. And this occurs on a per-thread basis.</p> http://stackoverflow.com/questions/900596/which-development-platform-should-i-use-for-desktop-windows-application/900604#900604 0 Answer by Joel Lucsy for Which development platform should I use for desktop Windows application? Joel Lucsy 2009-05-23T01:13:42Z 2009-05-23T01:13:42Z <p>C# or VB.Net with SQLite.Net for the database. Pretty much cross platform across the board.</p> http://stackoverflow.com/questions/900438/advantages-and-disadvantages-of-sqlite-net-and-sql-server-compact/900453#900453 2 Answer by Joel Lucsy for Advantages and Disadvantages of SQLite.NET and SQL Server Compact Joel Lucsy 2009-05-22T23:48:05Z 2009-05-22T23:48:05Z <p>One thing is that the SQL Server Compact can only have one process accessing the MDF at a time.</p> http://stackoverflow.com/questions/897756/aop-dirty-tracking/897882#897882 0 Answer by Joel Lucsy for AOP Dirty Tracking Joel Lucsy 2009-05-22T13:35:50Z 2009-05-22T13:35:50Z <p>Some AOP implementations, specifically PostSharp, allow you to apply the attribute at an Assembly level with wildcards as to which classes it applies to.</p> http://stackoverflow.com/questions/854965/best-way-to-display-multiple-lines-of-static-text-in-c/854974#854974 3 Answer by Joel Lucsy for Best way to display multiple lines of static text in C#? Joel Lucsy 2009-05-12T21:33:53Z 2009-05-12T21:33:53Z <p>Use a text input box marked as read-only and multi-line.</p> http://stackoverflow.com/questions/842452/microsoft-access-2007-accdr-extension-an-vista-64-bit-os/842459#842459 -1 Answer by Joel Lucsy for Microsoft Access 2007 accdr extension an Vista 64 bit OS Joel Lucsy 2009-05-09T01:22:04Z 2009-05-09T01:22:04Z <p>Is the customer using the 64 bit IE? Access 2007 is 32 bit only. The 32 bit IE might work properly.</p> http://stackoverflow.com/questions/837404/how-to-emulate-edit-update-mechanism-of-ado-for-sqlite-in-c 1 How to emulate Edit/Update mechanism of ADO for SQLite in C++? Joel Lucsy 2009-05-07T22:32:36Z 2009-05-07T22:32:36Z <p>I have a C++ application that uses ADO to talk to an Oracle database. I'm updating the application to support an offline documents. I've decided to implement SQLite for the local side.</p> <p>I've implemented a wrapper around the ADO classes that will call the appropriate code. However, ADO's way of adding/editing/deleting rows is a bit difficult to implement for SQLite.</p> <p>For ADO I'd write something like:</p> <pre><code>CADODatabase db; CADORecordset rs( &amp;db ); db.Open( "connection string" ); rs.Open( "select * from table1 where table1key=123" ); if (!rs.IsEOF()) { int value; rs.GetFieldValue( "field", value ); if (value == 456) { rs.Edit(); rs.SetFieldValue( "field", 456 ); rs.Update(); } } rs.Close(); db.Close(); </code></pre> <p>For this simple example I realize that I could have just issued an update, but the real code is considerable more complex.</p> <p>How would I get calls between the Edit() and Update() to actually update the data? My first thought is to have the Edit() construct a separate query and the Update() actually run it, but I'm not sure what fields will be changed nor what keys from the table to limit an update query to.</p> http://stackoverflow.com/questions/827884/how-do-i-structure-a-c-console-application-to-efficiently-use-idisposable-databa/837222#837222 0 Answer by Joel Lucsy for How do I structure a C# console application to efficiently use IDisposable database resources? Joel Lucsy 2009-05-07T21:51:01Z 2009-05-07T21:51:01Z <p>Hmm, I see no one has mentioned doing it this way. You don't have to have the variables that are used in the <code>using</code> declared locally.</p> <pre><code> class Program { SQLiteConnection sourceConnection; SQLiteConnection destinationConnection; static void Main(string[] args) { Program shell = new Program(); // get connection strings from command line arguments string sourceConnectionString = shell.getConnectionString(args); string destinationConnectionString = shell.getConnectionString(args); using (sourceConnection = new SQLiteConnection(sourceConnectionString)) using (destinationConnection = new SQLiteConnection(destinationConnectionString)) { shell.doDatabaseWork(); } } private void doDatabaseWork() { // use the connections here } } </code></pre> http://stackoverflow.com/questions/831726/windows-equivalent-of-ls-asterisk-directory-wildcarding/832021#832021 1 Answer by Joel Lucsy for Windows equivalent of ls * (asterisk) directory wildcarding? Joel Lucsy 2009-05-06T22:05:59Z 2009-05-06T22:05:59Z <p>You can do something like "dir /s *.obj *lib". It'll give a summary at the end of how many files matched.</p> http://stackoverflow.com/questions/815740/running-a-net-application-from-a-file-share-without-code-signing/815767#815767 2 Answer by Joel Lucsy for Running a .NET application from a file share without code signing Joel Lucsy 2009-05-02T22:26:30Z 2009-05-02T22:26:30Z <p>Use <a href="http://msdn.microsoft.com/en-us/library/cb6t8dtz(VS.80).aspx" rel="nofollow">caspol.exe</a> to assign that file share enough permissions to run your program.</p> http://stackoverflow.com/questions/783822/subscribe-to-vista-events-in-net-e-g-window-opened/783942#783942 0 Answer by Joel Lucsy for Subscribe to Vista Events in .NET (e.g. Window Opened) Joel Lucsy 2009-04-23T23:14:59Z 2009-04-23T23:14:59Z <p>The answer is not C# (or .Net) specific. You'll need to call SetWindowsHookEx( WH_CBT, ... ). This will allows to know when a window is created, destroyed, moved, sized, etc. You'll also need to get the relevant information from the window to identify if its one you need to do something about. Perhaps GetClassInfo, GetWindowLong, and GetWindowText.</p> <p>The problem with the SetWindowsHookEx is that in order to get events from every window you need to have a separate win32 dll with the function in question exported. Although you might have success with the procedure outlined <a href="http://www.codeproject.com/KB/dotnet/DllExport.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/779639/what-are-cad-apps-written-in-and-how-are-they-organized/779870#779870 4 Answer by Joel Lucsy for What are CAD apps written in, and how are they organized ? Joel Lucsy 2009-04-23T00:47:16Z 2009-04-23T00:47:16Z <p>As my company is a registered developer for AutoCAD, I know for certain that its written in C++. It exposes a COM interface, as well as a .Net wrapper. Also, it graphics display is componentized and could be possibly replaced. Way back in its history it used be cross-platform. However its been Windows only for about 10 years and now takes advantage every Windows feature I've seen. You may be interested in the <a href="http://www.opendwg.com" rel="nofollow">Open Design Alliance</a>.</p> http://stackoverflow.com/questions/770222/how-do-i-avoid-parent-parent-parent-etc-when-referencing-control-hierarchies/770255#770255 9 Answer by Joel Lucsy for How do I avoid .Parent.Parent.Parent. etc. when referencing control hierarchies? Joel Lucsy 2009-04-20T21:48:47Z 2009-04-20T22:56:57Z <pre><code>Control parent = Parent; while (!(parent is RadGrid)) { parent = parent.Parent; } </code></pre> http://stackoverflow.com/questions/769537/hook-loadlibrary-call-from-managed-code/770346#770346 0 Answer by Joel Lucsy for Hook LoadLibrary call from managed code Joel Lucsy 2009-04-20T22:18:45Z 2009-04-20T22:18:45Z <p>The best way would be to hook LoadLibrary/LoadLibraryEx, do the download if needed, and pass the downloaded file down the chain. However, I'd be worried about blocking the GUI during that download.</p> http://stackoverflow.com/questions/1801916/advanced-topic-of-dynamic-lazy-loading-of-dlls-in-silverlight-application/1801989#1801989 Comment by Joel Lucsy on Advanced topic of dynamic lazy loading of DLLs in silverlight application Joel Lucsy 2009-11-27T04:36:59Z 2009-11-27T04:36:59Z PortageMonkey-Can you give more details? We've run into general code caching issues when quickly iterating our builds during development, but haven't pinned anything down. http://stackoverflow.com/questions/1716040/preprocessing-c-detecting-methods/1716073#1716073 Comment by Joel Lucsy on Preprocessing C# - Detecting Methods Joel Lucsy 2009-11-11T16:17:08Z 2009-11-11T16:17:08Z If you don't want to ship a 3rd party library, use ILMerge to merge those assemblies into yours. You can use a post-build step to do this. http://stackoverflow.com/questions/981761/is-it-possible-to-register-a-net-assembly-as-com-without-strong-naming-it/981778#981778 Comment by Joel Lucsy on Is it possible to register a .net assembly as COM without strong naming it? Joel Lucsy 2009-06-11T15:35:10Z 2009-06-11T15:35:10Z The documentation is wrong. /codebase is enough to get to work. We use this technique for writing add-ins to various products that don't supply strong-named assemblies for our consumption, thereby disallowing us to strong-name our own assembly. http://stackoverflow.com/questions/953472/how-would-you-create-this-solution-in-visual-studio/953553#953553 Comment by Joel Lucsy on How would you create this solution in visual studio? Joel Lucsy 2009-06-05T01:03:52Z 2009-06-05T01:03:52Z Then you've contradicted yourself. Either you need it or you don't. Perhaps you should be placing all your outputs into a single directory instead of multiple. http://stackoverflow.com/questions/936830/cbt-hook-not-working-in-windows-vista Comment by Joel Lucsy on CBT Hook not working in Windows Vista Joel Lucsy 2009-06-01T21:24:21Z 2009-06-01T21:24:21Z Is this an issue 32/64 bit? Do you have a 64 bit version? http://stackoverflow.com/questions/900438/advantages-and-disadvantages-of-sqlite-net-and-sql-server-compact/900453#900453 Comment by Joel Lucsy on Advantages and Disadvantages of SQLite.NET and SQL Server Compact Joel Lucsy 2009-05-23T01:11:35Z 2009-05-23T01:11:35Z Just found this information at <a href="http://download.microsoft.com/download/e/8/8/e8859616-e95d-41fe-9f81-ff88388d772b/SQLServer%202008CompareComapctExpress.pdf" rel="nofollow">download.microsoft.com/download/e/&hellip;</a> It seems it doesn't have views, triggers, or stored procedures. Of course, sqlite doesn't have stored procedures either, but it does the other two. http://stackoverflow.com/questions/900438/advantages-and-disadvantages-of-sqlite-net-and-sql-server-compact/900453#900453 Comment by Joel Lucsy on Advantages and Disadvantages of SQLite.NET and SQL Server Compact Joel Lucsy 2009-05-23T01:08:03Z 2009-05-23T01:08:03Z I'm fairly certain its just a one process limitation. It requires exclusive access to the file. But I think multiple threads should be fine. I never tried myself. http://stackoverflow.com/questions/897756/aop-dirty-tracking/897882#897882 Comment by Joel Lucsy on AOP Dirty Tracking Joel Lucsy 2009-05-22T15:18:33Z 2009-05-22T15:18:33Z Hmm, I think that you can, but I don't know how. I know you can apply an attribute at the class level and when its applied I believe you can intercept individual properties and methods. PostSharp has a forum, perhaps you can ask about how to implement it there. http://stackoverflow.com/questions/892715/loading-interacting-with-a-vb6-com-dll-from-a-64bit-application Comment by Joel Lucsy on Loading/interacting with a vb6 COM dll from a 64bit Application Joel Lucsy 2009-05-21T17:42:12Z 2009-05-21T17:42:12Z Have you figured out how to do the communications between 64 to 32 using COM? Still seems like there'd be some kind of mismatch. http://stackoverflow.com/questions/837404/how-to-emulate-edit-update-mechanism-of-ado-for-sqlite-in-c Comment by Joel Lucsy on How to emulate Edit/Update mechanism of ADO for SQLite in C++? Joel Lucsy 2009-05-20T19:06:47Z 2009-05-20T19:06:47Z All the ones I've investigated are ADO &quot;like&quot;, not real implementations. They implement a similar, but different, interface. Or are for ADO.Net. http://stackoverflow.com/questions/740555/lockbits-performance-critical-code/740559#740559 Comment by Joel Lucsy on LockBits Performance Critical Code Joel Lucsy 2009-05-12T18:15:16Z 2009-05-12T18:15:16Z Have you look at &lt;a href=&quot;<a href="http://msdn.microsoft.com/en-us/library/dd145121(VS.85).aspx&quot;&gt;StretchDIBits&lt;/a&gt" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a>;? http://stackoverflow.com/questions/853345/why-cant-i-stretchblt-a-dc-onto-another-dc Comment by Joel Lucsy on Why can't I stretchBlt a dc onto another dc? Joel Lucsy 2009-05-12T15:38:54Z 2009-05-12T15:38:54Z What did StretchBlt return? What did it set for GetLastError()? http://stackoverflow.com/questions/842452/microsoft-access-2007-accdr-extension-an-vista-64-bit-os/842459#842459 Comment by Joel Lucsy on Microsoft Access 2007 accdr extension an Vista 64 bit OS Joel Lucsy 2009-05-09T02:50:03Z 2009-05-09T02:50:03Z Oh, I see. He launches it and <i>then</i> IE runs. Hmmm, there is a 32 and 64 bit Explorer as well. 64 bit in System32, 32 bit in SysWow64 (I think, I have a 64 bit machine at work, can't check here). I think there are seperate icons in the start menu too, but not certain. http://stackoverflow.com/questions/837404/how-to-emulate-edit-update-mechanism-of-ado-for-sqlite-in-c Comment by Joel Lucsy on How to emulate Edit/Update mechanism of ADO for SQLite in C++? Joel Lucsy 2009-05-08T03:55:28Z 2009-05-08T03:55:28Z Could I use the ODBC driver without installing anything? I'm looking to be able to run off a USB drive without having to install. http://stackoverflow.com/questions/827225/how-can-i-store-lots-of-images-in-a-single-file-for-a-winforms-app/827241#827241 Comment by Joel Lucsy on How can I store lots of images in a single file for a WinForms app? Joel Lucsy 2009-05-05T22:47:36Z 2009-05-05T22:47:36Z Yes, you can extract only what you need.