Parity Bit Checking - system

Would anyone know how to even start on a problem like this? I don't understand how to fill out the table.
enter image description here

Related

Two pf-statuses with the same function code and different descriptions?

I have a simple problem and I wonder how to solve it. I already searched online but probably dont know the right key words to find the solution in the internet. I am sure, that somebody else have had this issue before me :)
I have a program with e.g. two dynpros. Each dynpro has an own pf-status. Now I want both pf-status to have a button with the function code "CONFIRM", but with a different function text or description or icon.
This seems to be impossible by now, as if I change the description or icon in the one status, it also changes in the other one.
Is it possible to handle the same function code in 2 different pf-status within one program with two different descriptions or icons?
I will change the function codes if I dont find the answer. But I really want to know!
Many thanks in advance

how to change colour of the text entered in label as we enter the desired regular expression in password text field?

I am new to objective C and I dont know if this can be done without any library or not but if yes kindly let me know...
I have a view in which I have added a button & textfield with some character like "A b # 1 6". Here I need to change the color of characters as I enter the password.
I mean to say when I enter T color or 'A' changes, p is pressed 'b' color changes and so on if I enter special character that color changes and minimum lenth is 6 so when I enter 6 character color of 6 changes.
I tried it with using regular expression but i need this functionality.
for refrence I am adding Image.
I have updated my code instead of labels I have taken Buttons to show the changes. Here is my code:
Now I want to know when user delete character from textfield the color should get back to normal color. I mean if user deletes "A" then button roundButtonCapital should change to normal button.
I hope I am clear. Please let me know if any doubt.
https://drive.google.com/file/d/0B3EymICOjqeNM01zcEQ4eUN0eUk/view?usp=sharing
Now I want to know when user delete character from textfield the color should get back to normal color.
At a guess when checking the user input you are only setting the color if the particular condition - uppercase, length, etc. - is met. You should always set the color, to the "passed" color if the condition is met and to the normal color if it is not. Do this on every change to the user input, addition or deletion, and your indicators will always be correct.
Note: You did not edit your question to include minimal code fragments, posting a link to a file is no substitute for this. You need to isolate the problem, which is what you should be doing anyway in trying to solve it, show the code for that issue in the question.
In this case you maybe could have include the code for a particular test - uppercase, digit, etc. - and explain what it was doing right and what didn't work. Maybe here because I don't know my answer is correct, it is a guess - to be sure I'd have to scroll through in detail 5 pages of code on a tablet I'm currently typing this on, essentially debug your code and that is not what Stack Overflow is here for.
You have help people help you, and show you've put effort in, or people just won't be willing to put in effort to help you.
That said, I hope the guess helps, and stick with SO asking and answering questions!

IntelliJ v14, how to bring up a method parameters information via keyboard or mouse input?

I really like how IntelliJ displays the information of the type of parameters that you are required to fill in as you are writing the code. The problem is that this info sometimes disappears if u click somewhere to check something etc. I never quite know how to get it to display that information again in same fashion. So I always spend some time to fiddle around until it displays that info again in the same fashion. I know you can hold down on ctrl and hover over the method name to bring up parameters information but its not quite the same and it then does not highlight on what parameter you are currently on. IntelliJ also brings up required parameters type of information when you are starting to go wrong. It brings up this big separate box and you can get very clear view of what needs to be done. I've taken a screenshot of the type of information that I'm on about. Both of them are on the same pic.
Please check it out.
My question: is there a way to bring this information up via keystrokes or mouse input at will? I've tried to google for an answer but I haven't had any joy. Please advise as I'm sure someone else might like this information too.
Thank you.
PS. I know that a good code does not usually have that many parameters but in my case there is not much that can be done.
Default shortcut for that is CTRL-P when cursor is inside the brackets.

Read only textbox with different text colors?

I've been wondering this question for a while and my friend recommended me this website, so yeah, I'm new here.
I'm trying to learn VB.net but I've found nothing about this. Can anyone help me?
I have a textbox which is read only. Inside the textbox, I have text that says "Checking" (in blue letters)
This waits about 20 seconds usually, and then below it it says either "Completed" (green text) or "Failed" (red text) while the checking still remains blue.
Is there a way to do this? Sorry that I'm not explaining stuff the best but I just need help.
Thank you!
it will be awesome if you tell us what you actually want to accomplish, since it is not very specific but what I understood you want to wait for 20 seconds for something to be accomplished, so I will recommend System.Threading.Thread.Sleep and there should be a method that allows you to know your process is ready to go. to change the color lblGrade.ForeColor = Color.Orange should do the trick.

IE is submitting placeholder text on empty fields

I'm having an issue where IE is submitting the placeholder text as actual data to the server. The field is optional, so it'll contain placeholder text like
"Optional Description (e.g. my category)"
The problem is, if the user doesn't enter anything, then the form submission will submit that text which gets saved in the database. Does anyone know why it's doing this and/or how to fix it? I was gonna hack it and just check if the value is the same as that text, then replace it with an empty string, but I have a several fields like this and... well... hacks are bad.
Any ideas?
I was about to delete this question, but after a lot of digging, I found out that the culprit was jQuery.html5form.js. I removed it and the problem went away. I will submit an issue with them. I wanted this to remain here in case someone else happens to run into this unlikely issue.