Problems with Runtime

D

Daniel

Hi,

I've created a form that's bounded to a certain View.

one of the editbox's in the form is bounded to a VB
function that checks the value's of the current record
and returns a value according to them.

On my Access XP (on WinXP Pro) it works OK, but on the
runtime of my clients (Win2K-SP4, OfficeXP-SP2, AccessXP
Runtime & Last updates) it displays: #Name?

ideas anyone ?
 
J

Jonathan Parminter

-----Original Message-----
Hi,

I've created a form that's bounded to a certain View.

one of the editbox's in the form is bounded to a VB
function that checks the value's of the current record
and returns a value according to them.

On my Access XP (on WinXP Pro) it works OK, but on the
runtime of my clients (Win2K-SP4, OfficeXP-SP2, AccessXP
Runtime & Last updates) it displays: #Name?

ideas anyone ?
Hi Daniel,
Have you checked that the library that contains your vb
function is a part of the access runtime libraries?

Luck
Jonathan
 
D

Daniel

It's a standard VB function:

Function Check() As String
if me!Pos="0" then
Check = Me!Pos & me!SerialNo
else
Check = Me!SerialNo
end if
End Function

[Pos] and [SerialNo] are fields on the bounded table, and
the EditBox bounded to this function has RecordSource =
=Check()

On My machine (MOD XP) and on machines with office 2003
it's working.

can't figure this out. :-(
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top