Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com X-Sent: 18 Jul 2002 04:30:12 GMT Message-ID: <002801c22e13$ce73d830$0200a8c0@TCS012593> From: "Abraham Backus" To: Subject: Fw: windres question from way back Date: Wed, 17 Jul 2002 21:30:11 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 This is in response to a question that was asked of the list back on Dec 12, 2000 with regard to embedding bitmaps in dialog boxes. I'm porting an old project (created in VC6) to cygwin and hit the same problem. VC6 does this: CONTROL 102,IDC_STATIC,"Static",SS_BITMAP,0,0,101,179 where 102 is the id in my resource.h for IDB_ENDBMP, which is defined later in my .rc file: IDB_ENDBMP BITMAP DISCARDABLE "end.bmp" These are the changes that I made that worked for me: CONTROL "ENDBMP",IDC_STATIC,"Static",SS_BITMAP,0,0,101,179 and for the bitmap entry: ENDBMP BITMAP DISCARDABLE "end.bmp" Also, I've found that since the reference is to a string-named resource like this (e.g. the reference is via the string "ENDBMP", rather than the integer 102 via the constant IDB_ENDBMP), there was no longer a need for my IDB_ENDBMP identifier in resource.h. -Abe -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/