I want to get multiple different types values (time, pressure, name, ...) from user. and I want to customize my inputbox. But it take only one value.
Are there any way to solve this situation, or any component to use?
|
I want to get multiple different types values (time, pressure, name, ...) from user. and I want to customize my inputbox. But it take only one value. Are there any way to solve this situation, or any component to use?
| |||
|
feedback
|
|
François is right. You've reached the limit of the tool you've been given. The page you linked to in your comment has an example, but it's presented rather poorly, so I don't blame you for misunderstanding it. It took me a few reads to get, too. At its core is the
Call it like this:
That's a terrible interface for the user, though. There's no way to go back, there's no way to cancel, there's no indication of how long the interrogation is going to last, and there's no way to enforce formats for certain data types. You'll really be much better off if you design a custom form that gets exactly the information you need. You're using a tool that makes designing a form about the easiest thing in the world. Don't resist that. If you need to get the time, the pressure, and the name, then make a form with three input controls. Use a To use it, simply create it, populate its initial values, show it modally, and read the new values out when it closes.
Notice also how I check the result of the Don't worry about this new form class weighing down your project. The two things that have the biggest impact on project size are the SysUtils and Forms units. You've already included those, so the worst of it is already past. Adding a form to a project that already has at least one form doesn't affect the project size much at all, especially not the form I described above, which only has eight controls. | |||
|
feedback
|
|
What exactly do you mean by "inputbox" - a TEdit? There are many different kinds of components for input, which can do many different things. For a name, TEdit is very good - but for time, you may want a calendar control, and for pressure you may want to use a control that looks great for numbers. | |||
|
feedback
|
|
Yes, design a Form! Dialogs.InputBox is designed to get 1 string from the user, quick and simple. If you want the real deal, you have to dig in and code a real Form. | |||||||||||||
feedback
|
|
Rob's Kennedy is right.. An input box is NOT a good option... What exactly are you trying to save ? Exe Space, ressources or source code? Or you just want to save the environment with your "green" code? If you take a look at the InputQuery function you'll see that what it does is create a TForm and it create somes TButtons/TLabels/TEdit, position and show modal the form. Exactly what you would do with a new form that you would add to your project.. beside you can validate, customize the controls and position them and even add hints... Go with the new form... | |||
|
feedback
|
|
You don't have to set every form to auto-create, after you create your form go into project options, select the forms option and move all forms you don't want auto-created to the right. The pattern I most generally use for these non-auto-created forms is something like the following:
the GetValues/SetValues methods populate the dialog from a record or class which holds the values that are used in the routine. I never try to manipulate controls on a form from outside the form but instead write routines to do it in the form itself. | |||
|
feedback
|