I am new to Flexicapture. I have a customer id that needs to be 10 characters in length. On the pdf if it is not 10 characters, the image does not print the leading zeros. How can I add the leading zeros so it is in the correct format when I export to my ms sql database? I'm not sure if I create a rule or create a custom action.
Flexicapture 11 How to pad a varchar field with leading zeros
この記事は役に立ちましたか?
0人中0人がこの記事が役に立ったと言っています
コメント
2件のコメント
Assuming your field's type is text, you can add a rule script to the field in order to format it. In VB should be :
If Len(Me.Text) < 10="" then="">
Me.Text = String( 10 -Len (Me.Text),"0") & Me.Text
End if
Hope this helps.
Kind regards,
サインインしてコメントを残してください。