MarkJ

4,526
Reputation
505 views

Registered User

Name MarkJ
Member for 1 year
Seen yesterday
Website
Location Cambridge UK
Age 38

Developer in environmental/scientific fields.

  • My world is vertical market shrinkwrap. Do you know your world?
  • VB6, VB.NET, C, Fortran, Perl, PHP...
  • User interfaces, graphics, data manipulation, numerical models.
  • Database stuff with Access/MySQL/SQL Server.
  • Physics degree, little formal training in development

In my young days I used to write things like compilers and chess programs for fun - but that was last millenium :)

1d
comment how do you parse a string in vb6?
+1 worth considering. Here's a link regular-expressions.info/vb.html
1d
comment “Expected:=” compile error in vb6 while adding recordset to SQL Server 2005 database
You are not getting answers because you've posted loads of code and 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.
1d
revised Making a C# kill event for a vb6 app?
another link
1d
comment C# Best approach for a responsive UI during SQL query using COM interop
If you want to solve it in VB6, I would try creating an ActiveX exe to wrap the DLL instead. Like the Microsoft coffee sample msdn.microsoft.com/en-us/library/…
2d
comment C# Best approach for a responsive UI during SQL query using COM interop
Did you try using BackgroundWorker? What you've done sounds like a reimplementation of BackgroundWorker. Try AngryHacker's answer stackoverflow.com/questions/1805514/…
2d
comment C# Best approach for a responsive UI during SQL query using COM interop
+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?
2d
awarded  Nice Answer
2d
answered VB6: enabling mousewheel for controls
2d
comment Why? Redeclare things to implement interfaces?! in VB.NET
If it were a sub you could just implement it with a different name: Private Sub WhateverNameYouLike Implements IVisibleChanged.VisibleChanged I don't know about events though. Anyone else?
2d
comment Why? Redeclare things to implement interfaces?! in VB.NET
A further advantage is that the same function can implement multiple elements, possibly from different interfaces.
2d
comment Why? Redeclare things to implement interfaces?! in VB.NET
@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#.
2d
comment Why? Redeclare things to implement interfaces?! in VB.NET
... 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?
2d
comment VB.net Overridable property not same as c# Virtual property?
This is clearly the correct answer, but why doesn't the compiler give an error?
Nov
26
comment Does anyone know of a way to view all compiler warnings for a VB.NET project?
Resharper only does code analysis for C# I believe, not VB
Nov
26
comment XML Deserialization Not Setting Class Values
This is nothing to do with the question, but you don't need the <Serializable()> attribute for System.Xml.Serialization
Nov
25
comment Getting COM Exception 80040154 on different machine
+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.
Nov
25
comment how do you parse a string in vb6?
Be 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.
Nov
25
comment how do you parse a string in vb6?
Be 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.
Nov
25
accepted does anyone know a good mapinfo forum?
Nov
25
answered does anyone know a good mapinfo forum?
Nov
25
comment How do I send a struct from C# to VB6, and from VB6 to C#?
There's an easier and more "objecty" way to do the VB6 subclassing visualstudiomagazine.com/articles/2009/…
Nov
25
comment How do I send a struct from C# to VB6, and from VB6 to C#?
The simplest solution is to use COM.
Nov
25
comment How do I send/receive windows messages between VB6 and c#?
+1. There's a more "objecty" way to do the VB6 subclassing though visualstudiomagazine.com/articles/2009/…
Nov
24
comment What differentiates software engineering from any other engineering discipline?
If your virtual world is going to be useful to anyone, you probably have to consider cost and speed. That will be limited by the physical characteristics of the disks, processors, memory etc.
Nov
24
revised Recommended Books for Software Engineering
deleted 30 characters in body
Nov
24
comment Recommended Books for Software Engineering
It's true there's lots of consultant-ware. But please tell us how is software fundamentally not like engineering? My father was an aircraft design engineer, and his experiences sound exactly like designing software. I agree software isn't like manufacturing.
Nov
24
comment Recommended Books for Software Engineering
Innate talent is hugely important, but you can improve yourself by studying and practising.
Nov
24
answered Recommended Books for Software Engineering
Nov
24
comment Recommended Books for Software Engineering
+1 for SWEBOK, if only because Steve McConnell was one of the associate editors.
Nov
24
comment How do I send a struct from C# to VB6, and from VB6 to C#?
@Cheeso - no, you can't use regular "win32 pinvoke" to communicate with VB6, you have to use COM.
Nov
24
comment Win32.: How to scrape HTML without regular expressions?
Question also says "loose html" which means XML parser is not acceptable
Nov
24
comment Win32.: How to scrape HTML without regular expressions?
+1 You've already specified that you need to accept badly formed HTML. Other possible assumptions you could specify. Solution should be as resistant as possible to changes in the structure of the page being scraped. Also specify what languages are acceptable and are .NET/COM components acceptable?
Nov
24
comment Win32.: How to scrape HTML without regular expressions?
I think we're looking for specific recommendations of specific parsers and tidiers.
Nov
24
comment Win32.: How to scrape HTML without regular expressions?
Question says native Win32, which is 32-bit Windows, and doesn't specify a language
Nov
24
comment Why don’t people just stop developing sites to cater to IE6?
You will be able to do a better job for your customers if you understand why they insist on IE6 support. They presumably pay the money that pays your salary: the better you know their needs, the better you can meet them, and then they will stick with you rather than some other contractor (which might lose you your job).
Nov
24
answered How to Use OpenOffice.org Spell Checker in My App (VB6)
Nov
24
comment Best way to resize form/controls according to resolution?
No, it's better to use My.Computer.Screen.WorkingArea. WorkingArea excludes the taskbars, docked toolbars, etc. which will be in front of your application. msdn.microsoft.com/en-us/library/…
Nov
20
comment Equivalent of the php fmod in C#
"You will always have msvcrt.dll". Anyone heard of Mono? Silverlight?
Nov
20
revised Any cheap or free IDE’s out there for VB6 programming?
added 235 characters in body
Nov
19
answered Any cheap or free IDE’s out there for VB6 programming?
Nov
19
answered Prevent windows from queuing shellexecute requests
Nov
19
revised What constitutes beautiful code?
Link to lippert
Nov
19
revised Extend Collections Class VBA
more links
Nov
19
answered Extend Collections Class VBA
Nov
19
revised How do I intercept DLL load/unload events in a VB6 ActiveX DLL?
doesn't work for COM dll
Nov
18
answered How do I intercept DLL load/unload events in a VB6 ActiveX DLL?
Nov
17
revised Converting C (not C++) to C#
spelling, tag
Nov
17
answered Converting C (not C++) to C#
Nov
17
answered Calling web service from c++ v6
Nov
17
revised Compiling the software problem
linkage