4,907 Posted Topics
Re: You could also download SQLiteSpy (free) from [url]http://www.softpedia.com/progDownload/SQLiteSpy-Download-107386.html[/url] It's a nice,small, robust SQL implementation | |
Re: Rather than trying to determine what the program is supposed to do by reading the code, could you please do your homework and add a few comments to the code as well as a summary of what the program is supposed to do? | |
Re: My favourite "working" language has to be Python, even though I am relatively new to it. I spent the last ten years before retirement writing glue code in vbScript - mostly pumping data, reformatting data, fetching and storing data, system maintenance and SQL maintenance. All of which would have been … | |
Re: Be willing to share what you have learned when asked by others. Some people think that by hoarding knowledge they make themselves more valuable. An employee who is willing to raise the skills of his fellow employees is the valuable one. | |
Re: I suggest you get a copy of the following. It contains detailed algorithms and instructions on creating and solving Sudoku puzzles. It uses VB 2005 as a base language. Programming Sudoku Copyright © 2006 by Wei-Meng Lee ISBN-13 (pbk): 978-1-59059-662-3 ISBN-10 (pbk): 1-59059-662-5 | |
Can someone please fill in the missing line of code in OnPageChange? I have a notebook control and on a page change event, I want to retrieve the label of the tab that was just selected. GetLabel and GetLabelText both return '' [CODE] import wx import wx.lib.mixins.inspection class Frame(wx.Frame): def … | |
Re: The following function will return true if the given file is <= numsecs old. Just convert 3 hours to seconds and pass as an argument. [CODE] import os import time def newFile(file,numsecs): if time.time() - os.path.getctime(file) <= numsecs: return True else: return False [/CODE] |
The End.