Visual basic has more controls, it looks better, and the intellisense has like 50 more items to choose from. The type of coding is way easier too, someone that doesn't know about coding at all could write a simple macro.
It isn't, except for the (Name) property! It is just that the default for vb6 is ShockwaveFlash.
VB6 is a more recent and more advanced version of visual basic.
A .vb6 file is visual basic 6 source code, sometimes with it are .frm files that you would need. A .dmg is a Macintosh binary. you would have to find a program to compile the vb6 code to a Macintosh binary.
vbNewLine
Please refer the following link, there you can find useful information about differences between VB6 and VB .NET
thanks
use vb6
you simply cant, unless you know how to upload exe's to the internet.
If checkbox1.checked = true then If checkbox2.checked = true then Msgbox("Hello") End if End if
This may suprise you but visual basic 2003 was realeased a few years after vb6 vb6 I think was in 1998 and 2003 obviously in 2003
VB6 code is directly compiled by VB6 compiler into native code. However C# code is targeted for CLR and goes through two level of compilattion. It is first compiled into MSIL and then JIT compiled to native code. This ensures interoperability among .NET based lanuages and hence language independence for them.
The function is Sqr() in VB6 and Math.Sqr() in .NET.