View Single Post
  #2 (permalink)  
Old 01-27-2008, 04:47 PM
agraham's Avatar
agraham agraham is online now
Basic4ppc Expert
 
Join Date: Jul 2007
Location: Cheshire, UK
Posts: 1,700
Awards Showcase
Beta Tester Forum Contributer 
Total Awards: 2
Default

Quote:
Originally Posted by Cableguy View Post
Since the v1.2 Dll has no help file,
There IS an updated help file in the version 1.2 zip at post #20 here Build proper desktop apps in B4PPC with this awesome Forms library However the only difference over version 1 is that the resize event was added.

Code:
	FormEx1.MaximumHeight = 600
	FormEx1.MaximumWidth = 600
	FormEx1.MinimumHeight = 300
	FormEx1.MinimumWidth = 400
	FormEx1.HasMaximizeBox = false
	FormEx1.HasMinimizeBox = false
You will find these lines in App_Start in the "Build FormEx1" region of the demo app. Comment them all out and the defaults give you a fully resizable window with Maximize and Minimize boxes.
Reply With Quote