View Single Post
  #4  
Old 03-18-2006, 01:27
kittmaster kittmaster is offline
Friend
 
Join Date: Feb 2005
Location: USA
Posts: 30
Rept. Given: 0
Rept. Rcvd 0 Times in 0 Posts
Thanks Given: 0
Thanks Rcvd at 1 Time in 1 Post
kittmaster Reputation: 0
I found my solution, thanks to those who responded:

This is what it was:
Code:
decimalformat           db "%d",0
Quote:
should be something like
Code:
"%0Xh",00h
I found that this is almost right > it adds an h to the string value so I adjusted it like

should be
Code:
"%0X",00h

this is what nailed it. Should have realized that the call to the string is necessary and then needs a decision as to what TYPE of output it should be. So I've adjusted my models to include a program switch that will display both if needed.

Thanks for this...........Life saver!!

Chris
Reply With Quote