User MarkJ - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T08:40:16Zhttp://stackoverflow.com/feeds/user/15639http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/727386/making-a-c-kill-event-for-a-vb6-app/752841#7528413Answer by MarkJ for Making a C# kill event for a vb6 app?MarkJ2009-04-15T17:28:58Z2009-11-27T12:33:40Z<p>Here is a pretty standard scheme for asynchronous background processing with VB6 clients and VB6 servers. (For instance it's in Dan Appleman's <a href="http://rads.stackoverflow.com/amzn/click/1562765760" rel="nofollow">book</a> and Microsoft's <a href="http://msdn.microsoft.com/en-us/library/aa445814%28VS.60%29.aspx" rel="nofollow">VB6 samples</a>.) I think it should work for a C# client too.</p>
<ul>
<li>The VB6 ActiveX EXE object should expose an event CheckQuitDoStuff(). This takes a ByRef Boolean called Quit. </li>
<li>The client calls StartDoStuff in the ActiveX EXE object. This routine starts a Timer on a hidden form and <strong>immediately returns</strong>. This unblocks the calling thread. The Timer interval is very short so the Timer event fires quickly. </li>
<li>The Timer event handler disables the Timer, and then calls back into the ActiveX object DoStuff method. This begins the lengthy processing. </li>
<li>Periodically the DoStuff method raises the CheckQuitDoStuff event. The client's event handler checks the special flag and sets Quit True if it's necessary to abort. Then DoStuff aborts the calculation and returns early if Quit is True. </li>
</ul>
<p>This scheme means that the client doesn't actually need to be multi-threaded, since the calling thread doesn't block while "DoStuff" is happening. The tricky part is making sure that DoStuff raises the events at appropriate intervals - too long, and you can't quit when you want to: too short, and you are slowing down DoStuff unecessarily. Also, when DoStuff exits, it must unload the hidden form.</p>
<p>If DoStuff does actually manage to get all the stuff done before being aborted, you can raise a different event to tell the client that the job is finished.</p>
http://stackoverflow.com/questions/155517/cancelling-a-long-running-process-in-vb6-0-without-doevents/1561574#15615740Answer by MarkJ for Cancelling a long running process in VB6.0 without DoEvents?MarkJ2009-10-13T17:01:33Z2009-11-27T12:32:42Z<p>Here is a pretty standard scheme for asynchronous background processing in VB6. (For instance it's in Dan Appleman's <a href="http://rads.stackoverflow.com/amzn/click/1562765760" rel="nofollow">book</a> and Microsoft's VB6 <a href="http://msdn.microsoft.com/en-us/library/aa445814%28VS.60%29.aspx" rel="nofollow">samples</a>.) You create a separate ActiveX EXE to do the work: that way the work is automatically on another thread, in a separate process (which means you don't have to worry about variables being trampled). </p>
<ul>
<li>The VB6 ActiveX EXE object should expose an event CheckQuitDoStuff(). This takes a ByRef Boolean called Quit. </li>
<li>The client calls StartDoStuff in the ActiveX EXE object. This routine starts a Timer on a hidden form and <strong>immediately returns</strong>. This unblocks the calling thread. The Timer interval is very short so the Timer event fires quickly. </li>
<li>The Timer event handler disables the Timer, and then calls back into the ActiveX object DoStuff method. This begins the lengthy processing. </li>
<li>Periodically the DoStuff method raises the CheckQuitDoStuff event. The client's event handler checks the special flag and sets Quit True if it's necessary to abort. Then DoStuff aborts the calculation and returns early if Quit is True. </li>
</ul>
<p>This scheme means that the client doesn't actually need to be multi-threaded, since the calling thread doesn't block while "DoStuff" is happening. The tricky part is making sure that DoStuff raises the events at appropriate intervals - too long, and you can't quit when you want to: too short, and you are slowing down DoStuff unecessarily. Also, when DoStuff exits, it must unload the hidden form.</p>
<p>If DoStuff does actually manage to get all the stuff done before being aborted, you can raise a different event to tell the client that the job is finished.</p>
http://stackoverflow.com/questions/1804414/vb6-enabling-mousewheel-for-controls/1805448#18054481Answer by MarkJ for VB6: enabling mousewheel for controlsMarkJ2009-11-26T20:05:40Z2009-11-26T20:05:40Z<p>Karl E Peterson shows how to make any control respond to the mousewheel in this <a href="http://visualstudiomagazine.com/articles/2009/08/11/reacting-to-the-mousewheel.aspx" rel="nofollow">nice article</a> in Visual Studio Magazine, with <a href="http://vb.mvps.org/samples/snatch.asp?id=HookXP" rel="nofollow">VB6 code you can just drop into your project</a>.</p>
http://stackoverflow.com/questions/1792206/does-anyone-know-a-good-mapinfo-forum/1796883#17968831Answer by MarkJ for does anyone know a good mapinfo forum?MarkJ2009-11-25T13:22:12Z2009-11-25T13:22:12Z<p><a href="http://groups.google.com/group/mapinfo-l" rel="nofollow">MapInfo-L</a> has been the essential MapInfo forum for years. Originally it was an email list, but now it's on Google Groups.</p>
http://stackoverflow.com/questions/131571/recommended-books-for-software-engineering/1791814#17918140Answer by MarkJ for Recommended Books for Software EngineeringMarkJ2009-11-24T17:57:38Z2009-11-24T18:05:35Z<p><em><a href="http://cc2e.com" rel="nofollow">Code Complete</a></em> by Steve McConnell - excellent chapters on architecture and design. </p>
<p>And if you still want more after that, follow the recommendations about further reading. </p>
<p>The design chapter is a <a href="http://cc2e.com/File.ashx?cid=336" rel="nofollow">free download</a> - although <a href="http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72412#72412">every programmer</a> should just <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2FCode-Complete-Second-Steve-McConnell%2Fdp%2F0735619670%2Fsr%3D1-1%2Fqid%3D1169499581%3Fie%3DUTF8%26s%3Dbooks&tag=stevemcconnelcon&linkCode=ur2&camp=1789&creative=9325" rel="nofollow">buy</a> and read the whole book.</p>
http://stackoverflow.com/questions/1785588/how-to-use-openoffice-org-spell-checker-in-my-app-vb6/1789860#17898600Answer by MarkJ for How to Use OpenOffice.org Spell Checker in My App (VB6)MarkJ2009-11-24T12:45:09Z2009-11-24T12:45:09Z<p>Google turns up this article <a href="http://www.codeproject.com/KB/dotnet/OOSpellCheck.aspx?msg=2807793" rel="nofollow">showing how to use the OpenOffice spellchecker</a> from C#. </p>
<p>Disclaimer: I haven't tested this (or actually read the whole article). </p>
<p>You could write a <a href="http://stackoverflow.com/questions/186640/create-com-component-and-activex-controls-in-net-c-and-net-framework-3-5">COM-visible</a> C# (or VB.Net) component, and call it from VB6.</p>
http://stackoverflow.com/questions/1766514/any-cheap-or-free-ides-out-there-for-vb6-programming/1766853#17668532Answer by MarkJ for Any cheap or free IDE's out there for VB6 programming?MarkJ2009-11-19T21:56:02Z2009-11-20T12:20:58Z<p>If you need the VB6 <strong>compiler</strong>, there's no alternative to the real Microsoft product. You can run it in command-line mode so I guess you could use any <strong>IDE</strong>.</p>
<ul>
<li>If you have an MSDN subscription, you can download Visual Basic 6 free. </li>
<li>Otherwise try somewhere like eBay, although it's often surprisingly expensive. Although Microsoft <a href="http://channel9.msdn.com/posts/funkyonex/What-is-Microsofts-Visual-Basic-6-Support-Strategy/" rel="nofollow">said in September 09</a> there were still several million people using VB6, so maybe it's not that surprising. </li>
</ul>
http://stackoverflow.com/questions/1758554/prevent-windows-from-queuing-shellexecute-requests/1765306#17653060Answer by MarkJ for Prevent windows from queuing shellexecute requestsMarkJ2009-11-19T18:03:21Z2009-11-19T18:03:21Z<p>Have you tried using the intrinsic <a href="http://msdn.microsoft.com/en-us/library/aa242087%28VS.60%29.aspx" rel="nofollow">Shell</a> to launch Program.exe, rather than ShellExecute? (I'm assuming <code>Win.ShellExecute</code> is the API call of the same name - you could include the declaration in your question.) </p>
<p>Also, <code>tyranid</code> is right that giving your application a form may solve the problem. I've had odd behaviour from VB6 apps with no forms. </p>
http://stackoverflow.com/questions/20564/what-constitutes-beautiful-code/581367#5813671Answer by MarkJ for What constitutes beautiful code?MarkJ2009-02-24T11:10:22Z2009-11-19T17:49:46Z<p>StackOverflow <a href="http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read">says</a> everyone should read <a href="http://www.cc2e.com" rel="nofollow">Code Complete</a>. A theme throughout the book is managing complexity by making programs as easy to understand as possible.</p>
<blockquote>
<p>Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it. <em>Brian Kernighan</em></p>
</blockquote>
<p>Beauty can be a dangerous word, because it can encourage overly clever, brief, and incomprehensible code. This will make the code harder to understand and modify in the future. </p>
<p>You should take pride in the appearance of your code. But I think words like clarity and readability are better touchstones than beauty. You can measure them - ask programmers to read code, and then test their understanding by asking questions. And that's why many experts avoid side effects and ternary expressions - because they are often incorrectly modified. </p>
<p>Programming is <strong>engineering</strong>, not art, because we are trying to <strong>solve problems</strong> by a mixture of science and creativity. (I hope everyone here is trying to solve problems?)</p>
<p><strong>EDIT:</strong> This <a href="http://stackoverflow.com/questions/921180/c-round-up/926806#926806">fantastic answer</a> by Eric Lippert illustrates my point far better than I ever could. </p>
http://stackoverflow.com/questions/1757877/extend-collections-class-vba/1763565#17635651Answer by MarkJ for Extend Collections Class VBAMarkJ2009-11-19T14:14:23Z2009-11-19T16:00:07Z<p>One popular option is to use an <a href="http://www.4guysfromrolla.com/webtech/080101-1.2.shtml" rel="nofollow">ADO disconnected recordset</a> as a sort of hyperpowered collection/dictionary object, which has built-in support for <a href="http://technet.microsoft.com/en-gb/library/ee176578.aspx" rel="nofollow">Sort</a>. Although you are using ADO, you <a href="http://msdn.microsoft.com/en-us/library/aa260348%28VS.60%29.aspx" rel="nofollow">don't need a database</a>.</p>
http://stackoverflow.com/questions/1754457/how-do-i-intercept-dll-load-unload-events-in-a-vb6-activex-dll/1754649#17546490Answer by MarkJ for How do I intercept DLL load/unload events in a VB6 ActiveX DLL?MarkJ2009-11-18T09:11:25Z2009-11-19T09:10:47Z<p>The classic VB6 add-in <a href="http://vb.mvps.org/tools/vbAdvance/" rel="nofollow">vbAdvance</a> lets you add code to the DLLMain, and therefore get startup and teardown notification for your DLLs. <strong>EDIT:</strong> unfortunately if you use this your DLL must be a standard DLL, it can't be a COM (ActiveX) DLL. A word of warning - <a href="http://blogs.msdn.com/oldnewthing/archive/2004/01/28/63880.aspx" rel="nofollow">don't do anything too scary in DLLMain</a>. </p>
<p>As far as I know Class_Terminate should always run before a containing DLL unloads, except in the case of abnormal termination of the application (e.g. using End).</p>
http://stackoverflow.com/questions/1748860/converting-c-not-c-to-c/1750523#17505231Answer by MarkJ for Converting C (not C++) to C#MarkJ2009-11-17T17:40:30Z2009-11-17T17:40:30Z<p>I <a href="http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-when-upgrading-our-legacy-apps/508823#508823">always advise extreme caution</a> before setting out to rewrite anything. If you use a <a href="http://stackoverflow.com/questions/718780/conversion-tool-comparisons-for-visual-basic-6-0">decent tool</a> to upgrade the VB6 to .NET, it will convert the <code>Declare</code> statements automatically, so don't stress about them too much!</p>
<p>It's a common pitfall to start out optimistically rewriting a large piece of software, make good early progress fixing some of the well-known flaws in the old architecture, and then get bogged down in the functionality that you've just been taking for granted for years. At this point your management begin to get twitchy and everything can get very uncomfortable. I have been there and it's no fun. Sounds like your users are <strong>already</strong> twitchy, which is a bad sign.</p>
<p>...and here's a blog post by a Microsofty that <a href="http://blogs.msdn.com/goto100/archive/2008/11/03/rewrite-vs-migrate-vs-reuse-vs-replace.aspx" rel="nofollow">agrees with me</a>:</p>
<blockquote>
<p>Many companies I worked with in the early days of .NET looked first at rewriting driven in part by a strong desire to improve the underlying architecture and code structures at the same time as they moved to .NET. Unfortunately many of those projects ran into difficulty and several were never completed. The problem they were trying to solve was too large</p>
</blockquote>
<p>...and some <a href="http://msdn.microsoft.com/en-gb/dd408373.aspx#migrate" rel="nofollow">official advice from Microsoft UK</a> regarding migrating from VB6 to .NET </p>
<blockquote>
<p>Performing a complete rewrite to .NET is far more costly and difficult to do well [than converting] ... we would only recommend this approach for a small number of situations. </p>
</blockquote>
<p>Maybe your program is small, and you have a great understanding of the problems it solves, and you are great at estimating accurately and keeping your projects on track, and it will all be fine. </p>
http://stackoverflow.com/questions/1747752/calling-web-service-from-c-v6/1748564#17485640Answer by MarkJ for Calling web service from c++ v6MarkJ2009-11-17T12:32:53Z2009-11-17T12:32:53Z<p>Here's a <a href="http://msdn.microsoft.com/en-us/library/aa730836%28VS.80%29.aspx" rel="nofollow">Microsoft article</a> on calling web services from VB6 - VBA is almost identical to VB6, so I expect the advice still applies.</p>
http://stackoverflow.com/questions/1741141/compiling-the-software-problem/1741157#17411573Answer by MarkJ for Compiling the software problemMarkJ2009-11-16T09:53:30Z2009-11-17T12:27:40Z<ul>
<li>Sounds like you need to create an installation for your VB6 project, to install the VB6 runtime and any non-standard components used. The runtime should be <a href="http://msdn.microsoft.com/en-us/vbrun/ms788708.aspx" rel="nofollow">present by default on Vista</a>, so it's probably non-standard components that are missing. </li>
<li>Consult the answers to your <a href="http://stackoverflow.com/questions/1327487/how-can-i-setup-the-vb-project">own previous question in August</a>, when you asked how to make an installation for a VB6 program. (Even that August question was <a href="http://stackoverflow.com/questions/23836/what-is-the-best-simple-install-system-for-xp-vista">already a duplicate</a>.)</li>
</ul>
http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/1734962#17349620Answer by MarkJ for Is LINQ to SQL DOA?MarkJ2009-11-14T17:35:09Z2009-11-14T17:35:09Z<p>Anyone remember VB6? Whether you personally loathe it or love it, Microsoft sold millions of copies, and businesses spent millions of dollars writing millions of lines of VB6. What happened next?</p>
<ul>
<li>Well, Microsoft do still <a href="http://msdn.microsoft.com/en-us/vbrun/ms788708.aspx" rel="nofollow">support VB6</a> (kind of - not the IDE). </li>
<li>And Microsoft <a href="http://channel9.msdn.com/posts/funkyonex/What-is-Microsofts-Visual-Basic-6-Support-Strategy/" rel="nofollow">still say</a> that they are listening to VB6 customers even now (<a href="http://channel9.msdn.com/posts/funkyonex/What-is-Microsofts-Visual-Basic-6-Support-Strategy/" rel="nofollow">in September 09</a>). </li>
<li>But are VB6 customers happy? <a href="http://classicvb.org/petition/" rel="nofollow">Not since 2002</a>, 4 years after VB6 launched. </li>
<li>Why not? The upgrade paths for your code investment to the replacement technology, VB.Net, are <a href="http://stackoverflow.com/questions/tagged/vb6-migration">expensive</a>. </li>
</ul>
<p>So just consider that lesson. To me, it seems LinqToSQL support will be rather grudging. They are <a href="http://social.msdn.microsoft.com/forums/en-US/linqprojectgeneral/thread/f5528b95-7dfa-491f-9139-db84b61795d7/" rel="nofollow">obliged</a> to support it because it is in the current .NET framework. But will it be in .NET 5, 6, 7...? Just think about how much that matters to you (for all I know, it doesn't matter to you at all). </p>
http://stackoverflow.com/questions/1733980/bring-window-to-foreground-after-mutex-fails/1734347#17343471Answer by MarkJ for Bring window to foreground after Mutex failsMarkJ2009-11-14T14:17:44Z2009-11-14T14:17:44Z<p>There is a <a href="http://msdn.microsoft.com/en-us/magazine/cc163741.aspx" rel="nofollow">feature</a> built into .Net to let a second instance of your application communicate with the first instance by raising an event in the first instance. Although it's part of VB.Net, it <a href="http://www.hanselman.com/blog/TheWeeklySourceCode31SingleInstanceWinFormsAndMicrosoftVisualBasicdll.aspx" rel="nofollow">can be used</a> with C# too. </p>
<p>However it's <strong>very important</strong> to be aware of the <strong>bugs</strong>. With some firewalls, it's <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=298407" rel="nofollow">impossible</a> to open even <strong>one</strong> instance - your application crashes at startup! See <a href="http://visualstudiomagazine.com/articles/2007/11/01/simplify-application-instancing.aspx" rel="nofollow">this excellent article</a> by Bill McCarthy for more details, and an alternative technique. He communicates from a second instance back to the first instance with pipes in .NET 3.5. I recommend you use that. His code is VB.Net, but you could probably <a href="http://converter.telerik.com/" rel="nofollow">convert to C# with Telerik</a>.</p>
http://stackoverflow.com/questions/1458818/is-my-project-open-source-if-i-use-net-langauges/1458948#14589481Answer by MarkJ for Is my project open-source if i use .NET langauges ?MarkJ2009-09-22T09:05:40Z2009-11-14T01:28:34Z<p>There's certainly no restriction from Microsoft on developing open source programs with their tools. In fact Microsoft <a href="http://www.microsoft.com/opensource/" rel="nofollow">say</a> they are trying to build bridges with open source developers, for instance by <a href="http://www.infoworld.com/event/osbc/09/index.html" rel="nofollow">sponsoring conferences</a> and <a href="http://www.microsoft.com/opensource/getting-started.mspx" rel="nofollow">helping projects get started</a> and <a href="http://www.codeplex.org/" rel="nofollow">funding a foundation</a> to help open source be used commercially. For more see <a href="http://www.microsoft.com/opensource/developer.mspx" rel="nofollow">here</a> or <a href="http://www.microsoft.com/opensource/" rel="nofollow">here</a>. </p>
http://stackoverflow.com/questions/1724062/3d-software-renderer-with-vb6/1725149#17251491Answer by MarkJ for 3D Software Renderer with VB6MarkJ2009-11-12T20:29:42Z2009-11-12T20:29:42Z<p><a href="http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=68507&lngWId=1" rel="nofollow">EGL25</a> by Erkan Sanli is a fast open source VB 6 renderer that can render, rotate, animate, etc. complex solid shapes made of thousands of polygons. Just Windows API calls – no DirectX, no OpenGL. </p>
<p><img src="http://www.vbmigration.com/Documentation/Images/sample/EGL25.jpg" alt="alt text"> </p>
<p>VBMigration.com <a href="http://www.vbmigration.com/Documentation/codesamples.aspx" rel="nofollow">chose EGL25</a> as a high-quality open-source VB6 project to demonstrate their VB6 to VB.Net upgrade tool.</p>
http://stackoverflow.com/questions/1722149/need-ctrlbreak-on-laptop-without-a-break-key/1723379#17233790Answer by MarkJ for Need Ctrl+Break on laptop without a Break keyMarkJ2009-11-12T16:11:13Z2009-11-12T16:11:13Z<p>Not a direct solution, but in VB6, you can break from the menus: Run->Break. Via keyboard: <kbd>Alt-R</kbd>, <kbd>K</kbd></p>
http://stackoverflow.com/questions/1716940/vb6-application-timing/1716970#17169702Answer by MarkJ for VB6 Application timingMarkJ2009-11-11T17:55:25Z2009-11-11T18:01:02Z<p>Although MSDN <a href="http://support.microsoft.com/kb/172338" rel="nofollow">says</a> <a href="http://msdn.microsoft.com/en-us/library/aa263387%28VS.60%29.aspx" rel="nofollow">Timer</a> is only accurate to 1 second, I've found it's better than that in practise. </p>
<p><a href="http://support.microsoft.com/kb/172338" rel="nofollow">GetTickCount</a> is typically accurate to <a href="http://msdn.microsoft.com/en-us/library/ms724408%28VS.85%29.aspx" rel="nofollow">about</a> 10 to 16 milliseconds. Here's a VB6 declaration. </p>
<pre><code> Declare Function GetTickCount Lib "Kernel32" () As Long
</code></pre>
<p>The <a href="http://support.microsoft.com/kb/172338" rel="nofollow">same Microsoft article</a> shows how to use <code>QueryPerformanceCounter</code> to get much higher accuracy, if your PC supports it, and if you need it.</p>
http://stackoverflow.com/questions/1706992/is-there-any-way-to-clear-subscription-to-an-event-in-vb-net/1707591#17075911Answer by MarkJ for Is there any way to clear subscription to an event in VB.NET?MarkJ2009-11-10T12:25:29Z2009-11-10T12:31:08Z<p>It's exactly the same in VB.Net. The compiler <a href="http://msdn.microsoft.com/en-us/library/aa711966%28VS.71%29.aspx" rel="nofollow">automatically creates a delegate field</a> for each event, just like the C# compiler, but in VB the field is hidden. However you can access the variable from your code - it's always named XXXEvent, where XXX is the event name. </p>
<p>So you can easily clear subscriptions to the event, just like in C#: </p>
<pre><code>Public Class Class1
Implements IDisposable
Event MyEvent()
Sub Clear() Implements IDisposable.Dispose
Me.MyEventEvent = Nothing ' clear the hidden variable '
End Sub
End Class
</code></pre>
<p>I'm also thinking it should be possible to use reflection to automatically find all the hidden delegate variables, and clear them. Then they don't have to be listed in the <code>Clear</code> method.</p>
http://stackoverflow.com/questions/1699736/how-can-i-return-a-pchar-from-a-dll-function-to-a-vb6-application-without-risking/1700003#17000030Answer by MarkJ for How can I return a PChar from a DLL function to a VB6 application without risking crashes or memory leaks?MarkJ2009-11-09T09:38:14Z2009-11-09T09:38:14Z<p>I'm not familiar with Dephi, but here are the two main options when using strings with a non-COM DLL and VB6. </p>
<p>Option 1. Use "ANSI" strings. </p>
<pre><code>'DLL routine expecting to be passed pointers to ANSI strings '
'VB6 will allocate and deallocate the strings '
'Its vital that VB6 allocates sufficient space for the return string '
Declare Sub MyProc Lib "mylib.dll" (ByVal Param As String, _
ByVal OutVal As String)
Function DoMyProc(ByVal Param As String) As String
Dim sResult As String
sResult = Space$(255) ' create 255 bytes of space for the return string '
Call MyProc(Param, sResult)
DoMyProc = sResult
End Function
</code></pre>
<p>Option two. Use BSTRs. </p>
<pre><code>'DLL routine expecting to be passed two BSTRs. It will modify the second one. '
'VB6 "owns" both BSTRs and will deallocate them when it has finished with them. '
Declare Sub MyProc(ByVal lpParam As Long, ByVal lpOutVal As Long)
Function DoMyProc(ByVal Param As String) As String
Dim sResult As String
Call MyProc(StrPtr(Param), StrPtr(sResult))
DoMyProc = sResult
End Function
</code></pre>
<p>I'd also suggest looking at the <a href="http://vb.mvps.org/tips/vb5dll.asp" rel="nofollow">Microsoft advice</a> on writing C DLLs to be called from VB. Originally released with VB5 but still relevant to VB6. </p>
http://stackoverflow.com/questions/1675378/avoiding-end-of-file-errors/1679823#16798230Answer by MarkJ for Avoiding 'End Of File' errorsMarkJ2009-11-05T11:04:20Z2009-11-05T11:04:20Z<p>You could try the built-in .Net object for reading tab-delimited files. It is <a href="http://msdn.microsoft.com/en-us/library/f68t4563.aspx" rel="nofollow">Microsoft.VisualBasic.FileIO.TextFileParser</a>.</p>
http://stackoverflow.com/questions/1667397/accessing-dynamically-loaded-dll-with-loadlibrary-in-visual-basic-6/1668960#16689601Answer by MarkJ for Accessing dynamically loaded DLL (with LoadLibrary) in Visual Basic 6MarkJ2009-11-03T17:36:58Z2009-11-03T17:36:58Z<p>Do you need to call COM methods on this DLL? If so, I'm not at all sure this is possible. </p>
<ul>
<li><p>Matthew Curland's excellent <a href="http://rads.stackoverflow.com/amzn/click/0201707128" rel="nofollow">Advanced Visual Basic 6</a> is the first place I'd look, though. There's some powerful under-the-hood COM stuff in there that circumvents the normal VB6 techniques. </p></li>
<li><p>There's also <a href="http://www.thecommon.net/10.html" rel="nofollow">DirectCom</a>, which allows you to call COM methods without using COM. Never used it myself, but people chat about it on the VB6 newsgroup.</p></li>
</ul>
http://stackoverflow.com/questions/1666876/how-to-set-software-usage-date-limitation/1667124#16671240Answer by MarkJ for How to set software usage date limitation?MarkJ2009-11-03T12:45:31Z2009-11-03T12:45:31Z<p>Software copy protection is a big subject, and there's many possible approaches, from commercial libraries and hardware keys, to "roll your own" like you're suggesting. </p>
<p>I advise you read some of the other discussions on copy protection on Stack Overflow. E.g. <a href="http://stackoverflow.com/questions/515020/what-copy-protection-technique-do-you-use">this</a> or <a href="http://stackoverflow.com/questions/185158/copy-protection-and-licensing-tools">this</a> or <a href="http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution">this</a>.</p>
http://stackoverflow.com/questions/1645734/vb6-control-iteration-one-control-gives-me-an-error-which-one/1650302#16503020Answer by MarkJ for VB6 control iteration: one control gives me an error; which one?MarkJ2009-10-30T14:55:55Z2009-10-30T14:55:55Z<p>Tosa: from your comment on <a href="http://stackoverflow.com/questions/1645734/vb6-control-iteration-one-control-gives-me-an-error-which-one/1646974#1646974">AngryHacker's answer</a>, I think you are checking the container incorrectly. </p>
<p>Your code is like this </p>
<pre><code> ' BAD CODE '
If ctrl.Container = fraMovies Then
</code></pre>
<p>For me that gives error 450 <code>Wrong number of arguments or invalid property assignment</code>. Do you get the same error? </p>
<p>The code should use <code>Is</code> rather than <code>=</code>, like this </p>
<pre><code> ' GOOD CODE '
If ctrl.Container Is fraMovies Then
</code></pre>
<p><strong>Explanation.</strong> You want to check whether two variables "point" to the same control. Controls are objects: <a href="http://msdn.microsoft.com/en-us/library/aa242809%28VS.60%29.aspx" rel="nofollow">you must use <code>Is</code> not <code>=</code></a> to check whether two object variables "point" to the same object. This is a classic pitfall in VB6. </p>
<p><strong>One last word.</strong> Next time, could you try to post 10 lines or less of actual code, reproducing the error, and give the exact error number and message and the exact line on which it occurs? It really does make it much easier for us to solve your problem - I know it's work for you to shorten the code, but you'll get better answers that way. </p>
http://stackoverflow.com/questions/1638917/read-xls-file-from-vb60Read XLS file from VB6MarkJ2009-10-28T17:47:53Z2009-10-29T23:11:23Z
<p>How can I read an XLS file from VB6? I don't want to use ADO or Automation. </p>
<ul>
<li><a href="http://support.microsoft.com/kb/q278973/" rel="nofollow">ADO</a> isn't going to work for my particular XLS files, because <a href="http://blog.lab49.com/archives/196" rel="nofollow">it guesses</a> the data types of the columns from the data in the first few rows. </li>
<li>Automation is out, because Excel may not be installed on the machine. </li>
</ul>
<p>I'm hoping for recommendations based on experience - <a href="http://www.google.com/search?q=read+xls+vb6&sourceid=ie7&rls=com.microsoft%3Aen-US&ie=utf8&oe=utf8&rlz=1I7GGLL%5Fen-GB" rel="nofollow">I know how to Google</a> :) </p>
http://stackoverflow.com/questions/1645204/how-do-i-send-receive-windows-messages-between-vb6-and-c/1645430#16454302Answer by MarkJ for How do I send/receive windows messages between VB6 and c#?MarkJ2009-10-29T17:46:57Z2009-10-29T17:46:57Z<p>To send in VB6 you need to use an API call (<a href="http://blogs.msdn.com/oldnewthing/archive/2004/11/19/266664.aspx" rel="nofollow">SendMessage</a> or PostMessage). To receive in VB6 you need to use subclassing (complicated - here's the <a href="http://visualstudiomagazine.com/articles/2009/07/16/subclassing-the-xp-way.aspx" rel="nofollow">best way I know</a>). </p>
<p>Have you considered using <a href="http://msdn.microsoft.com/en-us/library/kew41ycz%28VS.71%29.aspx" rel="nofollow">COM Interop</a> instead? It's a much easier way to communicate between VB6 and C# than windows messages.</p>
http://stackoverflow.com/questions/1641755/object-reference-not-set-to-an-instance-of-object/1644809#16448090Answer by MarkJ for object reference not set to an instance of objectMarkJ2009-10-29T16:07:36Z2009-10-29T16:07:36Z<p>The call into the Microsoft Enterprise Library static method <a href="http://msdn.microsoft.com/en-us/library/bb748674%28BTS.20%29.aspx" rel="nofollow">DatabaseFactory.CreateDatabase</a> is causing something inside the Microsoft Enterprise Library to crash - it's using a variable that has no value (it is <a href="http://msdn.microsoft.com/en-us/library/0x9tb07z.aspx" rel="nofollow"><code>Nothing</code></a>). For some reason it is unable to connect to your database. Why it doesn't throw a more informative exception I don't know - you'd have to ask Microsoft. </p>
<p>I know nothing about the Enterprise Library, but I think I'd check your <a href="http://msdn.microsoft.com/en-us/library/dd203148.aspx" rel="nofollow">web.config or app.config configuration settings</a> looking at the database connection strings for the default database. This is based on a 5 second skim-read of the <a href="http://msdn.microsoft.com/en-us/library/dd203329.aspx" rel="nofollow">documentation</a> and some <a href="http://bytes.com/topic/c-sharp/answers/634106-enterprise-library-error" rel="nofollow">Googling of online forums</a>. </p>
http://stackoverflow.com/questions/1643460/excel-bug-tracking-link-to-code-line/1644611#16446111Answer by MarkJ for Excel bug tracking + link to code line?MarkJ2009-10-29T15:39:05Z2009-10-29T15:44:49Z<p>There's a list of bug-trackers <a href="http://stackoverflow.com/questions/12328/what-bug-tracking-software-do-you-use">in this question</a>. </p>
<p>Do you want to link source code changes to particular bug fixes? That means integrating your bug-tracker with your version-control / revision-control system. (You do have version control, right? It's <strong>essential</strong>.) You could check the Wikipedia bug-tracker <a href="http://en.wikipedia.org/wiki/Comparison%5Fof%5Fissue%5Ftracking%5Fsystems" rel="nofollow">comparison table</a> looking at the revision control integration column.</p>
<p><a href="http://www.fogcreek.com/fogbugz" rel="nofollow">FogBugz</a> is <a href="http://stackoverflow.com/questions/12328/what-bug-tracking-software-do-you-use/12346#12346">popular</a> on StackOverflow, I hear it does integrate with version control, and it is free for one-person companies. Disclaimer: it was developed by <a href="http://stackoverflow.com/users/4/joel-spolsky">a founder of Stack Overflow</a>, so that may bias StackOverflow users in its favour slightly.</p>
http://stackoverflow.com/questions/1797808/how-do-you-parse-a-string-in-vb6/1802864#1802864Comment by MarkJ on how do you parse a string in vb6?MarkJ2009-11-27T17:43:29Z2009-11-27T17:43:29Z+1 worth considering. Here's a link <a href="http://www.regular-expressions.info/vb.html" rel="nofollow">regular-expressions.info/vb.html</a>http://stackoverflow.com/questions/1805589/expected-compile-error-in-vb6-while-adding-recordset-to-sql-server-2005-databComment by MarkJ on "Expected:=" compile error in vb6 while adding recordset to SQL Server 2005 databaseMarkJ2009-11-27T17:41:30Z2009-11-27T17:41:30ZYou are not getting answers because you've posted loads of code <i>and</i> you've left out some important setup details. What is rcdDne? An ADO recordset? What query are you running to create it? It's too hard to read all that and guess the data types and the previous code.http://stackoverflow.com/questions/1805514/c-best-approach-for-a-responsive-ui-during-sql-query-using-com-interop/1805553#1805553Comment by MarkJ on C# Best approach for a responsive UI during SQL query using COM interopMarkJ2009-11-27T12:31:59Z2009-11-27T12:31:59ZIf you want to solve it in VB6, I would try creating an ActiveX exe to wrap the DLL instead. Like the Microsoft coffee sample <a href="http://msdn.microsoft.com/en-us/library/aa445814(VS.60).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1805514/c-best-approach-for-a-responsive-ui-during-sql-query-using-com-interop/1806319#1806319Comment by MarkJ on C# Best approach for a responsive UI during SQL query using COM interopMarkJ2009-11-27T09:20:16Z2009-11-27T09:20:16ZDid you try using BackgroundWorker? What you've done sounds like a reimplementation of BackgroundWorker. Try AngryHacker's answer <a href="http://stackoverflow.com/questions/1805514/c-best-approach-for-a-responsive-ui-during-sql-query-using-com-interop/1806825#1806825" rel="nofollow" title="c best approach for a responsive ui during sql query using com interop">stackoverflow.com/questions/1805514/…</a>http://stackoverflow.com/questions/1805514/c-best-approach-for-a-responsive-ui-during-sql-query-using-com-interop/1806825#1806825Comment by MarkJ on C# Best approach for a responsive UI during SQL query using COM interopMarkJ2009-11-27T09:19:22Z2009-11-27T09:19:22Z+1 I think this should work. The whole point of the BackgroundWorker is that the RunWorkerCompleted event occurs on the original thread, so shouldn't have any problems with VB6 apartment threading?http://stackoverflow.com/questions/1804108/why-redeclare-things-to-implement-interfaces-in-vb-net/1804128#1804128Comment by MarkJ on Why? Redeclare things to implement interfaces?! in VB.NETMarkJ2009-11-26T16:05:17Z2009-11-26T16:05:17ZIf it were a sub you could just implement it with a different name: <code>Private Sub WhateverNameYouLike Implements IVisibleChanged.VisibleChanged</code> I don't know about events though. Anyone else?http://stackoverflow.com/questions/1804108/why-redeclare-things-to-implement-interfaces-in-vb-net/1804443#1804443Comment by MarkJ on Why? Redeclare things to implement interfaces?! in VB.NETMarkJ2009-11-26T16:01:07Z2009-11-26T16:01:07ZA further advantage is that the same function can implement multiple elements, possibly from different interfaces.http://stackoverflow.com/questions/1804108/why-redeclare-things-to-implement-interfaces-in-vb-net/1804128#1804128Comment by MarkJ on Why? Redeclare things to implement interfaces?! in VB.NETMarkJ2009-11-26T14:59:03Z2009-11-26T14:59:03Z@serhio: the compiler problem is that VB only uses explicit interface implementation - i.e. you have to write Implements MyMethod. The C# compiler automatically matches a method to an interface elements if the method has the same name. It's one of the differences between VB and C#.http://stackoverflow.com/questions/1804108/why-redeclare-things-to-implement-interfaces-in-vb-net/1804128#1804128Comment by MarkJ on Why? Redeclare things to implement interfaces?! in VB.NETMarkJ2009-11-26T14:57:35Z2009-11-26T14:57:35Z... and if you do need to modify the implementation of MyMethod, you could have a protected overrideable method in the base class, so that you can modify the implementation without needing to reimplement the interface. Probably a cleaner way?http://stackoverflow.com/questions/1802201/vb-net-overridable-property-not-same-as-c-virtual-property/1802215#1802215Comment by MarkJ on VB.net Overridable property not same as c# Virtual property?MarkJ2009-11-26T12:10:42Z2009-11-26T12:10:42ZThis is clearly the correct answer, but why doesn't the compiler give an error?http://stackoverflow.com/questions/1799272/does-anyone-know-of-a-way-to-view-all-compiler-warnings-for-a-vb-net-project/1799299#1799299Comment by MarkJ on Does anyone know of a way to view all compiler warnings for a VB.NET project?MarkJ2009-11-26T09:39:28Z2009-11-26T09:39:28ZResharper only does code analysis for C# I believe, not VBhttp://stackoverflow.com/questions/1800164/xml-deserialization-not-setting-class-valuesComment by MarkJ on XML Deserialization Not Setting Class ValuesMarkJ2009-11-26T09:36:26Z2009-11-26T09:36:26ZThis is nothing to do with the question, but you don't need the <code><Serializable()></code> attribute for <code>System.Xml.Serialization</code>http://stackoverflow.com/questions/1793102/getting-com-exception-80040154-on-different-machine/1793134#1793134Comment by MarkJ on Getting COM Exception 80040154 on different machineMarkJ2009-11-25T17:55:21Z2009-11-25T17:55:21Z+1 Although if there is an install for the VB6 COM DLL you should just run the install, rather than use regsvr32. There may be other dependencies required.http://stackoverflow.com/questions/1797808/how-do-you-parse-a-string-in-vb6/1797878#1797878Comment by MarkJ on how do you parse a string in vb6?MarkJ2009-11-25T17:52:47Z2009-11-25T17:52:47ZBe aware that if you convert the string to a byte array like that you are also converting it from Unicode to "ANSI" using the current system code page.http://stackoverflow.com/questions/1797808/how-do-you-parse-a-string-in-vb6/1797854#1797854Comment by MarkJ on how do you parse a string in vb6?MarkJ2009-11-25T16:06:49Z2009-11-25T16:06:49ZBe aware that if you convert the string to a byte array using StrConv you are also converting it from Unicode to "ANSI" using the current system code page.