Just a quick tip for fellow newbies. Working with grids and remote views, I've been struggling with displaying .NULL. values. Today I had a .NULL. date value in a grid that I could not get to go away no matter what I typed into the NULLDISPLAY property. I found a Microsoft tip that said you can set the dynamic color to white on white or blabk on black with:
But what I just learned today is my favorite.
Now the word NONE appears instead of the word .NULL. No more going field to field typing in .NULL. handling info. For my application, this will do the job just fine. I hope this helps someone.
Jim Rumbaugh
Code:
IIF(ISNULL(MyField),RGB(255,255,255),RGB(0,0,0))
But what I just learned today is my favorite.
Code:
SET NULLDISPLAY TO "NONE"
Now the word NONE appears instead of the word .NULL. No more going field to field typing in .NULL. handling info. For my application, this will do the job just fine. I hope this helps someone.
Jim Rumbaugh