Hello, i have updated my library. The DLL with an example is included in the zip-file (fgControls_Example.zip) Ciao, Filippo
Hi Filippo, many thanks for the update of your library! Maybe it would be uselful to introduce a version number of your library (like agraham does for his countless and brilliant dll's :sign0060 so we can always be sure to use the latest update. specci48
I've been trying to make this Dll to work on the device, Haven't tried yet on the desktop.... Lab - fgControl Label Object So I use the code: Lab.New1("Label1",1) And i get a NullReferenceException.... What's Wrong? isn't this dll device compatible? EDIT: I finally understood the way this dll works... I was under the impression that it created NEW labels and textboxs...BUT it only changes some attributes of the ALREADY EXISTING ... Wich is not very well documented in the dll help file...
Hallo Cableguy, I'm sorry, that the DLL Help isn't so good documented. It's not because I will not write a good documentation, it's because I cannot english.:sign0013: Ciao, Filippo
Hello, i have updated my library Version 1.074. The DLL with an example is included in the zip-file (fgControls_Example.zip) Ciao, Filippo
Hello, i have updated my library Version 1.075. The DLL with an example is included in the zip-file (fgControls_Example.zip) Ciao, Filippo
Could somebody please post a quick example for using the BackColor option of this dll? The user manual mentions nothing about it and I keep getting an error message "Control does not support transparent background colors" when I do the following: Code: fgtextbox.BackColor = 222,254,251 Please Help
multiple fgcontrols is it possible to create a fg object (fglabel for example), at runtime? i need over 30 objets. Thank you.
Hallo pochero, this is very simple: HTML: AddObject("labelnew","fgLabel") labelnew.New1("label1") labelnew.TextAlignment=labelnew.alCenter Ciao, Filippo
FGLabel Not Transparent on GameWindow I need a transparent label on a game window that has sprites... the label appears but is not transparent My code looks like this... any help would be appreciated gw.New1("BBitConfig",0,0,BBitConfig.Width,BBitConfig.Height) gw.DrawBackgroundImage(AppPath & bg) gw.SetTransparentColor1(cBlack) myMonthDay.New1("dateMonthDay") myWeekDay.New1("dateWeekday") myMonthDay.Transparent=True myWeekDay.Transparent=True myWeekDay.TextAlignment=myWeekDay.alLeft myMonthDay.TextAlignment=myMonthDay.alLeft thanks