i will attempt to explain further, to eliminate issues reading handwriting we would like to use a vba form to enter the relevant information onto a doccument that will then be sent into the office to process payment
heres the complete code so far:
Private Sub ADDCOMMODITY_Click()
Selection.GoTo What:=wdGoToBookmark, Name:="COMMODITY"
Selection.TypeText Text:=COMMODITYBOX
Selection.TypeParagraph
End Sub
Private Sub ADDWEIGHT_cLICK()
Selection.GoTo What:=wdGoToBookmark, Name:="WEIGHT"
Selection.TypeText Text:=WEIGHTBOX
Selection.TypeParagraph
End Sub
Private Sub COMMODITYBOX_Change()
End Sub
Private Sub FINISH_Click()
Unload NFfrm
End Sub
Private Sub REGOTXT_Change()
End Sub
Private Sub regsave_Click()
Selection.GoTo What:=wdGoToBookmark, Name:="rego"
Selection.TypeText Text:=REGOTXT
End Sub
Private Sub WEIGHTBOX_Change()
End Sub
hope this is more useful
|