User RS Conley - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:57:18Z http://stackoverflow.com/feeds/user/7890 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1914413/mvp-connecting-the-triads/1928373#1928373 0 Answer by RS Conley for MVP Connecting The Triads RS Conley 2009-12-18T14:04:02Z 2009-12-18T14:04:02Z <p>Each pane is not a separate view. By doing that you are tying the specifics of the form to the presenter. The basic idea is that your editing a list of customers the presenter should not care how the form is setup.</p> <p>Your two pane view should extract a list of customer from the presenter and use that list to fill out the left pane. Then when an item is clicked it ask the presenter for the list of orders the customers made and other details. </p> <p>This approach will solve your problem as now there is a single view. When you click on something on the order and it needs to know the current customer you can refer to the tree view (or combo box, or list view, etc) to see what is the currently selected customer.</p> <p>The trick to avoiding issues like this is to ask your self what happen if I make a new form that use completely different UI elements. Will the presenter have to be altered to reflect that? If the presenter does then you have tied it too closely to the implementation of the view. </p> http://stackoverflow.com/questions/1918415/mvp-model-view-presenter/1928341#1928341 0 Answer by RS Conley for MVP - Model View Presenter RS Conley 2009-12-18T13:56:32Z 2009-12-18T13:56:32Z <p>Passing the Presenter to NavigateTo is a good choice. If you have multiple presenters you may want to write a interface that NavigateTo can use and have each presenter implement that interface. But if you just using one presenter for this or they already share some common interface then this is not needed.</p> <p>One idea behind MVP is that you are change the view without effecting the underlying UI Logic. Passing the presenter doesn't effect this goal of MVP as you can change the view the Presenter is using. Now if you are allowing direct access to the raw view through the presenter (by exposing a view property) then that not good. What you want are methods on the presenter to expose the needed information to NavigateTo. That way when you chance the view you re implement the code behind those methods.</p> http://stackoverflow.com/questions/1858470/technology-choice-for-redesigning-an-old-visualbasic-application/1859871#1859871 1 Answer by RS Conley for Technology choice for redesigning an old VisualBasic-Application RS Conley 2009-12-07T13:09:57Z 2009-12-07T13:09:57Z <blockquote> <p>A lot of highly mathematical code in models, ready to be packed away in .dlls and sold seperately (Note: I don't dare to touch these, too specialised).</p> </blockquote> <p>Having pulled my company's CAD/CAM through several platforms (HP Workstation, DOS, Win16, Win32) I strongly recommend that your mathematical assemblies remain in VB.NET. If you have a strong suite of unit tests then you can get away with switching to another language. Although C# is nearly identical to VB.NET/VB6 in math there is always a hassle when convert pure mathematics. Unlike a faulty UI problems this area don't show up right away unless you have a good suite of unit tests </p> http://stackoverflow.com/questions/1817431/session-state-with-mvp-and-application-controller-patterns/1819737#1819737 0 Answer by RS Conley for Session State with MVP and Application Controller patterns RS Conley 2009-11-30T13:09:06Z 2009-11-30T13:09:06Z <p>The classes needed to support a Business Conversation should reside in a presenter if it only involves the User Interface. Otherwise it should be in the Model and controller from the View to the Presenter to the Model. With information about Business Conversations flowing the other way. I suspect is something that can reside just in the Presenter. </p> <p>Since all Views have access to the Presenter you then have the ability to structure the objects supporting the conversation so that they can be maintained across several views.</p> <p>Remember Views are a window into what data resides in your software. They did little other display data and pass user interactions back into the presenter which does the logic.</p> http://stackoverflow.com/questions/1812079/move-a-line-with-mouse-vb6/1813075#1813075 0 Answer by RS Conley for move a line with mouse (vb6) RS Conley 2009-11-28T17:05:45Z 2009-11-28T17:05:45Z <p>The rough basic steps would be</p> <ol> <li>Make sure you save how you drew the screen somewhere in your model.</li> <li>On the mouse down event on the form grab the X-Y position. Redraw the screen using the that coordinate.</li> <li>On the mouse move events redraw the screen based on the coordinate passed into mouse move.</li> <li>Then on mouse up event redraw the screen on last time and update your model.</li> </ol> <p>You will have a lot of tweaking to do make the drag and drop appear smooth. </p> <p>If you supply more details I can be more specific with my answer.</p> http://stackoverflow.com/questions/592350/what-successful-conversion-rewrite-of-software-have-you-done 7 What successful conversion/rewrite of software have you done? RS Conley 2009-02-26T20:43:05Z 2009-11-25T07:05:08Z <p>What successful conversion/rewrite have you done of software you were involved with? What where the languages and framework involved in the process? How large was the software in question? Finally what is the top one or two thing you learned from being involved with the process.</p> <p>This is related to this <a href="http://stackoverflow.com/questions/592354/what-failed-conversion-rewrite-of-sofware-have-you-done">question</a></p> http://stackoverflow.com/questions/1791908/open-the-txt-file-and-read-it-and-save-it-in-database-using-vb6/1792248#1792248 0 Answer by RS Conley for open the txt file and read it and save it in database using vb6 RS Conley 2009-11-24T19:08:26Z 2009-11-24T19:08:26Z <p>Mid$ is your friend. Just read each line and use Mid$ to read one or more characters from the desired position For example </p> <pre><code>TempS = "Hello World" Print Mid$(Temps, 2,3) </code></pre> <p>Result will be 'ell'</p> <p>The rest should be straight forward.</p> http://stackoverflow.com/questions/1790554/how-do-i-send-a-struct-from-c-to-vb6-and-from-vb6-to-c/1791077#1791077 1 Answer by RS Conley for How do I send a struct from C# to VB6, and from VB6 to C#? RS Conley 2009-11-24T16:08:49Z 2009-11-24T16:08:49Z <p>You have to assign GUIDs and use the MarshalAs attribute. .NET COM Interop handles the translation. Not too much different than a class. <a href="http://bytes.com/topic/c-sharp/answers/258041-marshal-c-structure-vb6" rel="nofollow">This series</a> of posts illustrates what you need to do.</p> http://stackoverflow.com/questions/1785588/how-to-use-openoffice-org-spell-checker-in-my-app-vb6/1790022#1790022 2 Answer by RS Conley for How to Use OpenOffice.org Spell Checker in My App (VB6) RS Conley 2009-11-24T13:22:10Z 2009-11-24T13:22:10Z <p>The OpenOffice Developer's Guide is <a href="http://wiki.services.openoffice.org/wiki/Documentation/DevGuide/OpenOffice.org%5FDevelopers%5FGuide" rel="nofollow">here</a>.</p> <p>OpenOffice has COM bindings which you can read about <a href="http://wiki.services.openoffice.org/wiki/Documentation/DevGuide/ProUNO/Bridge/Automation%5FBridge" rel="nofollow">here</a>.</p> <p>The API reference is <a href="http://api.openoffice.org/docs/common/ref/com/sun/star/module-ix.html" rel="nofollow">here</a></p> <p>The l<a href="http://api.openoffice.org/docs/common/ref/com/sun/star/linguistic2/module-ix.html" rel="nofollow">inguistic2</a> module is what you interested in and has documentation on the <a href="http://api.openoffice.org/docs/common/ref/com/sun/star/linguistic2/SpellChecker.html" rel="nofollow">spell checker</a>.</p> <p>My opinion that it is rather involved to get this going and only of use if you are planning to have OpenOffice as part of your solution. I would look at the various 3rd party offering for VB6 and spell checking. </p> http://stackoverflow.com/questions/1725279/security-and-roles-authorization-with-model-view-presenter-design-pattern/1770849#1770849 0 Answer by RS Conley for Security and roles authorization with model view presenter design pattern RS Conley 2009-11-20T14:39:41Z 2009-11-20T14:39:41Z <p>The View should handles just the UI. It should setup the dialog/form/controls however you need it. When the user tries to authorize hand the data off to the presenter. </p> <p>The presenter then should take that data and validate it using the API and model exposed from the model. </p> <p>In my CAD/CAM application the actual API reside in lowest of my application the utility assembly. I wrap and interface around it so that if I chance my security API the upper levels do not see anything different. The Utility tells me if the entered information is valid or not and what level of security to grant the person. </p> <p>Any more specific depends on the exact security API you are using.</p> http://stackoverflow.com/questions/1764613/if-i-registered-a-tlb-do-i-still-need-to-register-the-ocx-in-order-to-compile/1764827#1764827 1 Answer by RS Conley for If I registered a TLB do I still need to register the ocx in order to compile? RS Conley 2009-11-19T16:56:56Z 2009-11-19T16:56:56Z <p>You will need to read up on reg free COM which also works with OCXs You can read more <a href="http://stackoverflow.com/questions/465882/generate-manifest-files-for-registration-free-com">here</a>. The process involves creating manifest files for each library (DLL or OCX but not ActiveX EXE)</p> http://stackoverflow.com/questions/1763680/in-vb6-is-linking-to-a-tlb-generated-from-an-ocx-the-same-as-linking-to-an-ocx-di/1764519#1764519 1 Answer by RS Conley for In VB6 is linking to a tlb generated from an ocx the same as linking to an ocx directly RS Conley 2009-11-19T16:18:04Z 2009-11-19T16:18:04Z <p>If you own the Enterprise Edition you may create a stand-alone Type Library by selecting the "Remote Server Files" checkbox that you find in the Component tab of the Project Properties dialog box. When you then compile the component, Visual Basic will also create two additional files in the same directory as the executable file. One of these two files is the TLB you were looking for. </p> <p>Found <a href="http://www.devx.com/vb2themax/Tip/18258" rel="nofollow">here</a> and confirmed to work with VB6 Enterprise Edition.</p> <p>Otherwise you have to use OLEVIEW in the Visual Studio 6.0 tool to copy the IDL and compile it using the MIDL compiler into a TLB file. </p> http://stackoverflow.com/questions/1763753/can-local-files-be-used-during-vb6-compile-to-avoid-registering-com-ocx-and-dll/1764418#1764418 2 Answer by RS Conley for Can .local files be used during VB6 compile to avoid registering COM ocx and dll files RS Conley 2009-11-19T16:05:48Z 2009-11-19T16:05:48Z <p>.local is used to force Windows to use the COM DLLs in the VB6 application directory in preference to the most recent version stored in the registry. It doesn't replace the necessity of registering the DLL as Windows need to look in the registry for the CLSIDs of the older version. </p> <p>Registry free COM DLLs is explained <a href="http://stackoverflow.com/questions/345111/how-can-you-force-vb6-to-use-the-dlls-and-ocxs-from-the-app-directory">here</a> and involves the creation of a manifest file. Similar in principle to what .NET goes through with it's assemblies except .NET handles this issue automatically and with ActiveX DLL it is more of a manual process. </p> http://stackoverflow.com/questions/1758554/prevent-windows-from-queuing-shellexecute-requests/1758869#1758869 0 Answer by RS Conley for Prevent windows from queuing shellexecute requests RS Conley 2009-11-18T20:34:24Z 2009-11-18T20:34:24Z <p>You may want to use the Process API rather than ShellExecute</p> <pre><code>Private Declare Function CreateProcess Lib "kernel32" Alias "CreateProcessA" (ByVal lpApplicationName As String, ByVal lpCommandLine As String, lpProcessAttributes As Any, lpThreadAttributes As Any, ByVal bInheritHandles As Long, ByVal dwCreationFlags As Long, lpEnvironment As Any, ByVal lpCurrentDriectory As String, lpStartupInfo As STARTUPINFO, lpProcessInformation As PROCESS_INFORMATION) As Long Private Type PROCESS_INFORMATION hProcess As Long hThread As Long dwProcessId As Long dwThreadId As Long End Type Private Type STARTUPINFO cb As Long lpReserved As String lpDesktop As String lpTitle As String dwX As Long dwY As Long dwXSize As Long dwYSize As Long dwXCountChars As Long dwYCountChars As Long dwFillAttribute As Long dwFlags As Long wShowWindow As Integer cbReserved2 As Integer lpReserved2 As Long hStdInput As Long hStdOutput As Long hStdError As Long End Type </code></pre> <p>If you need to halt until it is done you this</p> <pre><code>Private Declare Function WaitForSingleObject Lib "kernel32" (ByVal hHandle As Long, ByVal dwMilliseconds As Long) As Long </code></pre> <p>The code to use look something like this</p> <pre><code>ReturnValue = CreateProcess(NullString, AppPathString, ByVal 0&amp;, ByVal 0&amp;, 1&amp;, NORMAL_PRIORITY_CLASS, ByVal 0&amp;, NullString, StartupInformation, ProcessInformation) Do While WaitForSingleObject(ProcessInformation.hProcess, 0) &lt;&gt; 0 DoEvents Loop </code></pre> http://stackoverflow.com/questions/1754457/how-do-i-intercept-dll-load-unload-events-in-a-vb6-activex-dll/1758823#1758823 1 Answer by RS Conley for How do I intercept DLL load/unload events in a VB6 ActiveX DLL? RS Conley 2009-11-18T20:27:41Z 2009-11-18T20:27:41Z <p>Use Sub Main as your start up object.</p> <p>Make a module like this</p> <pre><code>Option Explicit Private TerminateDetect As Terminate Public Sub Main() Set TerminateDetect = New Terminate MsgBox "Setup" End Sub </code></pre> <p>Then your terminate class looks like this</p> <pre><code>Option Explicit Private Sub Class_Terminate() MsgBox "I terminated" End Sub </code></pre> <p>A test class I made is this</p> <pre><code>Option Explicit Public Description As String Public Sub Test() MsgBox "test" End Sub </code></pre> <p>I made a form with no references like this</p> <pre><code>Option Explicit Private O As Object Private Sub Command1_Click() Set O = CreateObject("TestUnload.Dummy") O.Test End Sub Private Sub Command2_Click() Set O = Nothing End Sub </code></pre> <p>When I click on Command1 I get two message one for loading up the DLL and another for running Test. Then when I click on Command2.</p> <p>This example is rather crude so I hope you get the point.</p> <p><strong>Summary</strong> Make a TDLLManagement Class in every ActiveX you have. Put your Initialize Code in Class_Initialize and your Terminate code in Class_Terminate. Then have a Sub Main create a instance of that class and assign to a private module variable. Note if you have any GlobalMultisuse classes and directly reference the ActiveX DLL you want to do simple tests to see where the DLL loads. </p> http://stackoverflow.com/questions/1753216/mvp-pattern-interfaces-error-message-display-in-webform/1755941#1755941 0 Answer by RS Conley for MVP Pattern, Interfaces, Error Message Display in webform RS Conley 2009-11-18T13:24:28Z 2009-11-18T13:24:28Z <p>At the lowest level (for example the Utility DLL) I put the classes for error handling. One of which is a interface that forms can implement. On startup the software registers the form implementing the interface with the low level DLL. This form can be defined at the highest level (the EXE).</p> <p>When an error occurs at any level of the software the appropriate calls can be made to the error framework and if a form implemented the display error interface then a form will display at that point.</p> <p>As an aside I do this as well for status and progress messages. There is a IStatusDisplay interface and a IProgressDisplay interface. The EXE registers the forms or classes that implement these interfaces</p> http://stackoverflow.com/questions/1748860/converting-c-not-c-to-c/1749869#1749869 2 Answer by RS Conley for Converting C (not C++) to C# RS Conley 2009-11-17T16:01:46Z 2009-11-18T13:09:23Z <p>You should continue to use the DLL in .NET by creating an assembly around the Declares. That one assembly probably would go a little quicker in VB.NET than C#. Then have your new UI reference that assembly. Once you have that going then you have bought yourself time to convert the C code into .NET. You do this by initially keeping the assembly and replacing the the declares with new .NET code. Soon you will have replaced everything and can refactor it to a different design.</p> <p>The time killer is <em>breaking behavior</em>. The closer you can preserve the behavior of the original application the faster the conversion will be. Remember there nothing wrong with referencing a traditional DLL. .NET is built on many layers of APIs which ultimately drill down to the traditional DLLs that continue to be used by Windows. Again once you have the .NET UI working then you have more time to work on the core and bring everything into .NET.</p> http://stackoverflow.com/questions/1727079/is-it-practical-to-learn-and-use-visual-basic-6-as-a-2nd-year-bsit-student/1729498#1729498 1 Answer by RS Conley for Is it practical to learn and use visual basic 6 as a 2nd year BSIT student? RS Conley 2009-11-13T14:21:36Z 2009-11-13T14:21:36Z <p>VB.NET is the way to go for new projects. Learn VB6 if you have to deal with Legacy Application or one of the Microsoft Office applications that still use VBA. Even then the syntax between VB.NET and VB6 is close enough to make the transition easy. The situation is similar to the family of C langauges like C, C++, C#, Java, etc. The main issue of switching between VB6 and VB.NET is the support libraries. VB.NET has a much richer set of libraries. Once you learn VB.NET you can easily switch over to C# as the differences between the two language lie mostly in the their syntax. </p> <p>As a student you want to be exposed as many different language type as possible. Focus on picking a representative from a class rather sheer quantity. For example it would be better to learn LISP then another C like language if you already know C++ or Java. The exposure to the methods that different languages use will greatly broaden your ability to use any language.</p> <p>Finally remember there is a different between a framework and the language.Today not only there is a language to be learned but many come with a framework of useful function and classes.</p> http://stackoverflow.com/questions/1703545/dllregisterserver-entry-point-was-not-found/1709069#1709069 0 Answer by RS Conley for DllRegisterServer entry point was not found RS Conley 2009-11-10T16:06:03Z 2009-11-10T16:06:03Z <p>"DllRegisterServer entry point was not found" mean it is not a COM DLL. </p> <p>" runtime error '53': file not found: rscomclNoMsg.dll" means that the VB6 did not find the DLL in any of it's search paths. It should be placed in either System32 or the application directory. Since you already tried System32 I would try moving it into whereever the application resides. If you are running it from the IDE then it has to be were the EXE or the DLL that has the DECLARE statement resides.</p> <p>For Win32 DLL you need documentation on what functions are available and then use DECLARE to make them visible. As part of the declare statement you tell it what DLL to use. This <a href="http://msdn.microsoft.com/en-us/library/aa716201%28VS.60%29.aspx" rel="nofollow">MSDN article</a> explains what going on.</p> <p>DLL written in .NET have to be exposed through COM in order for them be visible to VB6. </p> <p>If you have the source good you can look through the various project and find out where the declares are for rscomclNoMsg. Hopefully that will tell you where to place the dll.</p> <p>More details will help refine my answer.</p> http://stackoverflow.com/questions/1676944/mvp-asp-net-framework/1680443#1680443 0 Answer by RS Conley for MVP ASP.net framework RS Conley 2009-11-05T13:06:39Z 2009-11-05T13:06:39Z <p>Martin Fowler has written quite a bit on various patterns used for Enterprise level software.</p> <p>His website is <a href="http://www.martinfowler.com/eaaDev/" rel="nofollow">here</a>. He gives several variants of MVP so you can pick the one that best suited for your situation. </p> http://stackoverflow.com/questions/1672382/vb6-authored-ocx-on-a-net-winform/1673806#1673806 1 Answer by RS Conley for VB6 authored ocx on a .NET WinForm? RS Conley 2009-11-04T13:41:18Z 2009-11-04T13:41:18Z <p>Unfortunately I only have half an answer. We use a single VB6 OCX control on a .NET Form and it works without any issues. It is not used with any other .NET or OCX control on that form. It provides a specialized view into a database.</p> http://stackoverflow.com/questions/1672305/vb6-0-how-to-bind-a-function-sub-procedure-to-external-event-as-an-event-handler/1673782#1673782 0 Answer by RS Conley for Vb6.0 How to bind a function/sub-procedure to external event as an event handler?? RS Conley 2009-11-04T13:36:08Z 2009-11-04T13:36:08Z <p>While I never handled this situation before I remembered something about a VBControlExtender object that is used when you dynamically add controls to a form.</p> <p>Poking around I found this <a href="http://techrepublic.com.com/5208-6230-0.html?forumID=10&amp;threadID=165515&amp;start=0" rel="nofollow">article</a>. Then this MSDN documention on <a href="http://msdn.microsoft.com/en-us/library/aa267210%28VS.60%29.aspx" rel="nofollow">VBControlExtender</a>.</p> <p>In particular you want to look at ObjectEvent.</p> <p>Understand there is no good way to dynamically assign methods to events like in .NET. VB6 handles events by dimensioning a variable with the WithEvents Keyword. </p> <p>However it is a variable. So while you can't change the method you can change the object the variable points too. </p> <p>If you have </p> <pre><code>Dim WithEvents X as SomeControl Dim Y as New SomeControl Dim Z as New SomeControl Private Sub X_MyEvent(ByVal MyParm as Variant) 'Do Something like display the control name End if Public Sub TestY Set X = Y End Sub Public Sub TestZ Set X = Z End Sub </code></pre> <p>If you activate the event after TestY then X_MyEvent will be handling the events for control Y, If you active the event after TestZ then the X_MyEvent will be handling the events for control Z.</p> <p>With VBControlExtender you can handle different controls generically. If you instantiating multiple controls of the same type then you have quite a bit of work to do. You can't use withevent with arrays. In that case I would create a class with events to help me handle multiple controls of the same type.</p> http://stackoverflow.com/questions/1636601/mvp-and-presenter-granularity/1637071#1637071 1 Answer by RS Conley for MVP and presenter granularity RS Conley 2009-10-28T12:49:18Z 2009-10-28T12:49:18Z <p>In my CAD-CAM system my presenters don't use user controls. User controls reside in the view which reside in a EXE assembly that implement the view interfaces the presenter use. </p> <p>If want to display a list of customers I hand it off to the view which has a DisplayCustomerList and it uses whatever combination of user controls it needs to display the customer list. If multiple views show the customer list in the same way then in the ExE/View assembly they share a user control or class for doing that. That class doesn't go outside of that assembly.</p> <p>Our software is adapted to run many different types of metal cutting machine. So we place a lot of emphasis on being able to rip off the UI and replace it with a completely different UI (corresponding to a different machine). All of these UIs reference the same set of core assemblies.</p> <p>The hierarchy looks like this</p> <p>View EXE Presenter Implementation Command Assembly - commands are executed by the presenter that modify the model Presenter Interfaces Model Assemblies</p> <p>Off to the side are loadable assemblies that define dynamic content like what file types can be loaded, reports, cutting device drivers, etc. These implement various interfaces found in the model assemblies</p> <p>One thing I do is that I don't impelment a view presenter for every dialog. If the dialog is tightly bound with a command then it is defined, created, and used along side the command class. Occasionally a group of related commands will share a dialog (File handling for example). </p> <p>The essential question I ask when using MVP is "What happens if want to completely replace the forms with something else?". The answers to that question will identify where you are too dependent on a particular user control or form engine. </p> <p>The biggest problem (and one that I haven't got a good answer for) of my setup is that current IDEs and langauges make it very easy to tie user controls to database records. It is so productive compared any other setup it tends to dominate the design. I haven't had to deal with the issue much in my CAD-CAM application so I don't have any answer other than passing the dataset to the view and let it handle it. <a href="http://www.martinfowler.com/eaaDev/" rel="nofollow">This site</a> has some patterns that may be of use in this situation. </p> http://stackoverflow.com/questions/1606378/is-there-any-reason-vb6-couldnt-be-ported-to-net/1614323#1614323 3 Answer by RS Conley for Is there any reason VB6 couldn't be ported to .Net? RS Conley 2009-10-23T15:46:41Z 2009-10-26T12:15:23Z <p>1/2 Yes and 1/2 No. A complete 100% workalike will be a fairly hard conversion as the assumptions of VB6 is built on COM. The assumptions of COM are not the same as .NET. Where you really run into problem will be emulating the VB6 IDE. </p> <p>Far easier is to write a compiler that is text compatible with Vb6. The esstential trick to remember that you can write assemblies that can adapt specific VB6 features to .NET. For example a printer object, vb6 graphics object. File Access etc, etc. There is also the issue of the wonky Form format, and you will need a converter for the FRX file. You will still have behavior issues but in theory you can minimize this in the VB6 support libraries. </p> <p>Nothing prevented Microsoft from doing this. It was the arrogance of the original .NET team that lead down the path where they had to "fix" VB6. Yes as a language VB.NET has many cool features over VB6. But then VB6 had many cool features over QuickBASIC. But with VB6 I can take QuickBASIC code and dump it into VB6 and have a reasonable chance of getting it working. Especially for modules with nothing but business logic. It is not the same going from VB6 to VB.NET. Most of the problems are caused by the change in integer from 16 bit to 32 bit. </p> <p>The lose of even minimal backwards compatibility was and still remains a problem. As Ruby, Python and other languages were ported over to .NET the arbitrary nature of the choices the original VB.NET team was exposed. </p> <p>The best solution at this point is probably a minimal approach. Now that we had several years experience with VB.NET the most problematical areas are well known.</p> <p>Some off the top of my head</p> <p>1) Introduce a OPTION INT BASE statement. By default integers will be 32-bit and longs be 64-bit. However if you use OPTION INT BASE 16. Then Integer will compile to a Int16 and Longs will Compile to a Int32. This will require also some modifications to Intellisense. So when it queries the meta the correct type for the base is reported in the tip. Understand that in the metadata everything is Int16s and Int32s. </p> <p>2) Have robust printer, screen, and vb6 graphics helper assemblies. Microsoft has a 3/4 implementation of the Printer Object. The Vb6 Graphis object is buried in there and can be extracted with .NET reflector and used separately. But there is a lot of fit and finish work that needs to be done. </p> <p>3) Have an option use the original VB6 Keywords use those helper assemblies.. The compiler will translate them into calls to the helper assembly. </p> <p>There are other concerns in database access and other different areas. Much of this can be addressed by expanding the option and keywords that VB.NET.</p> <p>Of course now there is a major divide in Microsoft Basic community. Expect a lot of static and complaints if these options are added. Probably if I was VB.NET manager I would fork the VB.NET compiler into a VB6.NET compiler to minimize this. It would depend on if these option would impact the current version of VB.NET.</p> <p>You can read more on the issues involved <a href="http://classicvb.org/" rel="nofollow">here</a>. </p> http://stackoverflow.com/questions/1595294/vb6-binary-compatibility-adding-new-events/1596857#1596857 2 Answer by RS Conley for VB6 binary compatibility - adding new Events RS Conley 2009-10-20T19:40:36Z 2009-10-20T19:40:36Z <p>The problem is that once defined a COM interface is invariant. However COM has versioning so that a older interface can be setup as compatible with a new interface.</p> <p>What Visual BASIC does behind the scene is creates a NEW version of the com interface. Update the version number, adds the new methods and setup the needed info so that the new interface can be automatically used with the older interface.</p> <p>As it pointed out it looks like that Events are not done automatically. I used Visual Studio OLE/COM Object View and see the GUID change. </p> <p>A possible solution for a hybrid VB6/.NET is a bit of pain but keeps everything clear as to when you make changes. First you need need to use the OLE/COM Object view to get the IDL of the VB6 object. Then use the MIDL compiler to generate a typelib. From now on use the typelib as your reference. </p> <p>You will have to rename the interface as it will conflict with VB6 Name. The idea is that both the .NET and the VB6 will reference the typelib and implement the interfaces. Anytime you want to update the interface you change the IDL, recompile the typelib and implement the interface for both.</p> <p>Now if this sound a bit complex and leave going WFT!? I don't blame you. But in my own conversion project I found it useful in certain circumstances when the VB6 stuff still has ongoing development but you need to use it in .NET</p> <p>Now a simplifier solution could be to identify and separate the minimum needed for two components to interoperate. Say the events and some properites. Generate the IDL for that interface. Compile a typelib and use that as the reference. I have done that as well.</p> http://stackoverflow.com/questions/1588651/wpf-c-mvc-mvp-pattern-and-user-control-code-behind/1590036#1590036 0 Answer by RS Conley for WPF C# MVC/MVP pattern and user control code-behind RS Conley 2009-10-19T17:32:27Z 2009-10-19T17:32:27Z <p>Custom Controls are there to display stuff. In that regard they are no different than a button or a drop down combo box. The trick is that don't let them handle stuff directly. They need to send stuff through the View Interface and the Presenter need to likewise interact with them through the view interface.</p> <p>Think of it this way. If you ignored MVP the custom control would interact with the model in specific ways. what you doing with MVP is taking those way and defining them with the View Interface. Yes you are adding an extra call layer but the advantage is that you thoroughly document how it interacting with the rest of the system. Plus you get the advantage of being able to rip it out and replace with something entirely different. Because all the new thing needs to do is the implement it's portion of the view interface.</p> <p>If you have a specific example I can illustrate better.</p> http://stackoverflow.com/questions/1555140/better-way-to-handle-screen-scrape-object/1579860#1579860 2 Answer by RS Conley for Better way to handle screen scrape object RS Conley 2009-10-16T19:12:37Z 2009-10-16T19:12:37Z <p>I think where the disconnect is happening is that you typically implement a view while in your get you are create the view. A typical scenario is that a form implements a view interface and then register itself (or is registered) within the application object. Then anytime you need to find out what has been entered for a person you use the various properties of the view.</p> <p>For example to find out what you entered for the first name you would go</p> <pre><code> myVariable = PersonView.FirstName(); </code></pre> <p>In your example you are pulling the STATE of the view every time you access person. Even if you just wanted the email you are pulling everything and putting it in a state variable. </p> <p>Now this if the data structure Person was part of your model. Then this could be OK. You pull the person out once when it is changed. Modify or add it to the model then everything else (reports ,etc) would be looking at the model.</p> <p>However your question suggests that that it is being hit over and over again. Which leads me to think that Person is being accessed directly from the view for a variety of reasons. In this case I would put properties on the view allowing access to the individual members. </p> <p>Or I would refactor the design so that everything uses the model for the data with the model being updated everytime the view changes. I suspect you probably don't want to do this at this point and hence the best way is to use individual properties.</p> http://stackoverflow.com/questions/1566032/mvp-user-controls-hiding-the-iview-interface-from-consumers/1572058#1572058 0 Answer by RS Conley for MVP - User Controls - Hiding the IView interface from consumers? RS Conley 2009-10-15T12:28:09Z 2009-10-15T12:28:09Z <p>I always consider User Controls tied to the Views not be a separate view themselves. They should be able to access any Presenter that the view they are tied can access but are not in themselves views. Rather they are part of a view and can be replace or altered without concern to the present if the UI changes. </p> <p>In your specific example I would have the User control not implement any view interface. Instead I would just have the User Control Assembly reference the Presenter Assembly and have properties to allow access to the View Object that it is a part of.</p> http://stackoverflow.com/questions/1554662/how-would-you-work-with-mdi-ness-in-an-application-that-wants-to-use-the-mvp-pa/1572009#1572009 1 Answer by RS Conley for How would you work with "MDI-ness" in an application that wants to use the MVP pattern? RS Conley 2009-10-15T12:18:25Z 2009-10-15T12:18:25Z <p>The way I would handle it have a funtion off of the MainPresenter interface that allows me to create a FooPresenter (as well as a Foo2Presenter, etc). THe MainPresenter has all the information inside of it to properly setup a child form of the MDI parent. Hence why it makes sense to have it there. </p> <p>An alternative is to have a AppPresenters class that has the MainPresenter and the FooPresenter as properties or functions. Here the AppPresenters hold the presenter classes as well takes on the responsibility for tieing the forms together to have a proper MDI application. The implication of tihs approach is the fact the application is a master/parent form with a bunch of child forms is not reflected in the design of your interfaces. </p> <p>The differences between the two approaches is minimal in my opinion. Both could be adapted to a different style of UI readily. So go which on makes better sense for you and your applicaiton.</p> http://stackoverflow.com/questions/970837/what-is-this-written-in 2 What is this written in? RS Conley 2009-06-09T15:35:03Z 2009-10-06T21:24:05Z <p>I am dealing with an circa 80's era machine controller. A program is being downloaded to the operator's control panel and for the life of me I can't figure out what it is written. </p> <p>The machine is a Cybermation 700A plasma cutting machine and here is a snippet of what being download.</p> <p>Note that this is use to manage the download of cnc files into the machine it is not the motion control program itself. That I actually know how to write. It is this program that is proving to be the stumbling block.</p> <pre><code> $70=A $72=0 $73=6900 $74=150 $52=0 $53=-8.516 $84=200 $85=0 $10=0 $98=0 $71=0 $18=0 $76=.01 $93=100 $94=200 $20=22-26 gauge;$21=.032;$22=260;$23=80;$24=0 $25=18-20 gauge;$26=.033;$27=180;$28=80;$29=0 $30=14-16 gauge;$31=.035;$32=150;$33=75;$34=0 $35=10-12 gauge;$36=.043;$37=90;$38=60;$39=0 $40=3/16-1/4 plate;$41=.053;$42=30;$43=30;$44=0 $22=300 $24=50 $27=200 $29=50 $32=140 $34=50 $37=100 $39=50 $42=32 $44=50 $72=0 $73=6900 $74=150 TV127,1 $88=-s 30,300 TV20,60 TV22,5 TV23,200 TV25,6 TV40,75 TV42,5 TV43,400 TV45,6 $9=80 TV8,2500;W20,K99 TV86,1 {2 TV7,$9 &lt;1Select Plate $6=$5 Tv112,16 A &gt;1!Torch on $16 min &lt;2Enter plate number;V8,6 &gt;1Plate\:$6 &lt;2&gt;Are you cutting $20? Y;$7=$21;$8=$22;$9=$23 $71=$24;G3: &lt;2&gt;Are you cutting $25? Y;$7=$26;$8=$27;$9=$28 $71=$29;G3: &lt;2&gt;Are you cutting $30? Y;$7=$31;$8=$32;$9=$33 $71=$34;G3: &lt;2&gt;Are you cutting $35? Y;$7=$36;$8=$37;$9=$38 $71=$39;G3: &lt;2&gt;Are you cutting $40? Y;$7=$41;$8=$42;$9=$43 $71=$44;G3: G2 } {3 TV13,$71 A G70 } </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1914413/mvp-connecting-the-triads/1928373#1928373 Comment by RS Conley on MVP Connecting The Triads RS Conley 2009-12-21T13:07:40Z 2009-12-21T13:07:40Z In which case you need to alter to presenter to retrieve stuff like the what is the current customer from the view so the other pieces of the software can find out what is the selected customers. Also you want a state or status variable exposed by the presenter as to what type of view is currently loaded. The another alternative is to make the second view an observer of the first view. There is a separate interface that the tree view implement to let observers know what view is located and what is the currently selected item. http://stackoverflow.com/questions/1918415/mvp-model-view-presenter/1928341#1928341 Comment by RS Conley on MVP - Model View Presenter RS Conley 2009-12-21T13:02:25Z 2009-12-21T13:02:25Z no, what if you changed the view? There is nothing to indicate what part of the view is being used by other part of the software. So 5, 10 years from now you change it and then your software breaks. The view should only be directly referenced by the presenter. http://stackoverflow.com/questions/1908605/mvp-presenter-and-events/1909086#1909086 Comment by RS Conley on MVP Presenter and Events RS Conley 2009-12-18T14:07:03Z 2009-12-18T14:07:03Z The EventAggregator will be used as an observer in this case. It is not a good fit and when it comes to maintaining the application not as clear. The extra work you down now by implementing an explicit observer will save you time and money in the long run. The explicit observer setup will make clear your intention. http://stackoverflow.com/questions/1821540/does-anyone-know-of-a-vba-6-example-using-getlocaleinfoex Comment by RS Conley on Does anyone know of a VB(A/6) example using GetLocaleInfoEx? RS Conley 2009-11-30T20:46:56Z 2009-11-30T20:46:56Z A possible pitfall is the locale name. What your Declare look like? http://stackoverflow.com/questions/1821540/does-anyone-know-of-a-vba-6-example-using-getlocaleinfoex Comment by RS Conley on Does anyone know of a VB(A/6) example using GetLocaleInfoEx? RS Conley 2009-11-30T20:44:16Z 2009-11-30T20:44:16Z Are you using Vista? http://stackoverflow.com/questions/1790554/how-do-i-send-a-struct-from-c-to-vb6-and-from-vb6-to-c/1791077#1791077 Comment by RS Conley on How do I send a struct from C# to VB6, and from VB6 to C#? RS Conley 2009-11-25T21:13:32Z 2009-11-25T21:13:32Z I was focused on the next to last sentence &quot;what is the simplest...&quot; http://stackoverflow.com/questions/1790554/how-do-i-send-a-struct-from-c-to-vb6-and-from-vb6-to-c/1791077#1791077 Comment by RS Conley on How do I send a struct from C# to VB6, and from VB6 to C#? RS Conley 2009-11-24T19:04:36Z 2009-11-24T19:04:36Z sure but if you want to send rich data (classes and structures) you should use com. VB6 is not forgiving in this regard. http://stackoverflow.com/questions/1764613/if-i-registered-a-tlb-do-i-still-need-to-register-the-ocx-in-order-to-compile Comment by RS Conley on If I registered a TLB do I still need to register the ocx in order to compile? RS Conley 2009-11-19T16:58:17Z 2009-11-19T16:58:17Z why can't you register the OCX Files? If you can register TLB you should be able to do OCXs http://stackoverflow.com/questions/1758554/prevent-windows-from-queuing-shellexecute-requests/1758869#1758869 Comment by RS Conley on Prevent windows from queuing shellexecute requests RS Conley 2009-11-19T14:06:39Z 2009-11-19T14:06:39Z Then don't use Waitforsingleobject. I put that up there to lay out all the common options with using the Process API. Once you execute CreateProcess the other application start running and CreateProcess returns. http://stackoverflow.com/questions/1754457/how-do-i-intercept-dll-load-unload-events-in-a-vb6-activex-dll Comment by RS Conley on How do I intercept DLL load/unload events in a VB6 ActiveX DLL? RS Conley 2009-11-18T13:18:17Z 2009-11-18T13:18:17Z Do you have the source code for these VB6 ActiveX DLLs? http://stackoverflow.com/questions/1636601/mvp-and-presenter-granularity/1637071#1637071 Comment by RS Conley on MVP and presenter granularity RS Conley 2009-10-28T17:10:29Z 2009-10-28T17:10:29Z The only time I would do that if the User control or group of user controls form a complete view unto themselves. For example you have a tabbed UI and when you click on the different tab to switch between different views of the same data. In that case each tab would be a view related to the view that holds the form as a whole http://stackoverflow.com/questions/1606378/is-there-any-reason-vb6-couldnt-be-ported-to-net/1608462#1608462 Comment by RS Conley on Is there any reason VB6 couldn't be ported to .Net? RS Conley 2009-10-26T12:24:40Z 2009-10-26T12:24:40Z A crufty code base doesn't change the fact it is a lame excuse for the breaking changes they introduced. What was about the original code base that they had to change the definition of the text string INTEGER to mean a Int32 instead of continuing to treat it like a Int16. It is because the team developing VB.NET had no respect for it's history and treated it like a C style language where the base of integer changes from compiler to compiler instead of the BASIC way where Integer has always been 16 bit even on 8 bit CPUs. http://stackoverflow.com/questions/1606378/is-there-any-reason-vb6-couldnt-be-ported-to-net/1606464#1606464 Comment by RS Conley on Is there any reason VB6 couldn't be ported to .Net? RS Conley 2009-10-23T15:56:59Z 2009-10-23T15:56:59Z It screws with behavior yes because if you have unit testing or any other type of testing you can identify those issues. A bigger problem is that you have to rewrite your code to get there in the first place. That could have been made a lot easier than it was. http://stackoverflow.com/questions/1606378/is-there-any-reason-vb6-couldnt-be-ported-to-net/1606779#1606779 Comment by RS Conley on Is there any reason VB6 couldn't be ported to .Net? RS Conley 2009-10-23T15:50:27Z 2009-10-23T15:50:27Z That probably the best approach to have with the current situation. Identify the biggest problems and writing helper assemblies to either make translation easier or to preserve behavior (hopefully both). http://stackoverflow.com/questions/1606378/is-there-any-reason-vb6-couldnt-be-ported-to-net/1608462#1608462 Comment by RS Conley on Is there any reason VB6 couldn't be ported to .Net? RS Conley 2009-10-23T15:49:12Z 2009-10-23T15:49:12Z Paul Vick is completely full of shit on the issue. He was criticized heavily on it and has remained defensive ever since. For example his defense on why the keyword Integer just had to compile to a Int32 instead of a Int16. So he may have a point on the fact it was complicated to port over the VB6 IDE that is only half of the issues people have.