• Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in USB drive path question

    I don't believe so although I have little experience with Android Studio. You could set up a batch file on the USB drive that would set an environment variable before …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How to Write a Sudoku GUI in Python/wxPython

    Yes. This is a Python thread.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Is SEO in danger of becoming extinct?

    I wish all the pointless threads on SEO, BACKLINKS, etc. would go extinct.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How to Write a Sudoku GUI in Python/wxPython

    you might want to try [wxGlade](https://sourceforge.net/projects/wxglade/) for prototyping. I'm also having a look at [wxFormBuilder](https://github.com/wxFormBuilder/wxFormBuilder) to see how it stacks up.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How to Write a Sudoku GUI in Python/wxPython

    Once you have installed wxPython you can run the included wxDemo appand have a look at the included LED numeric control. ![2019-08-09_145855.jpg](/attachments/large/3/4431c5d9a240aa48d927ff278d4a414a.jpg)
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited How to Write a Sudoku GUI in Python/wxPython

    Python-wxPython Tutorial This tutorial will take you through the basics of wxPython. ##Introduction: Let's face it. I am a dinosaur. I got my computer science degree in the mid 70s. …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited How to Write a Sudoku GUI in Python/wxPython

    Python-wxPython Tutorial This tutorial will take you through the basics of wxPython. ##Introduction: Let's face it. I am a dinosaur. I got my computer science degree in the mid 70s. …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Where do I start learning databases?

    If you google it you will find a link on Amazon. If you want to just download it then we don't help you with that here. You can start with …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Where do I start learning databases?

    I don't know your current skill set, but I found Joe Cielko's SQL for Smarties an excellent book.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How to Write a Sudoku GUI in Python/wxPython

    Late addition - it's always nice to give the user a little help. In the Controls class `__init__` you can add self.buttons['Solve' ].SetToolTip("Click to begin solving") self.buttons['Undo' ].SetToolTip("Click to undo …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited How to Write a Sudoku GUI in Python/wxPython

    Python-wxPython Tutorial This tutorial will take you through the basics of wxPython. ##Introduction: Let's face it. I am a dinosaur. I got my computer science degree in the mid 70s. …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Created How to Write a Sudoku GUI in Python/wxPython

    Python-wxPython Tutorial This tutorial will take you through the basics of wxPython. ##Introduction: Let's face it. I am a dinosaur. I got my computer science degree in the mid 70s. …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Marked Solved Status for Problem with wxPython and GridSizer

    I have been wrestling with this for two days now and getting nowhere. Something is broken, either the GridSizer control or me. I'm hoping it's me and someone can show …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Problem with wxPython and GridSizer

    Simple solution import wx import wx.lib.mixins.inspection RPAD = (wx.TOP , 0, wx.BOTTOM) CPAD = (wx.LEFT, 0, wx.RIGHT) PANEBORDER = 15 TILEBORDER = 10 class App(wx.App): def OnInit(self): self.frame = Frame() …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Hiii Everyone here

    Welcome to Daniweb. I am also learning Python but for my own enjoyment (and not for anything web related). I'm hoping to pick it up quickly enough so that I …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Which layer should we start with when building an application?

    I strongly recommend starting with the user interface. In my experience, it doesn't matter, from the user's perspective, what's under the hood if the part the user sees is confusing …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Interesting behavior using '__base__' as a __slots__ string

    All you are doing is setting a hidden propertyt to a list of one string. The fact that the string has the value '__base__' is of no consequence. Set it …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited executereader error

    hi, I have a vb program that wants to retrieve data from MySQL dbase. this code is working fine : Dim vDATE As String vDATE = mDATE.ToString("yyyy/MM/dd", System.Globalization.CultureInfo.InvariantCulture) Dim connstring …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Convert pseudocode to python

    1. That's not pseudocode. 1. I don't take orders.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Gave Reputation to rproffitt in Convert pseudocode to python

    What is geche()?
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in What is the best game in 2018

    Personally I find that an opinion, no matter who gives it, is pretty nuch worthless without something to back it up.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Gave Reputation to JamesCherrill in how to remove from a list.

    If the deck is shuffled then it makes no difference which card you remove, so why not just remove the last one? (May make no difference in Python, but for …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Is it realistic to pursue a career in programming?

    Unfortunately, in most cases, Industry expects that age also comes with experience. That's why people "of a certain age" who are trying to start a new career in programming may …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Beginner Python Projects

    For learning Python I highly recommend the book Beginning Python From Novice to Professional (3rd Edition - Apress) Magnus Lie Hetland ISBN-13 (pbk): 978-1-4842-0029-2 ISBN-13 (electronic): 978-1-4842-0028-5 I've read several …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How Should Voting Machines Work?

    Microsoft announces [Election Guard](https://www.zdnet.com/article/microsoft-demos-electionguard-technology-for-securing-electronic-voting-machines/) open source software for voting machines.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in how to remove from a list.

    You can remove items from a list by index or by content. Assuming a list named `deck` and a card named `card` that has been randomly selected from the deck …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Beginner Python Projects

    My summer project is also to learn Python. As such I've been busy converting all of my vbScript maintenance scripts. Feel free to post any Python questions and we'll try …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in DATA STRUCTURE AND ALGORITHM 2

    The short answer is to learn C++. You'll likely get a longer answer if you put more effort into doing it yourself first. In the mean time, read the [Daniweb …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Selecting Elements From A list At Random No repeats in Python

    You have four lists. One is the master list and the others are specialty lists. There is no guarantee that a person will be added to anything but the master …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Gave Reputation to Antika2165 in Fedora Command Shell Script

    Write a shell script to create a directory called “page1” and ask the user if he/she wants to copy a file to TESTING directory. You should find out that the …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Fedora Command Shell Script

    This is your third post asking us to do all the work for you. Please read the [Daniweb Posting Rules](https://www.daniweb.com/welcome/rules) and [Suggestions For Posting Questions](https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question) before posting again.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Gave Reputation to thinguyenhalu in Badges - How to demotivate users

    Good Morning All, I am looking to develope a new product and I am needing software, hardware and an app developed. I have no idea where to start and I …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Badges - How to demotivate users

    Howie Mandel in his early stand-up comedy days. 1. OK. Now we're going to do some improv. 1. Give me an occupation. 1. Give me a place. 1. Give me …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited Problem with wxPython and GridSizer

    I have been wrestling with this for two days now and getting nowhere. Something is broken, either the GridSizer control or me. I'm hoping it's me and someone can show …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Created Problem with wxPython and GridSizer

    I have been wrestling with this for two days now and getting nowhere. Something is broken, either the GridSizer control or me. I'm hoping it's me and someone can show …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How big are Windows 10 updates?

    It's been out for several weeks. If you want to know what is new then google "what's new in windows 10 2019 update". Aside from a minor VPN problem there …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Python_Programming

    That's pretty low level stuff that you should be able to handle just by rereading your class notes. If you don't know how to flowchart a simple if-then structure then …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Deleted a Post in Can I rank my site on Google without building links?

    HI Well, it relies upon how you characterize "fabricate backlinks." If you characterize it as structure extraordinary substance individuals need to connection to, at that point no. ... So indeed, …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Deleted a Post in Where can I sell my scripts?

    HI At the point when a specialist conveys a content, they are prescribing it. At the point when a maker gets a content to a Studio, she is prescribing it. …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Deleted a Post in Can I rank my site on Google without building links?

    HI Well, it depends on how you define "build backlinks." If you define it as building great content people want to link to, then no. ... So yes, you can …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Windows 10: how use it?

    >"Driver Hell" is real To be fair, it's much easier for Apple to minimize driver problems when they have complete control over the hardware. Microsoft can only provide the interface, …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How to read the attributes of an XML file with VB.Net

    I posted code that will do that. It's the only solution you have so far so use it until something better comes along. I tested it with the xml text …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Deleted a Post in What do you mean when you say hacker?

    Absoultely! Legality depends on the scenario it about to happen, and permissions as well as access rights. If the hacking takes place under white hat i.e. test penetration activities how …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How to read the attributes of an XML file with VB.Net

    Dang. I always complain when other people do this and now I did it. I left out the import when I posted the code. Please add the following: Imports System.Text.RegularExpressions …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How to read the attributes of an XML file with VB.Net

    I've never had much luck working with XML and I'm sure there is a better way to do this via Linq but you could try a regular expression approace as …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited Get Lat Lng from Google Geocoding API

    I have been trying to get Lat Lng from this code using the same call to Google Geocoding API, but I have not found a way. Any suggestion would be …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Get Lat Lng from Google Geocoding API

    For future reference, **Code Snippet** is meant for posting working and documented snippets of code. It is not to be used when you are posting a piece of code that …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Get Lat Lng from Google Geocoding API

    You are allowed to edit your post within 30 minutes of iniitially posting it.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Some feedback on the design

    It's not my favourite interface but you can't please everyone. Personally, for short posts I just create the post in TextPad then copy/paste into Daniweb. For anything longer I create …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited QR Code generate using PHP MYSQl by fetching data from database row by row

    Hello Experts! I am stuck here while generating QR Code using php sql. Basically I am generating code for students using their ids and other information while fetching data from …

The End.