-
Replied To a Post in How have you been keeping busy during COVID19?
If you go to the link I PMed you you can see there is lots of open space behind our house for dog walking. Even more if I want to … -
Gave Reputation to Kumarvarun0609 in Python programming problem
WAP to check student is first ,second or third . If number is greater than equal to 60->>first If number is greater than equal to 45->>second If number is greater … -
Replied To a Post in Python programming problem
I'm assuming that because the OP was too lazy to try this on his own first, he was also too lazy to expand WAP to "Write A Program". -
Gave Reputation to Dani in Microsoft Word ends the spacing debate
I'm pro-Oxford comma. -
Replied To a Post in How have you been keeping busy during COVID19?
The tub insert was done in February before the lockdown and we also picked up the laminate a few weeks prior. We didn't rip out carpets or lay the flooring … -
Replied To a Post in Hi everyone, I'm rorock
Welcome to Daniweb. There are a few of us dinosaurs always lurking about. I take it you are posting from Montana? -
Replied To a Post in How have you been keeping busy during COVID19?
We've been keeping busy doing a renovation on my father-in-law's old house. He moved out in January. So far we have ripped out the carpets on the upper two levels … -
Replied To a Post in Microsoft Word ends the spacing debate
I've always used a single space after a sentence. What do you think of the Oxford comma? -
Endorsed JamesCherrill
-
Replied To a Post in Python question.
datetime.date.today() - datetime.timedelta(days=100) gives you the date - 100 days. >>> import datetime >>> datetime.date.today() datetime.date(2020, 4, 24) >>> datetime.date.today() - datetime.timedelta(days=100) datetime.date(2020, 1, 15) You can see the month … -
Replied To a Post in Connect 4 Game PLEASE HELP
You need to use the code tool `</>` to insert blocks of code. What you posted is not posted as code and without proper indentation it is meaningless. -
Replied To a Post in Python IDE for MacOS
You can download the first two chapters of Michael Driscoll's latest book, Creating GUI Applications with wxPython, [here](https://leanpub.com/creatingapplicationswithwxpython/) as a free sample from the publisher. And you can look at … -
Marked Solved Status for VB.NET times table
A teacher wants the program to: show a visual representation of a multiplication ask the child to key in an answer E.G 3 x 4 **** **** **** What is … -
Replied To a Post in Python IDE for MacOS
I've only dabbled in tkinter and that was a few years ago. I really don't recall much about it. I found a lot more information/books are available for [wxPython](https://docs.wxpython.org/), particularly … -
Replied To a Post in Python IDE for MacOS
I'll have to have a look at PyCharm. tkinter is the default but my understanding is that it hasn't been updated in years. Wxpython is current and is a python … -
Replied To a Post in Python IDE for MacOS
I'll give anothet thumbs up to Komodo and also further suggest that if you need to create a GUI you look at wxPython rather than tkinter. -
Replied To a Post in Hi everyone, I'm Laluna
Welcome to Daniweb. I removed the spammy link to the online casino. We don't look kindly on spammers so please avoid posts that are thinly veiled spam. -
Edited Hi everyone, I'm Laluna
Hi all, I am Luna. I am pretty new here so please be patient with me. I go to a lot of concerts, but my favorite singer is Travis Scott. … -
Replied To a Post in My pc won't power on
An obvious first guess would be a failed power supply. -
Replied To a Post in Covid-19 Virus and N95
Trump is leaving it to the governors to decide when to re-open things, but he has stated he wants things to open up sooner rather than later. Trump is pissed … -
Replied To a Post in Variable onChange listener?
I don't know if this would work but how about creating a textbox and making it invisible? You could use that textbox as your variable. Then you could attach on … -
Replied To a Post in VB.NET times table
PS. `Code Snippet` is to be used only for working (debugged), commented, and documented code. -
Edited VB.NET times table
A teacher wants the program to: show a visual representation of a multiplication ask the child to key in an answer E.G 3 x 4 **** **** **** What is … -
Replied To a Post in VB.NET times table
1. Why are you calling the multiplication result `sum`? 1. Why are you storing an integer result in a `Double`? 1. Why aren't you reading the user response from the … -
Replied To a Post in Covid-19 Virus and N95
Some US hospitals have had PPE shipped in grocery trucks (smuggled) in order to prevent shipments being seized by the FBI or DHS. In other news, Manitoba's active cases dropped … -
Replied To a Post in keep on getting function define is not allowed here
I see three mains, actually. -
Replied To a Post in Pls this is what I tried ,I need help
If you are stuck at the flowchart then you don't know anything about flowcharts. You just need a couple of boxes and a decision block (diamond). Go to wikipedia and … -
Replied To a Post in Hi everyone, I'm phirux
Please post the code. If you are creating the query on the fly then please post the resulting query. -
Replied To a Post in How to turn off windows 10 update permanently?
The only way to permanently disable it is to never connect to the internet. -
Replied To a Post in Pls this is what I tried ,I need help
Sounds like you understand it. What's the problem? -
Replied To a Post in Need to solve this question have tried my best but am confused need help
A good place to start is to write down step by step instructions on how you would do this by hand. -
Replied To a Post in Covid-19 Virus and N95
GOP wants to shield companies that force their employees back to work from liability if they get Covid-19 as a result. -
Marked Solved Status for Starting Python 3
Guys, What is wrong with my compution here when "hrs" entered is 45? The end result expected si 498.75 but it keeps failing to compute second portion correctly (please see … -
Replied To a Post in Starting Python 3
>That was a Duh! moment We've all been there. -
Replied To a Post in Hi everyone, I'm phirux
Let's have a look at the code. Please include an explanation as to 1. what the code is supposed to do 1. what it actually does If you are getting … -
Replied To a Post in I am New here on this forum
Welcome to Daniweb. Tell us a little about yourself. -
Replied To a Post in I want to know the error in my code to be able to run and compile it
It would also help if it were properly indented and commented. -
Replied To a Post in Starting Python 3
You are calculating TotalPay = ((float(hrs) * float(HourlyRate)) + ((float(OvrTimehrs) * float(OvertimeRate) * float(HourlyRate)))) You are using the total hours multiplied by your hourly rate. You want `40 * HourlyRate`. … -
Created User interface design
I found this great article on [User Interfaces](https://datagubbe.se/decusab/) that I wanted to share. Two points I wanted to add 1. Just because it's old doesn't mean it's bad. 1. Just … -
Replied To a Post in New member! Donna Here ...
Awesome introduction. Welcome to Daniweb. -
Replied To a Post in Python IDE for MacOS
BTW an excellent Python book is Beginning Python: From Novice to Professional by Magnus Lie Hetland. -
Replied To a Post in Python IDE for MacOS
It's been a few years since I tried it but I was impressed with [Komodo IDE](https://www.activestate.com/products/komodo-ide/python-editor/). It's by [ActiveState](https://www.activestate.com/) and they have versions for all major platforms. They also have … -
Replied To a Post in Covid-19 Virus and N95
One good thing at least - March 2020 was the first March without a school shooting in the U.S. since 2002. -
Replied To a Post in INSERT INTO with LAST_INSERT_ID()
It's been a while since I did databases and all the ones I set up were large but only had one point of update (my apps). Everyone else was read … -
Replied To a Post in INSERT INTO with LAST_INSERT_ID()
Then how does any multi-user database manage to function? -
Replied To a Post in INSERT INTO with LAST_INSERT_ID()
Could you just solve this with a lock? -
Replied To a Post in Hi everyone, I'm stellacherry25
It looks like spam to me. The new member has really not told us anything about himself but does provide links flogging his business. If the member had actually told … -
Replied To a Post in INSERT INTO with LAST_INSERT_ID()
id = LAST_INSERT_ID(id), From what I gather, this expression returns the auto-inceremented value of the field, `id`. And ON DUPLICATE KEY UPDATE says that if the insert fails because of … -
Replied To a Post in Hi everyone, I'm tetrisunblocked
One of my favourite games. -
Replied To a Post in Hey everyone, New here - Hope everyone is safe
Still safe and healthy here in Winnipeg.
The End.