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
myGui := Gui()
ogcListBoxThing := myGui.Add("ListBox", "vThing", ["Normal", "High", "Low"])
ogcListBoxThing.OnEvent("DoubleClick", Thing.Bind("DoubleClick"))
myGui.Show()
return
Thing(A_GuiEvent := "", GuiCtrlObj := "", Info := "", *)
{ ; V1toV2: Added bracketglobal ; V1toV2: Made function global
Thing := ogcListBoxThing.Text
MsgBox(Thing)
return
} ; V1toV2: Added bracket in the end
V2 (Expected):
myGui := Gui()
ogcListBoxThing := myGui.Add("ListBox", "vThing", ["Normal", "High", "Low"])
ogcListBoxThing.OnEvent("DoubleClick", LblThing.Bind("DoubleClick"))
myGui.Show()
return
LblThing(A_GuiEvent := "", GuiCtrlObj := "", Info := "", *)
{ ; V1toV2: Added bracketglobal ; V1toV2: Made function global
Thing := ogcListBoxThing.Text
MsgBox(Thing)
return
} ; V1toV2: Added bracket in the end
Since goto calls are already updated, it would be easiest to update the label (func) name
This is the last issue before Process_ex3 is converting correctly
The text was updated successfully, but these errors were encountered:
V1:
V2 (Converted):
V2 (Expected):
Since goto calls are already updated, it would be easiest to update the label (func) name
This is the last issue before
Process_ex3
is converting correctlyThe text was updated successfully, but these errors were encountered: