4,907 Posted Topics

Member Avatar for jingo1126

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

Member Avatar for Reverend Jim
0
110
Member Avatar for Roelof Wobben

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?

Member Avatar for Reverend Jim
0
125
Member Avatar for progcomputeach

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 …

Member Avatar for MeSam0804
0
152
Member Avatar for progcomputeach

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.

Member Avatar for Rashakil Fol
0
155
Member Avatar for jorgmen

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

Member Avatar for Reverend Jim
0
269
Member Avatar for Reverend Jim

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 …

Member Avatar for Reverend Jim
0
1K
Member Avatar for PythonNewbie2

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]

Member Avatar for Reverend Jim
0
289

The End.