|   |  
 レジストリエディタを使って、 
 
 HKEY_CURRENT_USER\Software\Hidemaruo\TuruKame\Config 
 
 の、 
 
 colIcon    の値をcolIcon2    にコピーする、 
 colSubject の値をcolSubject2 にコピーする、 
 colSender  の値をcolSender22 にコピーする、 
 
 みたいな感じにしていけば同じ列幅になると思います。 
 
static char szKey_cxIconColumn[] = "colIcon"; 
static char szKey_cxSubjectColumn[] = "colSubject"; 
static char szKey_cxSenderColumn[] = "colSender"; 
static char szKey_cxDateColumn[] = "colDate"; 
static char szKey_cxTransmitColumn[] = "colTrans"; 
static char szKey_cxSizeColumn[] = "colSize"; 
static char szKey_cxExtraColumn[] = "colExtra"; 
 
static char szKey_grep_cxIconColumn[] = "gcolIcon"; 
static char szKey_grep_cxSubjectColumn[] = "gcolSubject"; 
static char szKey_grep_cxSenderColumn[] = "gcolSender"; 
static char szKey_grep_cxDateColumn[] = "gcolDate"; 
static char szKey_grep_cxTransmitColumn[] = "gcolTrans"; 
static char szKey_grep_cxSizeColumn[] = "gcolSize"; 
static char szKey_grep_cxExtraColumn[] = "gcolExtra"; 
static char szKey_grep_cxFolderColumn[] = "colFolder"; 
 
static char szKey_grepfolder_cxIconColumn[] = "colIcon2"; 
static char szKey_grepfolder_cxSubjectColumn[] = "colSubject2"; 
static char szKey_grepfolder_cxSenderColumn[] = "colSender2"; 
static char szKey_grepfolder_cxDateColumn[] = "colDate2"; 
static char szKey_grepfolder_cxTransmitColumn[] = "colTrans2"; 
static char szKey_grepfolder_cxSizeColumn[] = "colSize2"; 
static char szKey_grepfolder_cxExtraColumn[] = "colExtra2"; 
static char szKey_grepfolder_cxFolderColumn[] = "colFolder2"; 
 
			 | 
		  
	 |