| 614mobile Beginner
 
 
 Joined: 19 Jun 2004
 Posts: 3
 Topics: 2
 Location: Bayville, NY
 
 | 
			
				|  Posted: Sun Jul 25, 2004 4:11 pm    Post subject: Map Size |   |  
				| 
 |  
				| I have been asked if I can send a map that is smaller than 24,80 in order to overlay the previously sent map (without using erase) so that a portion of the previous map is still visible on the screen.  Is it possible to define a map for (12,80) for this purpose?  Is there another means to accomplish this request?  Thanks so much for any assistance. 
 Karen
 |  | 
	
		| warp5 Intermediate
 
  
 Joined: 02 Dec 2002
 Posts: 429
 Topics: 18
 Location: Germany
 
 | 
			
				|  Posted: Mon Jul 26, 2004 1:30 am    Post subject: |   |  
				| 
 |  
				| Yes, you can do this.  Here is an example (just an excerpt of the map definition): 
  	  | Code: |  	  | MAPSET   DFHMSD TYPE=MAP,LANG=COBOL,MODE=INOUT,TIOAPFX=YES,            -
 STORAGE=AUTO
 ML55TRA  DFHMDI COLUMN=1,LINE=23,SIZE=(002,080),                       -
 CTRL=(FRSET,FREEKB,HONEOM)
 FEHLERZ  DFHMDF POS=(01,001),                                          -
 LENGTH=076,                                             -
 ATTRB=(ASKIP)
 DFHMDF POS=(01,078),                                          -
 LENGTH=001,                                             -
 ATTRB=(ASKIP)
 FRAGE1   DFHMDF POS=(02,001),                                          -
 LENGTH=015,                                             -
 ATTRB=(ASKIP)
 ANTWRT1  DFHMDF POS=(02,017),                                          -
 LENGTH=001,                                             -
 ATTRB=(UNPROT,IC)
 
 | 
 |  |