Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
0 answers
67 views

I'm exploring the idea of creating integrations tests for my FMX app. Ideally I'd be able to execute these tests for multiple platforms (Windows, Android, iOS, macOS), but for now I'm just trying to ...
bas's user avatar
  • 15.2k
0 votes
1 answer
74 views

How do I create a Horizontal Divider Line as can be seen in the screenshot above the buttons: How can this be accomplished in an FMX GUI App for Python?
Shaun Roselt's user avatar
  • 4,577
0 votes
1 answer
98 views

I've made a Form with a TabControl and Four TabItem tabs on the TabControl. By default, the first tab is always the active tab: self.TabControl1 = TabControl(self) self.TabControl1.Parent = self self....
Shaun Roselt's user avatar
  • 4,577
0 votes
1 answer
58 views

I'm making a Python FMX GUI App and I basically want three tabs on it like this: I tried doing this: self.TabControl1 = TabControl(self) self.TabControl1.Parent = self self.TabControl1.Align = "...
Shaun Roselt's user avatar
  • 4,577
0 votes
2 answers
60 views

I've created an FMX GUI App and I have several components on the form. I'd like to change the default Cursor for them, but I'm not sure how. I've tried doing the following code to change the Cursor on ...
Shaun Roselt's user avatar
  • 4,577
0 votes
1 answer
85 views

I have a Python FMX GUI App with an Editcontrol that I want to only accept integer values with. In the past, I've done this kind of validation by overloading the KeyPress event and just removing ...
Shaun Roselt's user avatar
  • 4,577
-1 votes
1 answer
48 views

I made an Edit on a Form using the DelphiFMX Python Library, but how do I make an Edit that is read-only? The user should be able to read text in the Edit, but not be able to enter their own text. ...
Shaun Roselt's user avatar
  • 4,577
0 votes
1 answer
35 views

I've made a simple Hello World! app in the DelphiFMX GUI Library for Python. "Hello World!" is shown on a Label on the Form as can be seen below with my code and screenshot: from delphifmx ...
Shaun Roselt's user avatar
  • 4,577
-2 votes
1 answer
84 views

I've got the following Python code to make the FMX GUI Form, but I'm trying to make the code shorter if possible. What is the least amount of code that is required to make only a Form and show it. ...
Shaun Roselt's user avatar
  • 4,577
0 votes
1 answer
35 views

I have a DelphiFMX GUI App with a couple of components created on a Form: self.imgDirt = Image(self) self.btnLoad = Button(self) self.btnSave = Button(self) self.memDirt = Memo(self) self.lblTitle = ...
Shaun Roselt's user avatar
  • 4,577
0 votes
1 answer
407 views

I've made a Form with an Image using the DelphiFMX GUI Library for Python, but what I want now is a right-click context menu on the image. When I right-click on the image, then it should bring up a ...
Shaun Roselt's user avatar
  • 4,577
0 votes
1 answer
38 views

Is there a built-in function for closing the app via code? How would I close the app via code instead of clicking on the closing button in the title bar? I'm using DelphiFMX GUI Library for Python
Shaun Roselt's user avatar
  • 4,577
0 votes
1 answer
59 views

I've made a Form using the DelphiFMX GUI Library for Python and it's working perfectly fine, but I want to set a minimum and maximum size for the Form to make sure the window can't resize below or ...
Shaun Roselt's user avatar
  • 4,577
0 votes
1 answer
79 views

I have made a Form with an Edit component using the DelphiFMX GUI Library for Python and I'm trying to add a placeholder text to the Edit component, but I'm not sure how. I've tried doing self.myEdit....
Shaun Roselt's user avatar
  • 4,577
1 vote
2 answers
238 views

I've built a simple Form using the DelphiFMX GUI Library for Python. The Form has a MouseMove event attached to it. What I basically want is the X and Y coordinates of the mouse on the Form when you ...
Shaun Roselt's user avatar
  • 4,577

15 30 50 per page