113,244 questions
0
votes
1
answer
15
views
Extend signal form's FormField directive
Just learning signal forms and I'm trying to extend the functionality of the new FormField directive in angular 21 to add some custom classes to show valid/invalid states on my input.
So, here's what ...
0
votes
0
answers
53
views
VB6 form update issue using .net user control
I wrote some .net (framework) UserControls and embedded them to my vb6 form application, in order to get more graph functionality. (due to some reasons the vb6 application has still to be used).
The ...
-1
votes
1
answer
129
views
How can I get the actual values of a List Box or Dropdown List Option from this HTA to a txt file
I would like to modify this vb script so that i can add the values selected from a drop-down box so that it also sends the data to the text file as for example.
The text file should show for example:
...
0
votes
1
answer
60
views
Browser not prompting to save password on React login form despite correct autocomplete attributes
I have a React login form with the correct autocomplete attributes, but the browser never prompts me to save the password after a successful login.
<form onSubmit={handleSubmit}>
<input ...
1
vote
0
answers
41
views
Getting "Undefined index" warning when submitting a simple PHP form [duplicate]
I checked similar questions, but I am still confused as a beginner and would like a simple explanation.
I am a beginner learning PHP and working with HTML forms.
I am submitting a form using the POST ...
1
vote
1
answer
63
views
Form page reloads on submit despite calling event.preventDefault() in JavaScript [duplicate]
I am trying to prevent a form from reloading the page when it is submitted. I am calling event.preventDefault(), but the page still reloads every time I click the submit button.
Here is my HTML:
<...
0
votes
1
answer
79
views
Json is not returned to the calling Ajax
I have a form in a partial view. The view receives a "model".
@model EditUserViewModel
@{Layout = null;}
<form asp-action="Edit" id="EditUser" method="post"&...
Advice
0
votes
2
replies
44
views
How to make while loop in windows form using Visual Studio C++/CLI .NET SDK
I want while loop working I'd be able to pass arguments to loop in real time. Maybe to put the whole code of windows form into loop? Or it must be another cpp file where loop will work. But how to ...
0
votes
0
answers
58
views
How to show the value of RangeType with symfony FormBuilder
I'm working on a backend application to manage questions for a quizz application. I created the Question entity and added a property called "difficulty". Now I'm creating the form for this ...
0
votes
2
answers
129
views
Web form repeatedly resubmits itself after submission by Apple users [closed]
I have a .php file on the web which contains an html form. That form (in case it's relevant) calls the original .php file when a user presses "Submit". That is, the file is called newform....
Advice
0
votes
4
replies
63
views
Using an a hreft link to target a specific value in a dropdown list
I am just wondering if it is possible to use an ahref link to target a page with a dropdown and then have the dropdown show the selected option once the page loads?
e.g
<div class="content&...
Advice
0
votes
5
replies
71
views
How to localise submit buttons in HTML forms
I am building a multi-lingual website and want to localise the captions shown on buttons in a form.
<form action="check.php" method="post">
<input class="btn btn-...
Best practices
0
votes
2
replies
91
views
Best approach to make a form with multiple models with laravel inertia and react
I'm currently learning inertia with react after using livewire and finding myself quite limited so I'm making a sample project that makes invoices to practice making forms and saving data to a ...
Advice
0
votes
0
replies
27
views
Sharepoint Microsoft Forms
For a specific need, I would be able to list all Microsoft Forms stored on my 365 account.
I would like to be able to export to .CSV, Excel or other kind of file a list with the title of the form and ...
1
vote
0
answers
154
views
How to create optional value with Tanstack form and Zod?
How to create optional value with Tanstack form and Zod?
<script setup lang="ts">
import { useI18n } from 'vue-i18n';
import { z } from 'zod';
import { revalidateLogic, ...