|
"Save" is form-level function; primitive controls and UC's are bit players to the form. In the Save / button event (on the form), retrieve the "data object" (view model) which consolidates all the UI / form's input, validate it, then save the contents or display an error.
It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it.
― Confucian Analects: Rules of Confucius about his food
|
|
|
|
|
When reading this discussion my actual question is :
why a UserControl ? For me a UC is an object which is used more than one time (in a different context).
Basicly (so my opinion) we have a Data-Input object (Form) - so when I see it in OOP-context the question (for me) must be : which is my main-object and which are the sub-objects with which functionality ?
This is also (or primary) a reply to the OP ...
|
|
|
|
|
Ralf.
I'm developing a system with many forms and many of them use these buttons. And these forms have different fields in different amouunts.
|
|
|
|
|
Without seeing his "form", I can make few assumptions about the merits of his architecture.
I have a "user control" that presents "books", complete with tables of contents, incremental searching, etc. This UC itself contains more UC's: virtual keyboard controls (single and split), content sizing sliders, navigators, etc.
I'm trying to describe, in general terms, my "model" for "model <-> view"; UC's are fat controls.
In "data object" terms, I sometimes put a public interface on the UC, and pass the whole thing around. "Live" if you will. All depends on how you build it ... and I "love" code-behind. My apps are also in production.
It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it.
― Confucian Analects: Rules of Confucius about his food
modified 30-Jul-20 13:35pm.
|
|
|
|
|
Adding to what Richard said:
Events - C# Programming Guide | Microsoft Docs
It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it.
― Confucian Analects: Rules of Confucius about his food
|
|
|
|
|
I suggest you handle field validation inside the UserControl, and only enable the 'Save Button when all fields have appropriate values ... assuming the validation code can be located inside.
There are several strategies you can use including using the built-in validation facilities in WinForms [^], [^]. A valuable discussion here: [^].
A simple strategy is to define Event Handlers for all the input fields for 'Enter and 'Leave, and check for values. Use a boolean flag to keep track of whether all fields are valid.
For an example of a complex full-featured validator see CP article: [^]
«One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali
modified 29-Jul-20 10:31am.
|
|
|
|
|
I would do it like this :
Outside your UserControl you have to check if all fields are filled (and perhaps if all information is valid) - because the Information is outside the UserControl.
Your UserControl gets a Property which give this (boolean) Information to it.
This Check could be done each time one of those fields is changed ... or with an Event which comes from the UserControl. But I prefer the 1st ...
|
|
|
|
|
Hi, Ralf. What to do so when the user clicks on the Save buttons it first verify the fields? I mean: the verification must ocur just when the user clicks on the Save buttons. You know how to do this?
Thanks.
|
|
|
|
|
Hi ...
in my opinion it would be not so good to generally allow the using of the Save-Button if the state of the data-field is not checked. In my applications I prefered allways the way of "check input when changes" and give a valid-information (and allow further action).
If you want to do it the other way round you should give an event to "outside" of your UserControl to do the check and the Check itself has to start (when all data is valid) perhaps a public method inside your UserControl which does the action (or raise another Event). What should happen if the Check isn't valid ? Who should give the Message to the User - the UserControl ? Or a Messagebox from the Ckeck-method ?
You see : there are serverall ways to do this ...
|
|
|
|
|
Hi, Ralf.
I used your idea and it's working fine. The only (minor) problem is that the system can't show the user a message to tell him what to correct. Anyway, as I said, is a minor problem. If you have any sugestion about this, please let me know. And thank you for your help.
|
|
|
|
|
Perhaps I have ...
Give me some more details about your project ...
Basicly the Textbox (or whereever you do the input) "knows" what kind of data is required. Here you can decide directly what is wrong ...
But perhaps you write some more ...
|
|
|
|
|

Hi, Ralf.
My system has a main form which is used as an MDI Parent. From it the user can access many other screens to control the system. Some of these screens make the registration of clients, suppliers, banks and others. In these registration screens, there are fields connected to columns in tables. When fields are mandatory, the system must verify what was written there. That’s my problem. At this moment this verification is working well, but it does not warn the user about a wrong entry or an empty field which should be filled. My User Control now has the following code:
private void SalvarButton_Click(object sender, EventArgs e)
{
if (PermSalvar)
{
ClickSalvar?.Invoke(this, e);
EmEdicao = false;
}
}
I created a variable (PermSalvar) which indicates whether the data can be saved. In the main program there is a routine named ValidaCampos which is called in the leave moment of the fields of interest, as you can see below.
private void ValidaCampos()
{
if (tb_Nome.Text == "")
botoes1.PermSalvar = false;
else
botoes1.PermSalvar = true;
if ((tb_Id.Text == "") || (!int.TryParse(tb_Id.Text, out int cp)))
botoes1.PermSalvar = false;
else
botoes1.PermSalvar = true;
}
private void tb_Nome_Leave(object sender, EventArgs e)
{
ValidaCampos();
}
private void tb_Id_Leave(object sender, EventArgs e)
{
ValidaCampos();
}
So, if you could give me any advice, it would be very welcome.
Thank you.
|
|
|
|
|
I question the validity of logic that flags an error (and continues) and then turns it off under another condition further on.
"Initialize" once.
if (tb_Nome.Text == "")
botoes1.PermSalvar = false;
else
botoes1.PermSalvar = true;
if ((tb_Id.Text == "") || (!int.TryParse(tb_Id.Text, out int cp)))
botoes1.PermSalvar = false;
else
botoes1.PermSalvar = true;
It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it.
― Confucian Analects: Rules of Confucius about his food
|
|
|
|
|
I test al fields that must be filled. In one case in this form, the contents must be integer. If all fields are correct the variable PermSalvar receives a true value. If at least one of them is not correctly filled, that variable (which is inside the User Control and has false as its default value) remains false.
And the Save action only performs if the variable is true.
Do you have any sugestion? Plase tell me.
Thanks.
|
|
|
|
|
Some time ago I created an application with a similar behaviour (normally I create HMI-applications for machines).
I found that the users sometimes entered senseless data into a Textbox. So I created (with the TextChanged-Event) a method to those Textboxes which data has a special format (for example : it must have a legal date or an Integer value or a Phone-number or ...) and give a User-message (MessageBox) to correct this. In the same time I disable the Save-Button.
Perhaps this approach helps you ...
|
|
|
|
|
I tried your suggestion some time ago. It worked fine, but I could not prevent the buttons to change their enable status. That’s why I’m trying something different.
I continue accepting suggestions and thanks.
|
|
|
|
|
Why don't you can disable the Button ?
Please explain ...
|
|
|
|
|
Enable and disable the buttons depend on which buttons was pressed. When the user enters the screen, the Save and Cancel buttons are disabled. The other 3 are enabled. When user presses New or Edit buttons, the enable state changes. It's programmed in the User Control, which is generic.
|
|
|
|
|
There is no contradiction betwenn my suggestion and your realisation ...
If your UserControl has one (or more) Property, which gives this further information to it (for example "the entered data is not valid") you can add all the behaviour you want to have. If you want to work with an UserControl for those functionality it only depends on the "interface" to the rest of the application.
|
|
|
|
|
$(document).ready(function () {
$('.box-item').draggable({
cursor: 'move',
helper: "clone"
});
});
function GetActions() {
$.ajax({
url: "/Service.asmx/GetList",
type: "GET",
dataType: "json",
data: {
},
contentType: "application/Json; Charset= Utf-8",
success: function (data) {
var list = "";
$.each(data.d[0][0], function (index, item) {
list += "<div itemid='" + item.Id + "' class='card card-body
box-item'>" + item.Value + "</div>";
});
$("#container1").html(list);
},
error: function (response) {
alert(response);
}
});
}
the box item not using in my jquery function ? some help
|
|
|
|
|
And what does this have to do with C#?
Use the right forum, or ask here: Ask a question[^]
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
I want to add after adding, I had used the datagriedview which works well but for other reasons of redu I decided to use a listview but with this code it adds me that after the second addition, it is to say when I make a first addition, my textbox which receives the sum remains 0 and at the second addition it takes the value of the first and at the third it adds the first and the second, it does not add all the additions, and I do not that's not why. I need an explanation to review what is wrong in the code
for (int i = 0; i < listView1.Items.Count; i++)
{
total_achat += Convert.ToDecimal(listView1.Items[i].SubItems[4].Text);
}
Lbl_Affich_TotalCmd.Text = total_achat.ToString();
|
|
|
|
|
We can't tell: we don't have access to your code or data while it is running.
So, it's going to be up to you.
Fortunately, you have a tool available to you which will help you find out what is going on: the debugger. If you don't know how to use it then a quick Google for "Visual Studio debugger" should give you the info you need.
Put a breakpoint on the first line in the function, and run your code through the debugger. Then look at your code, and at your data and work out what should happen manually. Then single step each line checking that what you expected to happen is exactly what did. When it isn't, that's when you have a problem, and you can back-track (or run it again and look more closely) to find out why.
Sorry, but we can't do that for you - time for you to learn a new (and very, very useful) skill: debugging!
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
ok thank you i'm getting started
|
|
|
|
|
You're welcome!
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|