Thanks for the info. I just removed the file from the install and
that seemed to make the installation work, now I am having a problem
with the datagrid controls on the forms.
Whenever the forms are opened, I query up a recordset and then set
the datagrid.datasource property to the recordset. It works fine on
my machine, but on another WIN2K machine I get an error (cannot
initialize data bindings).
Private Sub Form_Load()
On Error GoTo err_trap2
'Get Contact History Data
Set rs = New ADODB.Recordset
With rs
.CursorType = adOpenDynamic
.LockType = adLockOptimistic
.CursorLocation = adUseClient
.ActiveConnection = mconConnection
.Source = [I put a sql statement here]
.Open
End With
rs.Sort = "Call_Date DESC"
rs.MoveLast
Set DataGrid1.DataSource = rs 'fails
I know this must be easy, but for the life of me I can't figure it
out.
JED
--- In vbra@y..., "Shawn K. Hall" <vb@r...> wrote:
> Come on now Jed,
>
> Did you really have to send this to three groups? :(
>
> > package and deployment ... error registering
> > MSSTDFMT.DLL.
>
> Have you considered not including it in your package, or if you must
> include it, use one of the redistribution cabs from MS instead?
> http://support.microsoft.com/support/kb/articles/Q193/3/66.ASP
>
> Other possibly relevent material:
> http://support.microsoft.com/support/kb/articles/Q178/3/54.ASP
> http://support.microsoft.com/support/kb/articles/Q223/1/27.ASP
> http://support.microsoft.com/support/kb/articles/Q189/7/43.ASP
>
> Regards,
>
> Shawn K. Hall
> http://ReliableAnswers.com