View Single Post
 
Old 06-20-2024, 07:51 PM
rimmerthecat rimmerthecat is offline Windows 10 Office 2021
Novice
 
Join Date: Jun 2024
Posts: 4
rimmerthecat is on a distinguished road
Default

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
Attached Files
File Type: docx SHED SHEET TESTING JASON.docx (20.0 KB, 7 views)
Reply With Quote