Recordset .value property

Value is the default property of the Field object, so in VB6 there is no difference between rs(“bookingdate”) and rs(“bookingdate”).value when used without Set. I personally prefer not using default properties that don’t take parameters. It makes the code less confusing IMO. In VB.NET the default property must have a parameter, so this situation does … Read more

Is there a Visual Basic 6 decompiler? [closed]

For the final, compiled code of your application, the short answer is “no”. Different tools are able to extract different information from the code (e.g. the forms setups) and there are P code decompilers (see Edgar’s excellent link for such tools). However, up to this day, there is no decompiler for native code. I’m not … Read more