Aug 17, 2000 #1 TRYP Programmer Jun 20, 2000 136 US offending code : txtAddr2 = resultSetName!STUDENT_LAST_NAME love note: invalid use of null (error # 94) help: any you can spare !
offending code : txtAddr2 = resultSetName!STUDENT_LAST_NAME love note: invalid use of null (error # 94) help: any you can spare !
Aug 17, 2000 #2 listener22 Programmer Jul 10, 2000 154 US You can do the following: txtAddr2 = "" & resultSetName!STUDENT_LAST_NAME The empty string should solve any problems with null records. Upvote 0 Downvote
You can do the following: txtAddr2 = "" & resultSetName!STUDENT_LAST_NAME The empty string should solve any problems with null records.
Aug 17, 2000 1 #3 dpaulson Programmer May 7, 2000 347 CA You can use the immediate if function IIf(expr, truepart, falsepart) txtAddr2 = iif(isnull(resultSetName!STUDENT_LAST_NAME),"",resultSetName!STUDENT_LAST_NAME) Upvote 0 Downvote
You can use the immediate if function IIf(expr, truepart, falsepart) txtAddr2 = iif(isnull(resultSetName!STUDENT_LAST_NAME),"",resultSetName!STUDENT_LAST_NAME)
Aug 18, 2000 Thread starter #4 TRYP Programmer Jun 20, 2000 136 US Thanks sooooo much it worked like a charm... uh, why did it work ???? Upvote 0 Downvote