View Single Post
Old 2008-05-09, 11:58   #2 (permalink)
rtv
Portal Developer
 
rtv's Avatar
 
Join Date: Apr 2005
Location: Osnabruck
Posts: 2,477
Thanks: 74
Thanked 95 Times in 69 Posts

Country:

My System

Default

I've found at least a reason for this:

Quote:
if (checkBoxNoMerge.Checked)
dbChannel=new Channel(channel.Name, false, false, 0, new DateTime(2000, 1, 1), false, new DateTime(2000, 1, 1), -1, true, "", true,channel.Name);
else
dbChannel=layer.AddChannel("",channel.Name);
Analog scan obviously has a setting if channels should NOT be merged.
Import however _only_ uses
Quote:
layer.AddChannel("",channel.Name);
Unfortunately this is not a "true" setting but instead a "dumb" gui selection. Therefore the import cannot know whether it is allowed to merge or not...
rtv is online now   Reply With Quote