We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import os from delphifmx import * class FormMain(Form): def __init__(self, owner): self.PaintBox = None self.LabelLineCount = None self.Panel = None self.HueTrackBarLinesColor = None self.HueTrackBarPointsColor = None self.TrackBarStartFadeDistance = None self.Label2 = None self.Label3 = None self.Label4 = None self.TimerAnimate = None self.StyleBook = None self.LoadProps(os.path.join(os.path.dirname(os.path.abspath(__file__)), "UnitMain.pyfmx")) def FormCreate(self, Sender): pass def PaintBoxMouseUp(self, Sender, Button, Shift, X, Y): pass def PaintBoxPaint(self, Sender, Canvas): pass def TimerAnimateTimer(self, Sender): pass def main(): Application.Initialize() Application.Title = 'NetEffect' Application.MainForm = FormMain(Application) Application.MainForm.Show() Application.Run() Application.MainForm.Destroy() if __name__ == '__main__': main()
UnitMain.pyfmx.txt
gives
The text was updated successfully, but these errors were encountered:
Hello @rtyusdfg,
I'm fixing it and building a new release.
Sorry, something went wrong.
lmbelo
No branches or pull requests
UnitMain.pyfmx.txt
gives
The text was updated successfully, but these errors were encountered: