how can I make “cases” for the following code:
win32api.MessageBox(None,
"This Program Will do THIS:\n"
"blablabla",
"programtitler",
win32con.MB_OKCANCEL | win32con.MB_ICONQUESTION)
for example
if select ok, do THIS, if select cancel, do THAT.
Should be something like this. (C#)
Not versed in python, but you should be able to just use if statements instead of a switch, like so: