]> git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/wxPIA_book/Chapter-09/startup_tip.py
fixed wxVsnprintf() to write as much as it can if the output buffer is too short
[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