-
Replied To a Post in Where can I sell my scripts?
Ambiguity. The devil's volleyball. - Emo Phillips -
Replied To a Post in Question about Visual Studio
I'm not even sure if this was optional when I installed VS 2019 but I made sure the Python support was installed. -
Edited How Much RAM Is Too Much
I am running Windows 10 64 bit on an HP Compaq 8200 Elite Small Form Factor with 8 GB RAM. I just learned the max RAM for this computer is … -
Edited Please help
[ayuda]  en la parte donde va la informacion todo lo agrege correctamente lo quite porque segun el error esta en la linea 6 Y ESTE ES EL CODIGO:  -
Edited Looking for better internet services in USA
I am loooking after spetrum internet services as it's pricing are affordable and spectrum silver channel line-up also provides a huge number of HD Channels but i am looking for … -
Replied To a Post in Random Facts
Little known fact. Indiana Jones was only about four feet tall. Here is the proof... In the first movie the medallion states the height of the staff used to find … -
Replied To a Post in How Much RAM Is Too Much
Also consider how long you plan to hang on to this computer. I have an old laptop that is severely under-rammed but I can no longer get RAM for it … -
Replied To a Post in How to Recover Windows 10 Password on Compauter?
And how are we to know whether you forgot your password or you just want to break into someone else's computer? -
Replied To a Post in How Much RAM Is Too Much
Memory is cheap. I'd fill it up to the max. -
Edited vb net report viewer filter
I have a problem. I want to show two different value in same button. Here is the image of the report---- https://ibb.co/wrrDSDX Try If Not String.IsNullOrEmpty(ComboBox1.Text + TextBox1.Text) Then Dim … -
Replied To a Post in Program to calculate sum of n terms
For future reference, if your program is throwing an error, it is always helpful to say what line is causing it. It may have been obvious in this case, but … -
Replied To a Post in Help on if else statement
The `include` had `#` as the first char so it was interpreted as `heading`, thus the big font. I fixed it and now you can see the target as `<iostream>`. -
Replied To a Post in "Unable to load MediaInfo library"
Here's how I get the media info via code (Python). Save this to a file with a `py` extension (e.g. mediainfo.py) then run it with the name of a video … -
Replied To a Post in "Unable to load MediaInfo library"
I was confused by >I'm trying to write a movie database that retrieves data from IMDB since IMDB lists a lot of details about a movie, but not the codec … -
Replied To a Post in "Unable to load MediaInfo library"
I can't answer your question but I think you may want to check out [Movie DB API](http://www.omdbapi.com/). I use it to get movie info via code. -
Created Free Software Recommendation (Sandboxie)
Sophos software has recent.y made their [Sandboxie](https://www.sandboxie.com/) software free for personal use and will soon be making it open source. For anyone unfamiliar with Sandboxie, it implements an isolated enviroment … -
Replied To a Post in How can i remove the first three items in a listview in vb.net
After verifying that a valid number has been entered you can do For i = 1 To CInt(TextBox1.Text) ListView1.Items.RemoveAt(0) Next -
Replied To a Post in Need datestamp feature
You're welcome. -
Gave Reputation to jeffmylife in Data Gathering In The Wild: A Hands-On Example
# Introduction # This tutorial provides guidance on gathering data through web-scraping. However, to demonstrate the real-life issues with acquiring data, a deep-dive into a specific, complicated example is needed. … -
Replied To a Post in Need datestamp feature
Python or vbScript? This is the Python version import os import sys import glob import shutil import datetime for arg in sys.argv[1:]: for file in glob.glob(arg.replace("[", "[[]")): base,extn = os.path.splitext(file) … -
Replied To a Post in Why this code is not working for a palindrome number
I would create a function `IsPalindrome` that checks any string, then pass it a number converted to a string. Why bother with numbers at all? Actually, I did this and … -
Replied To a Post in [VB.Net] How can I prevent the user from entering another form and how to delete data?
First off I wouldn't use Settings variables. They are stored in clear text. Plus, you are limiting yourself to only one user. I would set up a small database (I … -
Deleted a Post in Can I rank my site on Google without building links?
It's conceivable to rank individual pages without connections To place this in layman's terms, if many individuals connect to your site landing page, it's workable for different pages to rank … -
Edited Free Software Recommendation (Sticky Notes)
If you like to use Sticky Notes, do yourself a huge favour and stop using the Windows 10 Sticky Notes tool. Instead, go to [Zhorn Software](https://www.zhornsoftware.co.uk/stickies/) and download Stickies by … -
Created Free Software Recommendation (Sticky Notes)
If you like to use Sticky Notes, do yourself a huge favour and stop using the Windows 10 Sticky Notes tool. Instead, go to [Zhorn Software](https://www.zhornsoftware.co.uk/stickies/) and download Stickies by … -
Replied To a Post in Need some help with secure attribute access
It seems to me that if you have something that really needs to be hidden, instead of creating a complex workaround to try to hide stuff in (sort of) private … -
Replied To a Post in C++ Parallel arrays
It's a simple program. Show us what you have tried so far. ASAP: Short for "I left my homework until the last minute and now I want someone to do … -
Replied To a Post in vbScript going away?
Yeah. I read that from Microsoft recently. They are removing vbScript from the browser, which is in no way related to the original MS post which was very misleding in … -
Replied To a Post in How i can code and visualize each steps what is going on my code ?
You are spending too much time on Facebook (like). To understand an algorithm, work through an example with pencil and paper. Then code it up. Then step through it using … -
Replied To a Post in Memorable Quotations
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. - M. Golding -
Replied To a Post in Memorable Quotations
Those who can make you believe absurdities can make you commit atrocities. - Voltaire -
Replied To a Post in Memorable Quotations
The old faiths light their candles all about, but burly truth comes by and blows them out. - Lizette W. Reese -
Replied To a Post in Random Facts
Contrary to popular belief, the teaching of evolution in public schools in the US actually declined following the Scopes Monkey Trial as few districts wanted to take on the creationists. … -
Replied To a Post in I am Alfred and a new member
Welcome aboard. Please take a few minutes to 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). -
Replied To a Post in Best LowCost Software Tools, C or VB
I've been developing software since the mid 70s (retired since 2008) and I recently switched from vb.Net to Python/wxPython. I know you wanted to develop to exe but there is … -
Replied To a Post in Simple POS Program - How to show the number of bills needed for the change?
I see a lot of unnecessary code. For example, every one of your If cmbModel.SelectedItem . . End If blocks clears the value of `txtDate.Text` before setting it to a … -
Gave Reputation to rproffitt in banvarilaldatasave
Your post has a few issues. 1. Use the forum code formatter. 2. STATE what your questions are. 3. If the code is failing, supply what line it is and … -
Edited banvarilaldatasave
private void OnCaptured(CaptureResult captureResult) { try { // Check capture quality and throw an error if bad. if (!_sender.CheckCaptureResult(captureResult)) return; count++; DataResult<Fmd> resultConversion = FeatureExtraction.CreateFmdFromFid(captureResult.Data, Constants.Formats.Fmd.ANSI); SendMessage(Action.SendMessage, "A finger was … -
Replied To a Post in banvarilaldatasave
I don't see a question. -
Replied To a Post in Project for my assignment due by 16th August 2019
Leaving you to do what exactly? -
Replied To a Post in Project for my assignment due by 16th August 2019
And of course we have to ask the obvious - what, specifically do you need help with? -
Replied To a Post in How to Write a Sudoku GUI in Python/wxPython
Still another improvement. I added a `Web` button. When you click on this, a randomly generated "evil" level puzzle is automatically downloaded from websudoku.com. I also changes the Tile.py class … -
Replied To a Post in How to Write a Sudoku GUI in Python/wxPython
Now includes `Help` and `About` buttons and a status bar. When you click on `Check`, the tile, pane, row or column in error is highlighted in red. When you solve … -
Replied To a Post in Need help creating display controls!
You could start by looking at this [Microsoft walkthrough](https://docs.microsoft.com/en-us/dotnet/framework/winforms/controls/walkthrough-authoring-a-composite-control-with-visual-basic). -
Replied To a Post in How to Write a Sudoku GUI in Python/wxPython
This is s rewrite of the sudoku app. It has been cleaned up considerably and has a couple of improvements. 1. It has been split into separate files for easier … -
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 … -
Replied To a Post in How to Write a Sudoku GUI in Python/wxPython
Yes. This is a Python thread. -
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. -
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. -
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. 
The End.