Formlib

:confused:Hello.
Not sure if it is a bug
flb.MinimizeBox - returns "Missing parameter" error.
And why
flb.SetFontStyle doesn't work with Form?
flb.SetFontStyle("Form1",False,True,True,False)
 
Thank you Erel
flb.MinimizeBox = True it dawned on me when I was on my way to the country today:)

flb.SetFontStyle("Form1",False,True,True,False)
flb.SetFontStyle("Button1",False,True,True,False)
I was expecting the "Form1" text to be changed the same way as "Button1"
 

Attachments

  • TxtStyle.zip
    4.6 KB · Views: 244

ashrafidkaidek

Member
Licensed User
Longtime User
FormLib error

I have tried to use the Formlib library, but for some reason I’m getting an error when running the app (no errors during compiling), I don’t know what’s wrong :BangHead:, in fact to make things simple, all what I have is an app with one form (From1), and here is the code behind this form:

The code is:
=============================================
Sub App_Start

Form1.Show
frm.New1("Form1",B4PObject(1))
frm.FullScreen(cPPC) 'On the device it will remove the title bar too

End Sub
=============================================


---------------------------------------------------------------------------------
when running the app (exe) in the device the error I'm receiving is:
An error occurred on sub
__main_app_start.

NullReferenceException
----------------------------------------------------------------------------------

Please note that I’m using Basic4PPC V6.5

Any help in this regard will be truly appreciated

Thank you all
 
Last edited:
Top