Posts by Doan Casotti • 453 points
10 posts
-
0
votes1
answer1690
viewsA: How do I limit the size of the text area in a form in Contact Form 7?
Hello @nos139 you can try to limit the amount of characters in this format: [textarea* your-message minlength:10 maxlength:140] [count your-message] [textarea* your-message minlength:10…
-
0
votes1
answer119
viewsA: First page header printing is different from the rest
I’m not sure if this will resolve due to your question try to check the following settings. may also be something related to automatic adjustment. If you do not resolve your question, enter more…
crystal-reportsanswered Doan Casotti 453 -
0
votes1
answer54
viewsA: Crystal Report does not allow creating parameter
Pass a value for the parameter: I made an example with numeric type follows below:…
-
4
votes2
answers572
viewsA: Get value from inside a C#string
You can find the content of > by the Method IndexOf: string valor = teste.Substring(teste.IndexOf(">")+1).Trim(); Or Use a Split: string valor2 = teste.Split('>')[1].Trim(); Example: public…
c#answered Doan Casotti 453 -
4
votes2
answers1405
viewsA: Add a checkbox column to the datagridview
It can be done through itself datagridView, Follow the steps: Next screen will appear Edit Columns. Just select from the TYPE option datagridViewCheckBoxColumn and finally click on Add.…
-
3
votes2
answers46
viewsA: How to have access to Label again in Visual Studio
As mentioned by @Linq in the comments, you can use the window Document Outline and access any control on Form Or, at the window Properties you have a combo, with the controls of the Form also:…
-
1
votes1
answer74
viewsA: Adding value in the picturebox
You can use the method Find of the control or form in which the picturebox are inserted: for (int i =0; i < 5; i++) { ((PictureBox)this.Controls.Find("pb" + i, true)[0]).Image = null; } ps. Make…
-
2
votes1
answer333
viewsA: How to set position of objects in form in full screen
Use the Anchor property as the illustration below. pass this Anchor property to None leaving without any selection inside the property.…
c#answered Doan Casotti 453 -
2
votes2
answers76
viewsA: Problem in consultation with Join
Check that you have columns with different values... Obs: fields in YELLOW you cannot use an aggregation function SUM with different values on lines. Note: In this case the column would be deleted…
-
3
votes1
answer235
viewsQ: Dotnetzip zipping file without folder directory
I am using dotnetzip to zip a file but the zip file takes the directory root of the file, wanted to zip only the file without the directories: public static void Zipar(FileInfo file) { using…