break down your code and post it. I read you other post. POst your code which only applies to the Checkboxes.. We'll take a look at it.
Whe replying, use the #Code/#code - its much easier to view.
maybe this will help. If you want to export yes/no value to a word check box see this post:
http://www.access-programmers.co.uk/forums/showthread.php?t=105426
Solution
Incase anyone wanted to know..here is the solution:
Dim path As String
Dim objWord As Object
path = CurrentProject.path & "\file.dot"
Dim dtnow As String
DoCmd.SetWarnings False
Set objWord = CreateObject("Word.Application")
objWord.Visible = False 'True is visible...
Hi all,
Does anyone know how to Export Yes/No Value to Word Checkbox? This is what I have so far.
Dim path As String
Dim objWord As Object
pathx = CurrentProject.path & "\file.dot"
Dim dtnow As String
DoCmd.SetWarnings False
Set objWord = CreateObject("Word.Application")...
I think I will add a MSG box to ask "are you sure you want to delete?" Then save the record to a table called DeleteHistory....then delete the orginal.
thx
Hi All,
Is there an easy way to show that a record has been deleted (besides "audit trail")?
for example:
if record_id 2 was deleted, the fields can show "deleted"
thx
Sounds like the combo box is bound to a field in the the record source. Delete the combo box and used the wizard to create a new one. Dont choose the option that asked you to have it look up record on the form...
Hope this helps
I started with "VBA for Dummies" then moved on to "Expert One-on-One Microsoft Access Application Development by Helen Feddema May 2004", plus this forum is price less.
Good luck
you can also add the undo command on certian conditions. on exit add #DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, , acMenuVer70#
for example:
if isnull(me.textbox) then DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, , acMenuVer70
good luck