up vote 0 down vote favorite
share [g+] share [fb]

Using VB 6

While running the Project, we cannot able to extend the form.

In run time, we put the mouse pointer in the Project form Layout border, it showing <-->.

It should not show to extend the form in the run time.

Am New to VB 6, How to write a code or set a condition?

Need VB 6 help?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You have to change the BorderStyle property of your form from Sizable (default) to anyone of the fixed variations (for instance Fixed Single).

Here's a screenshot of the property that controls this behaviour:

alt text

link|improve this answer
+1 Here is a link to the VB6 manual topic on BorderStyle msdn.microsoft.com/en-us/library/aa245047(VS.60).aspx – MarkJ Aug 11 '09 at 8:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.