Can I add text after the Dcount formula in unbound text field of Ms Access Form? - ms-access-2010

I want to add a text after Dcount formula in Ms Access Form. I use the unbound text field to use the DCount formula however I would like to add 'text' within the same field after Dcount formula finishes. Please advise how do I do that?

Related

In a PDF, How to auto populate one field using other field text?

I have a 54 pages PDF file. In this PDF, I have some fields like Full Name, the Phone number, etc that repeats more than 10 times. How can do like When I enter Full name one time and all of the remaining full name fields can be filled automatically using Adobe Acrobat?
I hope I asked my question clearly. Thank you for your time and help.
The easiest is, when all properties of the field (font type, size, color, etc.) are the same, to simply copy the field to the other pages.
The field value is a so-called field level property, which will be the same for all instances of the field.
If you want to have only one place where the value can be entered, and the dependent fields should be read-only, you would have to have a different name for the entry field and display fields. In the entry field, you would then add the following line of code in either the Format or onBlur event:
this.getField("myDisplayFields").value = event.value ;
And that should push the value from the entry field to all fields named myDisplayFields.
And that's it…

Crystal Report display collapse when one field allow can grow

My crystal report display not in correct format when I allow one field of it to "Can Grow".
Before allow "Can Grow" :
After Allow :
So how to solve the problem?
Here is what I have set :
Last edit:
Or try this.
Create a text Object.
Insert all your fields in that text Object base in your order.
How to insert? Cut the field then edit text object then paste.
Then in the properties of text object check the Suppress Embedded
Field Blank Line.
Then You can check also if you want the Can grow of text object
This is the Sample Output inside the Textobject
And the output is this
Cotabato to House is the Company name.
Sinsuat to Philippines is the Address.
Then Numbers is the contact.
They compres because i shorten the size of textobject so that they will execute the funtion of can grow
Your Output must be like this. hmmm
Your Final Output must be like this. No more '[' or ']' that can be seen inside the textobject.
Data was just Sample
If it's possible for you, you can create a section just for this field.
If you put your field which can grows and take 2, 3 or more lines in it's own section it will display all the lines but keep it separate from the other fields.
And in the case that it has one line the display will be like you want as well.
Edit : Advantage of this method : you can create a formula in the suppress formula of this new section, like if your text is null or empty, just suppress the section. Like that you can win some space in your report
Regards,

getting textfield output partly unvisible

In a Drupal content type a need to get the output of a field partly unvisible. These are bank account details, the IBAN.
Normally the field shows 1234567. I need to get xxxx567. I need to show only the last 3 numbers/letters.
Also I need this output in field edit form.
On the display end you could change the output using a simple PHP function in the theme template by grabbing a substring of the field's last three digits and concatenating it with "xxxx" before printing.
You might also consider doing this at the formatter level by using the 'custom formatter' module perhaps?
https://drupal.org/project/custom_formatters
To do this on the edit screen is trickier. I suppose you could do a hook form alter to use PHP to change the field value, but I am afraid you will rewrite the field value when you save the node with the 'xxxx' instead of the real data.
I wonder if it would make sense to 1.) hide the actual field, 2.) create a dummy field that displays the text formatted as "xxxx567" to the user, and 3.) write some javascript that populates the hidden field with the visible field's value if it is changed. Presumably the form would still throw values if the hidden field did not meet formatting requirements.

Mathematical expression in Crystal Reports

I have two fields in a Crystal Report. Open and InProgress. Each field is a result of a separate command.
In my report, I have bound {Open} and {InProgress} to a text field. I want to create a third field with an expression like {Open} - {InProgress} that will calculate the difference.
Can I do this with such an expression, if yes how can it be acomplished?
I found a decent solution. If there is a better way, I will gladly accept that as the answer.
What I did was create a Formula Field, then put the expression I had above {Open} - {InProgress} into that field. I can now use the formula field in the report.

Formatting a text written in a string type field in AX 2012?

Is it possible in AX 2012 to find a particular word/words written in a string type field in AX 2012 table or form based on mouse selection. e.g, I have a field named Memo in my table named test. In that field I have a written a text as:
Hello, We need to confirm you that your < mobileNumber > is successfully attached with your account no. < Account >.
Now, if I open a form and select(highlight) a text mobileNumber written in text field using a mouse. Is it possible to do a formatting for the selected word(mobilenumber).
I need to clarify that, by formatting I mean to modify the display style of that text(e.g, BOLD, ITALIC, UNDERLINE etc.)
OR, Can I add a text field which have all the formatting options available similar as in below figure.
I have researched a lot and actually found a solution. Yes, it is true that we cannot add RichTextBox directly as a control in forms for AX2012 But it can be acheived using class named
"SysInetHTMLEditor"
Just run the above class and see the magic as
It is a separate form in AX 2012, to add richtextbox and controls we can use some methods written in SysInetHTMLEditor class.
In following link, Microsoft have included Richtext as a :FormControlType System Enumeration [AX 2012]
http://msdn.microsoft.com/en-us/library/formcontroltype.aspx
I am sure, Microsoft will include Richtextbox as a controltype in future updates for Ax2012.

Resources