You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When debugging using the Delphivcl library, stop in the click event of the control, then switch to the variables panel, click on the globals node, and a read address error will pop up, as shown in the figure. But debugging non delphivcl py files is normal.
The pyscripter version is 4.3.4.0 x64. Here is the example code, thanks :)
self.lblHello = Label(self) # For example, breakpoints here, Then click on globals in the variable panel
self.lblHello.SetProps(Parent=self,
Caption="Hello DelphiVCL for Python", Color=clRed)
self.lblHello.SetBounds(10, 10, 300, 24)
When debugging using the Delphivcl library, stop in the click event of the control, then switch to the variables panel, click on the globals node, and a read address error will pop up, as shown in the figure. But debugging non delphivcl py files is normal.
The pyscripter version is 4.3.4.0 x64. Here is the example code, thanks :)
from delphivcl import *
class MainForm(Form):
def init(self, owner):
self.Caption = "A VCL Form..."
self.SetBounds(10, 10, 500, 400)
self.Position = "poScreenCenter"
def main():
Application.Initialize()
Application.Title = "Hello Python"
Main = MainForm(Application)
Main.Show()
FreeConsole()
Application.Run()
Main.Destroy()
main()
The text was updated successfully, but these errors were encountered: