home *** CD-ROM | disk | FTP | other *** search
- /* Attach and display a shadow border on a VV Designer form */
- /* Caution: call this function only from a begin-form function */
-
- int FASTCALL show_shad(fmp)
-
- FORMPTR fmp;
-
- {
- if(fmp->wnp->shadp == (PTR)NULLP) {
- sw_shad(TRANSPARENT, LSHADOW, BOTTOMRIGHT, fmp->wnp);
- shad_up(fmp->wnp);
- }
- return(TRUE);
- }