home *** CD-ROM | disk | FTP | other *** search
- *******************************************************************************
- * PROGRAM: Music.h
- *
- * WRITTEN BY: Borland Samples Group
- *
- * DATE: 1/94
- *
- * UPDATED: 5/95
- *
- * REVISION: $Revision: 1.11 $
- *
- * VERSION: Visual dBASE
- *
- * DESCRIPTION: This is a header file containing various constants used by
- * program/form files in the Musical Methods application.
- *
- * PARAMETERS: None
- *
- * CALLS: None
- *
- * USAGE: #include "Music.h"
- *
- *******************************************************************************
-
- #ifndef MUSIC_H
- #define MUSIC_H
-
- #define MUSIC_APP_TITLE "Musical Methods"
- #define ALLTRIM(s) ltrim(rtrim(s))
- #define TRIMSTR(n) ltrim(str(n))
- * h = height
- #define PB_ROW(h) h - 2
- * w= panel width,p = pb prompt, t = total # pb's, n = # of current pb
- #define PB_COLUMN(w,p,t,n) 1+(int((w-2-((t*(len(p)+4))+t-1))/2)+((n-1)*(len(p)+5)))
-
- #define MAX_FORM_WIDTH 101
- #define MIN_FORM_HEIGHT 12
-
- #endif
-
-