CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: run time error

  1. #1
    Guest

    run time error

    I made a offline executable webbrowser it works great until I press the minimize button on the main form. I get a runtime error #380 (invalid property value). Can anyone lead me in the right direction to correct this?

    Thanks
    James
    [email protected]


  2. #2
    Join Date
    Jan 2000
    Location
    CA
    Posts
    52

    Re: run time error

    I think that I've seen this error occur when I have specified code to adjust the size and location of components that are located on the form. I usually do this in my Form_Resize() event. If you do the same, you should include a quick If then Else routine to bypass the form adjustment code when you are minimizing the window (WindowState = 1).


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured