-
Edited how to insert multiple value from multiple textbox into a single field
hello sir, i am new in vb.net.. i am making a project on railway reservation.. in train booking page, there are multiple textbox in my project to insert multiple passenger … -
Replied To a Post in Name the airline with the most total passengers
If you are interested, here is one implementation using pandas. Note that the first line in the data file must be Routes,Passengers import pandas import sys df = pandas.read_csv("airlines.csv") # … -
Replied To a Post in Does GeoIP ever change?
I'm curious. I frequently use a VPN. How will that affect my location? -
Replied To a Post in Trump
I presume you heard what happened in Wisconsin? A 10-year seat on the state supreme court opened up and the GOP forced an election at the height of the pandemic … -
Replied To a Post in Trump
The White House is also allowing banks and creditors to seize the $1200 relief cheques if those receiving them have any outstanding debts. So not only is the vast majority … -
Replied To a Post in Mark topics read
That would be me. And thank you. -
Marked Solved Status for Name the airline with the most total passengers
hello guys I'm trying to make a code that return the name of the flight that has the most total number of passengers from a file : Alitalia Rome 180 … -
Replied To a Post in Name the airline with the most total passengers
I'm glad we finally got there. I seem to have had a blind spot about the meaning of the last column though. I hope that didn't cause too much confusion. -
Replied To a Post in Name the airline with the most total passengers
If you are going to use pandas then forget the standard file open and just do df = pd.read_csv("airlines.txt") and keep in mind thatin your `for` loop, `Airline` will contain … -
Replied To a Post in Install pip command in Mint
I heard about this thing called Google. You might try that. I find the phrase "where can I download pip for linux" works pretty well. -
Replied To a Post in 10 year member of daniweb
10 years for me. Same comments as James but different languages. Never benn a java fan. -
Replied To a Post in Name the airline with the most total passengers
That's sort of pseudo-code but still too code-ish. Try to write it like you are telling a person how to do it step-wise with pencil and paper. Your pseudo-code shouldn't … -
Replied To a Post in Name the airline with the most total passengers
Let's have a look at what you have now following my suggestions first. -
Replied To a Post in Name the airline with the most total passengers
Although I don't know why you are importing collections when you aren't using them, and I think you are over-complicating things by using pandas dataframes for such a simple application. … -
Replied To a Post in Name the airline with the most total passengers
I've never user pandas or collections but I noticed that although from collections import counter does not work, from collections import Counter does (upper case c in Counter). Perhaps that … -
Endorsed tinstaafl
-
Replied To a Post in Covid-19 Virus and N95
If you want to see a brilliant and effective Covid-19 public service ad then check out [this video](https://youtu.be/udaF7x4zL2I). It gets the point across about social distancing in a way that … -
Deleted a Post in Back links YES or NO?
What is this nonsense? Backlinks Yes or No? Why dont you ask clearly; what you want to know? -
Replied To a Post in I Need Assistance On My Insurance Management System
You still haven't shown us that you have put any effort into doing this yourself. If you don't pony up then this thread will likely be ignored. -
Edited I Need Assistance On My Insurance Management System
Hello guys, I am currently working on an insurance management system and i need help on how to use files and on how to create an admin side since I … -
Replied To a Post in ones and zeros in binary number
For future reference, if you want to count bits in an integer you should make it an unsigned int, and use bitwise shift right operations rather than division. -
Replied To a Post in I Need Assistance On My Insurance Management System
I was in the process of writing a response and after two sentences I realized I had already put more effort into replying than you did in creating the original … -
Replied To a Post in the code mips for this project
When I was in school I did my own homework. You should do the same. It's called "learning". You might also want to reread your post. Instead of "can you … -
Edited the code mips for this project
Using mars (mips simulator) write a program using spim assembly language to read 20 integer numbers (positive and negative) store them in an array of 20 elements rnd compute the … -
Replied To a Post in Debug time run ok but with out debug not run properly please help me
Can't do much without seeing your code. -
Edited Sentimental analysis
Hey!! I am facing issue when i try to tokenize a whole column that contains reviews of customer. my file is stored in readfile my column that i want to … -
Replied To a Post in please guys i need the code of this program (C++)
You do realize my answer was rife with sarcasm. I provided exactly as much good code as the OP provided bad code. -
Replied To a Post in javav GUI assignment any one can do ?
And what do you expect us to do with that? I could write up a GUI that simulates a coin toss but I doubt that would be of any use. -
Replied To a Post in Howdy, name's ButcherHix
Welcome to Daniweb. What part of Arizona are you from (I've been to Tempe a couple of times). -
Created Free Technical Writing Tutorial
When asked, "What language should I learn first?", my answer is always "English". If you can't communicate clearly then you can't do your job as a programmer properly. As a … -
Replied To a Post in Incorrect calculation
Several things: 1. Remove lines 14-17. You are prompting for and reading input that you never use. 1. You don't have brackets around your two statements after the `else if` … -
Revoked Solved Status for SQL prepare statement error
I have Apache2, php 7.2, and mysql installed. At the top of my index.php I have the following script: <?php session_start(); // start of script every time. // setup a … -
Replied To a Post in SQL prepare statement error
Try $stmt = $pdo->prepare("INSERT INTO 'download' ('IP_ADDRESS', 'FILENAME') VALUES (?, ?)"); Note the small change from `")` to `)")` -
Replied To a Post in vb.Net Progress Bar With Text
As I recall (it's been a while) you right click on the toolbox and select `Choose items` then browse to whatever custom control you want to include. In my case … -
Replied To a Post in C# programming assignment
Only if you want the entries to be along the diagonal like x - - - - x - - - - x - - - - x -
Replied To a Post in C# programming assignment
You declare the dimensions of island as [4,1] but you index the columns as 0, 1, 2, 3 (lines 2-5). Did you mean to do island[0, 0] = "Nassau" + … -
Replied To a Post in please guys i need the code of this program (C++)
>i try but i didn't get the right input Your program doesn't have any input. Your problem is in lines 23-49. Here is the correct code. -
Gave Reputation to Hu99.Kappa in please guys i need the code of this program (C++)
 -
Replied To a Post in C# programming assignment
We won't do your homework for you, but if you show us what you have tried so far and where you are stuck perhaps we can help. -
Replied To a Post in Hi everyone, I'm erendeniz
Well, mine was a commonly word use by Mad Magazine and I think it is the Polish word for "need" although at the time I thought it was just gibberish. -
Replied To a Post in VB.net Datagridview two headers
There is no direct way to do that but I'd like to point out a potential problem. What do you do when a week straddles two months? If you still … -
Replied To a Post in Hi everyone, I'm erendeniz
And welcome to Daniweb -
Replied To a Post in Hi everyone, I'm erendeniz
Potrzebi. -
Replied To a Post in Incorrect value output
One final comment. Your spec said to calculate the number of salaries over a limit and how many below a limit. Ac cording to the stated spec you should ignore … -
Replied To a Post in Incorrect value output
By the way, `Code Snippet` is to be used only for fully debugged and working (and fully commented/documented) code snippets. It is not to be used for posting buggy code. … -
Edited Incorrect value output
Hi all I need assistance with the below code snippit. It calculates how many of salaries entered exceeds R100 000 or how many is below. With the below entries the … -
Edited Incorrect calculation
Hi all I need assistance with the below code snippit. It calculates how many of salaries entered exceeds R100 000 or how many is below. With the below entries the … -
Replied To a Post in Incorrect value output
You need to put brace brackets around your two statements. Indenting is not enough. else if (yearlySalary <= LIMIT) { totalSalaryB += yearlySalary; lcount++; } But your problems extend beyond … -
Replied To a Post in Covid-19 Virus and N95
According to the [FCC Regulations](https://www.fcc.gov/consumers/guides/broadcasting-false-information): - The FCC prohibits broadcasting false information about a crime or a catastrophe if the broadcaster knows the information is false and will cause substantial … -
Replied To a Post in Memorable Quotations
The evil in the world comes almost always from ignorance, and goodwill can cause as much damage as ill-will if it is not enlightened. People are more often good than …
The End.