Menu

#5 Option dialog error in 1.2.37

closed-fixed
nobody
None
5
2002-05-30
2002-03-29
Kang Hyun
No

This project doesn't have the latest code in CVS.
So I can't upload patch.

In 1.2.37, if I click [Options...] menu, I get "5
rumtime error".

If I update the code in Sub lstCategories_Click in
frmOptions.frm, Option dialog appears.

227c227
< Dim url As String
---
> Dim url

And I have a question. I use vbdox for asp.
But, I got error when using vbdox for asp.
If I comment out following line in Sub Class_Initialize
(), it works well.

< p.lineCommentChar = vbNullString
---
> ' p.lineCommentChar = vbNullString

Is it all right?

Thanks for your great job.

Discussion

  • Kang Hyun

    Kang Hyun - 2002-03-30
    • summary: In 1.2.37 option dialog error --> Option dialog error in 1.2.37
     
  • Nobody/Anonymous

    Logged In: NO

    I'm not sure whether the Windows 95/98/ME or the IE version
    is problematic. There are no problems on Win2K with IE6,
    but on WinME/IE 5.5.

    About the second: It's not correct to leave the comment
    char to the default ('). This may lead to skipping some
    valid HTML lines.
    For example:
    <h1>Only this part will be visible. ' The rest will be
    skipped <script ...

     
  • Kang Hyun

    Kang Hyun - 2002-04-10

    Logged In: YES
    user_id=429845

    It might the problem of IE version. I use Win2K/IE 5.5.

    And about the second.
    clsFilterASP can not process following asp files.

    <-------- Start of ASP file ------->
    <%
    ''
    ' Test function
    ' @param MyVal My value
    ' @return boolean value
    Function Test(MyVal)
    Some code........
    End Function
    %>
    <-------- End of ASP file ------->

    clsFilterASP treats @param and @return as the directive
    like <%language=VBSCRIPT%>. So I change the clsFilterASP as
    followed, it works:

    166a167
    > p.lineCommentChar = "'"
    205a207,209
    > If Not script Then
    > p.lineCommentChar = vbNullString
    > End If

    Thanks again.

     
  • Mihayl Stamenov

    Mihayl Stamenov - 2002-05-30
    • status: open --> closed-fixed