User Joel Lucsy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T12:55:44Zhttp://stackoverflow.com/feeds/user/645http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1801916/advanced-topic-of-dynamic-lazy-loading-of-dlls-in-silverlight-application/1801989#18019891Answer by Joel Lucsy for Advanced topic of dynamic lazy loading of DLLs in silverlight applicationJoel Lucsy2009-11-26T07:01:25Z2009-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><?xml version="1.0" encoding="utf-8" ?>
<manifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<assembly>
<name>Common</name>
<version>1.0.0.0</version>
<publickeytoken>20f21d15449ebfc7</publickeytoken>
<relpath>Common.dll</relpath>
<extension downloadUri="Common.zip" />
</assembly>
</manifest>
</code></pre>
http://stackoverflow.com/questions/1801914/finding-file-size-windows-mfc-application/1801959#18019592Answer by Joel Lucsy for Finding file size windows MFC applicationJoel Lucsy2009-11-26T06:53:15Z2009-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#17907370Answer by Joel Lucsy for Why doesn't FastBitmap get garbage collected?Joel Lucsy2009-11-24T15:18:16Z2009-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#17497823Answer by Joel Lucsy for Are thread and process ids unique?Joel Lucsy2009-11-17T15:46:21Z2009-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#17295500Answer by Joel Lucsy for Silverlight, Updating the UI during processingJoel Lucsy2009-11-13T14:29:15Z2009-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#17163420Answer by Joel Lucsy for convert XAML-Canvas to bitmapJoel Lucsy2009-11-11T16:28:33Z2009-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#17109650Answer by Joel Lucsy for How do I get notification that the local Visual Studio build is complete?Joel Lucsy2009-11-10T20:28:38Z2009-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#17109135Answer by Joel Lucsy for C#: problem loading C++ DLLJoel Lucsy2009-11-10T20:20:24Z2009-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#17108760Answer by Joel Lucsy for Changing internal representation in runtimeJoel Lucsy2009-11-10T20:14:33Z2009-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-mediator0.NET IPC without having a service mediatorJoel Lucsy2008-09-04T01:20:39Z2009-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#15141700Answer by Joel Lucsy for Disable automatic DLL loading in C++Joel Lucsy2009-10-03T16:15:59Z2009-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#14718340Answer by Joel Lucsy for Silverlight serialisation/deserialisation problemJoel Lucsy2009-09-24T13:53:14Z2009-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#9587403Answer by Joel Lucsy for C++ Compiler for Windows without IDE?Joel Lucsy2009-06-06T01:15:11Z2009-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#9535530Answer by Joel Lucsy for How would you create this solution in visual studio?Joel Lucsy2009-06-04T23:02:29Z2009-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#9453440Answer by Joel Lucsy for Sleep function in c in windows. Does a function with better precision exist?Joel Lucsy2009-06-03T15:12:41Z2009-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#9369122Answer by Joel Lucsy for How to read and write extended windows file attributes with win32Joel Lucsy2009-06-01T21:34:11Z2009-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#9368910Answer by Joel Lucsy for How advisable is not having a message loop in WinMain?Joel Lucsy2009-06-01T21:29:59Z2009-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#9006040Answer by Joel Lucsy for Which development platform should I use for desktop Windows application?Joel Lucsy2009-05-23T01:13:42Z2009-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#9004532Answer by Joel Lucsy for Advantages and Disadvantages of SQLite.NET and SQL Server CompactJoel Lucsy2009-05-22T23:48:05Z2009-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#8978820Answer by Joel Lucsy for AOP Dirty TrackingJoel Lucsy2009-05-22T13:35:50Z2009-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#8549743Answer by Joel Lucsy for Best way to display multiple lines of static text in C#?Joel Lucsy2009-05-12T21:33:53Z2009-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-1Answer by Joel Lucsy for Microsoft Access 2007 accdr extension an Vista 64 bit OSJoel Lucsy2009-05-09T01:22:04Z2009-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-c1How to emulate Edit/Update mechanism of ADO for SQLite in C++?Joel Lucsy2009-05-07T22:32:36Z2009-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( &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#8372220Answer by Joel Lucsy for How do I structure a C# console application to efficiently use IDisposable database resources?Joel Lucsy2009-05-07T21:51:01Z2009-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#8320211Answer by Joel Lucsy for Windows equivalent of ls * (asterisk) directory wildcarding?Joel Lucsy2009-05-06T22:05:59Z2009-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#8157672Answer by Joel Lucsy for Running a .NET application from a file share without code signingJoel Lucsy2009-05-02T22:26:30Z2009-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#7839420Answer by Joel Lucsy for Subscribe to Vista Events in .NET (e.g. Window Opened)Joel Lucsy2009-04-23T23:14:59Z2009-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#7798704Answer by Joel Lucsy for What are CAD apps written in, and how are they organized ?Joel Lucsy2009-04-23T00:47:16Z2009-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#7702559Answer by Joel Lucsy for How do I avoid .Parent.Parent.Parent. etc. when referencing control hierarchies?Joel Lucsy2009-04-20T21:48:47Z2009-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#7703460Answer by Joel Lucsy for Hook LoadLibrary call from managed codeJoel Lucsy2009-04-20T22:18:45Z2009-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#1801989Comment by Joel Lucsy on Advanced topic of dynamic lazy loading of DLLs in silverlight applicationJoel Lucsy2009-11-27T04:36:59Z2009-11-27T04:36:59ZPortageMonkey-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#1716073Comment by Joel Lucsy on Preprocessing C# - Detecting MethodsJoel Lucsy2009-11-11T16:17:08Z2009-11-11T16:17:08ZIf 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#981778Comment by Joel Lucsy on Is it possible to register a .net assembly as COM without strong naming it?Joel Lucsy2009-06-11T15:35:10Z2009-06-11T15:35:10ZThe 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#953553Comment by Joel Lucsy on How would you create this solution in visual studio?Joel Lucsy2009-06-05T01:03:52Z2009-06-05T01:03:52ZThen 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-vistaComment by Joel Lucsy on CBT Hook not working in Windows VistaJoel Lucsy2009-06-01T21:24:21Z2009-06-01T21:24:21ZIs 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#900453Comment by Joel Lucsy on Advantages and Disadvantages of SQLite.NET and SQL Server CompactJoel Lucsy2009-05-23T01:11:35Z2009-05-23T01:11:35ZJust 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/…</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#900453Comment by Joel Lucsy on Advantages and Disadvantages of SQLite.NET and SQL Server CompactJoel Lucsy2009-05-23T01:08:03Z2009-05-23T01:08:03ZI'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#897882Comment by Joel Lucsy on AOP Dirty TrackingJoel Lucsy2009-05-22T15:18:33Z2009-05-22T15:18:33ZHmm, 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-applicationComment by Joel Lucsy on Loading/interacting with a vb6 COM dll from a 64bit ApplicationJoel Lucsy2009-05-21T17:42:12Z2009-05-21T17:42:12ZHave 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-cComment by Joel Lucsy on How to emulate Edit/Update mechanism of ADO for SQLite in C++?Joel Lucsy2009-05-20T19:06:47Z2009-05-20T19:06:47ZAll the ones I've investigated are ADO "like", 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#740559Comment by Joel Lucsy on LockBits Performance Critical CodeJoel Lucsy2009-05-12T18:15:16Z2009-05-12T18:15:16ZHave you look at <a href="<a href="http://msdn.microsoft.com/en-us/library/dd145121(VS.85).aspx">StretchDIBits</a>" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>;?http://stackoverflow.com/questions/853345/why-cant-i-stretchblt-a-dc-onto-another-dcComment by Joel Lucsy on Why can't I stretchBlt a dc onto another dc?Joel Lucsy2009-05-12T15:38:54Z2009-05-12T15:38:54ZWhat 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#842459Comment by Joel Lucsy on Microsoft Access 2007 accdr extension an Vista 64 bit OSJoel Lucsy2009-05-09T02:50:03Z2009-05-09T02:50:03ZOh, 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-cComment by Joel Lucsy on How to emulate Edit/Update mechanism of ADO for SQLite in C++?Joel Lucsy2009-05-08T03:55:28Z2009-05-08T03:55:28ZCould 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#827241Comment by Joel Lucsy on How can I store lots of images in a single file for a WinForms app?Joel Lucsy2009-05-05T22:47:36Z2009-05-05T22:47:36ZYes, you can extract only what you need.