4,901 Posted Topics
Re: Can you post your input file please? Also, what are the values of `row` and `clo`? I assume that `clo` is supposed to be `col`. If so, I urge you to develop either better typing skills or better proofreading skills. It's simply not sufficient to just spew out a mess … | |
Re: 1. Open an Explorer window 1. Right click on `This PC` and select `Properties` from the pop-up menu 1. In the Control Panel window click on `Advanced system settings` 1. Click on `Environment Variables` At this point you have to decide if you want the change to apply to just … | |
Re: Looks to me like you have put zero effort into doing it yourself. 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). | |
Re: Those recommendations are worthless without an explanation as to why you think each belongs on that list. Keep in mind that different people have different requirements and as such, what is a "good" tablet for one person might not be "good" for another. | |
Re: How are we supposed to help if you don't post the code? | |
Re: I would strongly advise against doing that. Alt-Tab is a basic Windows function and I can't imagine that you would want to override that except for some underhanded purpose. | |
A few years ago, the Canadian government (at that time it was a majority Conservative government under Stephen Harper) proposed legislation which would have weakened the privacy rights of all Canadians. Part of the justification was to allow easier apprehension and prosecution of people trafficking in child pornography. The justice … | |
Re: It's been quite a while since I used a version of BASIC that old but I suspect balance = float (input("OK, ", name, ". Please enter the cost of the ", item, ": ")) is complaining because of the number of parameters you give for `input`. Try concatenating all of … | |
Re: I suggest you do something like dim qry as string = "INSERT INTO Table VALUES ('" & PatientID.Text & "', '" & fname.Text & "'," & lname.Text & "')" and examine the contents of `qry`. There is no way for us to see what the query is without knowing the … | |
Re: This is your first post and you have already made some big mistakes. 1. You didn't ask for help. You demanded it. 1. You didn't show any proof that you had tried to do this yourself. 1. You screamed in the thread title. Are 37 `!` really necessary? 1. You … | |
Re: I would just download [VeraCrypt Portable](https://www.veracrypt.fr/en/Portable%20Mode.html) (free) rather than write something from scratch. | |
After saying for the last 10 years that I would never own a cell phone (I had enough of that spending many years on call), I finally broke down and got one. It is a Figo (Speak Out) Android (Marshmallow) phone that allows me to buy a block of minutes … | |
Re: I corrected the code formatting. Please note that of lines 29 and 30 Exit Sub rs.Close there is no way that line 30 will ever get executed so it is possible this is leading to your error by leaving the connection open. Also, line 141 If rs.BOF = False And … | |
Re: You have to iterate through all of the items in the listview collection and convert them to string before you write them out. If the collection is small then you can create the output buffer in a loop then use WriteAllText to blast it out in one step. I suggest … | |
Re: I think the problem is that people see `Code Snippet` in the drop down and think that because they are including a snippet of code with their question they should select that option. - Captain Obvious | |
Re: @egoche - I've corrected your code formatting twice. I won't do it again. Please use the code block tool `</>` to insert code. | |
Re: Because you can write clearer and more concise code if you overload operators so that they can be used on objects. For example, you might want to overload `+` so that you can write object1 + object2 instead of creatinig an `Add` method which would look like object1.Add(object2) The first … | |
Re: What is urgent for you is not urgent for anyone else. Nobody here is going to do what you are asking. | |
Re: The thread has been dead for more than 8 years. What do you think? | |
Re: Gee. Only 1900 lines of code. What kind of help are you expecting? | |
Re: Two possible solutions: 1. Put code in the text_changed event for the two textboxes (you can use the same event handler for both) that computes the sum and puts it in the third textbox. 1. Because you are getting the values from a database why not just add sum(val1,val2) to … | |
vbScript - Extending Application Functionality with vbScript and AutoIt Sometimes you'll find that one of your favourite applications is missing some useful functionality. For me, it was FastStone Image Viewer. I've had to scan a large number of family photos to convert everything to digital. Rather than scan one photo … | |
Re: Be very careful when blowing air into the fan. You can easily damage the fan doing that. | |
I just got a PM from a user who said "Hello! I'm <username>. Nice to meet you! Let's connect." What I know about this user is precisely zero. Before I respond to a "let's connect" request I'd like to know a little bit about this user. In the old Daniweb … | |
Re: I'm far from a python pro but it seems to me that xx is local to plotSVC and goes out of scope once that function exits. I suggest you try to keep all module code contiguous. You have defned plotSVC in the middle of your mainline code. This is a … | |
I tried to attach a file to a post by clicking the attachment icon and the file upload dialog did not show. I tried several times with no luck. | |
Re: >What are the biggest pain points you have with DaniWeb? 1. spammers 1. people who copy/paste homework 1. people who revive multi-year old threads by posting nonsense 1. people posting in the wrong area (e.g. programming questions in the Community area) >If you don't visit DaniWeb as much as you … | |
Re: A regular textbox by default allows backspace and space bar. What exactly are you trying to accomplish? | |
Re: You'll get help here but not until you first show you have put in the effort to do it yourself. When you run into specific problems you can post your questions. | |
As I understand it, there were problems on Sunday (Feb 24) which caused problems logging in. Daniweb would not accept my password (or so it said). Normally when I go to login I get presented with the login page with my userID (reverend Jim) and password already filled in. Now … | |
Re: That seems like the type of task more suited to a script than an app. If you copy the following into a file named `prefix.vbs` you can do what you requested. set fso = CreateObject("Scripting.FileSystemObject") if wscript.arguments.unnamed.count <> 2 then Wscript.Echo "prefix <filename> ""string""" Wscript.Quit end if infile = wscript.arguments.unnamed(0) … | |
Re: I don't know what kind of response you are expecting. Are we supposed to provide a list of all of the topics covered in the hundreds of thousands of posts? My suggestion is to browse the forum post headers and see. Aside from many very informative articles by our esteemed … | |
Re: I used to have one of those. Backups took hours. Double for a backup & verify. During that time the computer was useless. Now I just use disk imaging for my system partition and robocopy for my data partition. And because of shadow copy, I can use my computer during … | |
Re: I think the only thing they learned is how to prevent getting caught again. | |
Re: How about googling "generate random numbers in python"? That would have required less effort than posting your question here. | |
Re: You can use DateDiff to calculate the difference between the current date and the entered date. Just out of curiosity, how do you guarantee that the user is entering their actual birthday? And if you can't guarantee that then what is the point of asking? If it's for legal reasons, … | |
Re: For a paper with no pattern you would just add the area of the four walls and divide by the coverage-per-roll to get the number of rolls. I find it hard to believe that you are papering a room that is 20 feet high but using your numbers the total … | |
Re: No one is going to do your homework for you. If you hadn't waited to the last minute you could have posted your code and asked for help. | |
Re: I've always found the easy way is to create the control manually, then look at the `Form1.Designer.vb` code to see what the code looks like. Then you can adapt it to what you want. For example, using the auto generated code I got Public Class Form1 Private Sub Form1_Load(sender As … | |
Re: You can start by googling `how to convert node js script to exe` | |
Re: Just out of curiosity, how did you come to learn of this? And, again, out of curiosity, what was the vulnerability? | |
Re: To be fair, "password" could be the encrypted/hashed value. It is not necessarily in clear text. Although I suspect you are correct in your assumption. | |
Re: Or you can just do an explicit cast as Dim b As Button = DirectCast(sender, Button) | |
Re: You can't. But you can do what I do. I set up a folder with links to each forum I want to go to with the filters I want (which are exactly none). For example, Hardware and Software links to `https://www.daniweb.com/hardware-and-software/all/_/1` instead of `https://www.daniweb.com/hardware-and-software/1`  | |
Re: I agree so I changed it to a discussion thread. |
The End.