Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
input
- Page 1
Re: How to show visa info based on country selection in a travel form?
Programming
Web Development
3 Days Ago
by Biiim
…col-12"> <div class="
input
-group mb-3 justify-content-center">…col-12"> <div class="
input
-group mb-3 justify-content-center">…col-12"> <div class="
input
-group mb-3 justify-content-center">…
Re: Error LNK1104 when debugging
Programming
Software Development
4 Days Ago
by toneewa
… what you need to the Project Properties > Linker >
Input
> Additional Dependencies Check to make sure you have all…
How do I make my code jump back to a previous line?
Programming
2 Weeks Ago
by trueriver
…: User_input =
input
("Please
input
user: ") if User_input == User: User_password_input =
input
("Please
input
password: "…!") time.sleep(1) askAdminPass =
input
("Please
input
admin password: ") if askAdminPass …
Re: How do I make my code jump back to a previous line?
Programming
2 Weeks Ago
by trueriver
…detected!") time.sleep(1) askAdminPass =
input
("Please
input
admin password: ") if askAdminPass !=…login(): User_input =
input
("Please
input
user: ") if User_input == User: User_password_input =
input
("Please
input
password: ")…
Re: My php is showing wrong results of time difference
Programming
Web Development
3 Weeks Ago
by Dani
I am confused when you say the HTML time picker
input
box can be set to 20:00 for time in …and 5:00 for time out, because `<
input
type="time" ...>` only allows the end-user… you mean to say is that you are using `<
input
type="datetime-local">` which makes a lot…
Re: My php is showing wrong results of time difference
Programming
Web Development
3 Weeks Ago
by Mr.M
… meant regarding the dates is that I have a date
input
that shows a calendar when a user click on it…
Re: My php is showing wrong results of time difference
Programming
Web Development
3 Weeks Ago
by Dani
…. (Also, just to confirm, you now have two datetime-local
input
boxes and no more date picker on its own, right?
Re: How do I make my code jump back to a previous line?
Programming
2 Weeks Ago
by woooee
if sysInfo.lower() in ["exit", "Exit", "EXIT"]: since sysinfo is now lower(), it will never be equal to "Exit" or "EXIT"
Re: How do I make my code jump back to a previous line?
Programming
1 Week Ago
by Dani
Organizing code into functions is always important for readability and also to be able to reuse parts of your code as your app gets bigger. Thank you for posting your updated code to share with others :)
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
1 Month Ago
by usmanmalik57
… content attribute of the LLM response. ```python class WebState(TypedDict):
input
: str ai_msg: AIMessage output: str def ask_web(state: WebState) ->…; WebState: # State -> Partial msg = llm.invoke(state["
input
"]) # tool call happens automatically return {"ai_msg": msg…
McCharts - ArkTS
Programming
Software Development
2 Months Ago
by 杨_659
…), so we need to get the maximum value in the
input
data (data). Then divide the maximum value into five equal…
Re: Java Coin Flip Program
Programming
Software Development
1 Month Ago
by jassonadder
…idea—it’s a great beginner project to practice loops,
input
, and class methods in Python. Here’s a sample … Tails:", self.tails) # Main program try: flips = int(
input
("How many times would you like to flip the… uses a class method called flipCoin() and handles user
input
nicely. It will flip a coin as many times …
Re: How Can I Hookup My Mobile Phones To My PC Monitor ?
Hardware and Software
Hardware
Mobile and Wearables
2 Months Ago
by Fitmovers
If you want to connect your Samsung Galaxy A9 to your Dell E1916HV monitor, you'll need a USB-C to HDMI adapter (if your phone supports HDMI output). Since your phone has only USB ports, check if it supports Samsung DeX or screen mirroring via an MHL adapter. If your monitor only has VGA
input
, you might also need an HDMI to VGA converter.
Re: Is AI good in future for content writing
Programming
Software Development
2 Months Ago
by Yenjeff
AI is great for speeding up content creation, but human creativity still matters. It struggles with originality and deeper emotional storytelling, so a mix of AI and human
input
works best.
Re: Cannot run exe from asp.net
Programming
Web Development
1 Month Ago
by lennyli
…)) # Replace with the server's IP address while True: command =
input
("Enter command (move, click, type, exit): ") if command…
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
2 Months Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Input from textbox!!
Programming
Software Development
17 Years Ago
by sainiricha
Input
from text box as text(not number) and by button … table to be viewed in the datagridview. eg:deptname as
input
in textbox, and by button click take all values from…
input and display
Programming
Software Development
17 Years Ago
by Najid
input
three numbers and display largest one
Re: input and display
Programming
Software Development
17 Years Ago
by Radical Edward
>
input
three numbers and display largest one Break it down into …
Input 99999 to stop
Programming
Software Development
16 Years Ago
by clarence_cool03
{-='
Input
99999 to stop using Dev-C LaNGuaGe'=-}
input 5 numbers and print in ascending order in c++
Programming
Software Development
9 Years Ago
by mrismich
input
5 numbers and print in ascending order in c++
Re: Input doesn't work! Please help!
Programming
Software Development
15 Years Ago
by ultimatebuster
input
() is the same as eval(raw_input()) try replacing
input
with raw_input()
Re: Input...
Programming
Software Development
14 Years Ago
by Saith
…main(){ int var1; char var2; cout << "
Input
some number.\n"; cin >> var1; cout <… syntax, the '\n' character will be removed from the stream
input
along with any other value. Example 2 [CODE] /* Purpose:…main(){ int var1; char var2; cout << "
Input
some number.\n"; cin >> var1; cin.ignore…
Re: 'input'
Programming
Software Development
11 Years Ago
by Schol-R-LEA
…snippet of code you've entered running * In general, '
input
' is the process of getting information from someplace (e.… probably is referring to the `
input
()` function, which is what you use to get
input
from the user - it will…typed is sent to the program. For example: x =
input
('Please enter your name: ') will put whatever the user has…
Re: Input...
Programming
Software Development
14 Years Ago
by JamesCherrill
Yup. [ICODE]System.in[/ICODE] is the console
input
stream. It's common practice to use this with the Scanner class to handle some basic parsing of the
input
... [CODE]Scanner sc = new Scanner(System.in); String s = sc.nextLine(); or... int i = sc.nextInt(); // etc etc - see API doc for details of all options[/CODE]
Input...
Programming
Software Development
14 Years Ago
by jackmaverick1
Hi! I read the clearing
input
buffer article on the top of the c++ forum but …
Input...
Programming
Software Development
14 Years Ago
by jackmaverick1
… that I can't find is how to take user
input
from the keyboard through a console window... How can you…
Re: Input...
Programming
Software Development
14 Years Ago
by sourabh17
… beside the Scanner class, check j2se tutorial for reading user
input
for better understanding... [CODE] import java.io.*; public class GetUserInput…
Input
Programming
Software Development
13 Years Ago
by Daigan
…; total); }[/CODE] Isn't my code supposed to stop getting
input
when the user just press enter without any characters?
'input'
Programming
Software Development
11 Years Ago
by simplysach
… in the lesson. It says i have to include what '
input
' is when coding a programme. Please help and reply as…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC