Hi
I have this in form_current
Billede46.Picture = Billede.Value
To get the path from billede.value to Billede46.Picture and then show the
picture
its work allright but if Billede.Value is emthy then i get an error,
is there not away where i can say
if billede.value is emthy then
I have try if billede.value = "" but dosn't work
regards
Alvin
Bob Hairgrove - 18 Feb 2006 11:31 GMT
>Hi
>
[quoted text clipped - 8 lines]
>
>I have try if billede.value = "" but dosn't work
Try this instead:
If Not IsNull(Billede) Then
Billede46.Picture = Billede
EndIf
The Value property is the default for textbox controls, so you don't
have to write it explicitly.
--
Bob Hairgrove
NoSpamPlease@Home.com
alvin Kuiper - 18 Feb 2006 12:17 GMT
Thanks
Its working
Alvin
> >Hi
> >
[quoted text clipped - 21 lines]
> Bob Hairgrove
> NoSpamPlease@Home.com