Hi, I had a working program in 6, then converted it to .Net and its riddled with problems. the following occured:
<vb>
public String strstandard
Public strstandard As String
Dim strstandard As String
</vb>
3 different ways of setting it, all returned an error."Statament is not valid in a namespace" how do i sort that out?
<vb>
Public Filesystemobject fso
</vb>
says an end of statement is expected, it wasnt expected in VB6.
<vb>
Public Sub SetFilePaths()
</vb>
every sub in the program says "Statament is not valid in a namespace". what the hell does that even mean?
<vb>
public String strstandard
Public strstandard As String
Dim strstandard As String
</vb>
3 different ways of setting it, all returned an error."Statament is not valid in a namespace" how do i sort that out?
<vb>
Public Filesystemobject fso
</vb>
says an end of statement is expected, it wasnt expected in VB6.
<vb>
Public Sub SetFilePaths()
</vb>
every sub in the program says "Statament is not valid in a namespace". what the hell does that even mean?