我是VBA的新手,但我学得很快。我需要一些帮助在Microsoft Word中创建必填表单域。如果不填写所有必填表单域,用户应该无法保存或保存并发送文档。
我在网上找到了下面的代码:
Sub MustFillIn()
If ActiveDocument.FormFields("Text1").Result = "" Then
Do
sInFld = InputBox("This field must be filled in, fill in below.")
Loop While
因此,我最近在我的DynamoDB表(8.5亿条记录)中添加了一个生存时间属性。我正在尝试编写一个脚本来回填表中的Time to Live属性。
我想在没有设置生存时间属性的情况下检索这个表中的所有项,这样我就可以使用UpdateItem用生存时间来回填这些项。
在DynamoDB中有没有办法做到这一点?
我有以下自定义模型字段:
script = S3EnabledFileField(bucket=settings.MEDIA_BUCKET, upload_to=...)
在我的forms.py中,我使用了一个ModelForm:
class CreateProductionForm(ModelForm):
name = forms.CharField(required=True)
class Meta:
model = Production
fields = ('name', 'script')
这使得script成为必填表单域。如何