]> git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/wxPIA_book/Chapter-09/startup_tip.py
allow the UTF8 build to treat C locale as UTF8, too, it's a 7bit subset of it, so...
[wxWidgets.git] / wxPython / samples / wxPIA_book / Chapter-09 / startup_tip.py
1 import wx
2
3 if __name__ == "__main__":
4 app = wx.PySimpleApp()
5 provider = wx.CreateFileTipProvider("tips.txt", 0)
6 wx.ShowTip(None, provider, True)
7
8