Date: Fri, 06 Oct 1995 14:08:53 -0400 (EDT) From: Paw Mullit Subject: Question about LadyBug To: djgpp-maillist When I'm compiling the following simple code (only necessary shown) int i; double d; for(i=0;1<10;i++){ d=(double)i;} with gcc -g test.c -o test -lm and starting the LadyBug debugger, I can step through the program and inspect my data with the _ key. But I can only see them in byte or other "unreadable" formats. Is there a way to tell LadyBug that I want to see i's value as a int, and d's value as a double? Like "i=5" and "d=5.0000" Can I can change the Data-window to show my variables like the Watch-window in Borlands debuggers? /Paw Mullit p.t. National Institute of Standards and Technology, Maryland