Hi,
I have a spreadsheet that contains VISIO OLE Objects. However,
when you embed them into excel they do not reside within a cell -
is this correct? Is there anyway of embedding OLE objects within
a cell such that access can 'see it' and allow it to be transferred into
an access table...
Im using the OutputTo function to generate a file, which works OK. However, if the user quits cancel in the file dialog box you get an error saying the OutputTo action was cancelled. How do you trap this error,
so no error box is displayed.
Thanks.
Hi,
Im using DLOOKUP to determine whether a field is null. Is there a quicker
way in VB? I cant just use SQL because I need to identify the name of the null field to show to the user.
Thanks.
Hi,
In the DLOOKUP function you specify the table name as a string. How can substitute this string for a variable, that I can set programatically to search different tables. Also for the field names?
Thanks.
Me.Undo
Hi Rich,
When I change data it loads another form to sanction the change with a change number, you can either hit ok or cancel on this new form. Upon hitting cancel I tried Forms![Name of form].undo
I cant use me, because im not currently on the form to change back to original data.
Hi Ive got this code:-
Function Old_values(Object As Form)
Dim ctlTextbox As Control
For Each ctlTextbox In Object.Controls
If ctlTextbox.ControlType = acTextBox Then
ctlTextbox.Value = ctlTextbox.OldValue
End If
Next ctlTextbox
End Function
I want to pass into it...