错误3265:此集合中找不到项目
它存在!我检查了。这个简单的模块已经工作了两年。现在,它突然没有:
Label DraggingLabel;
private void Label_MouseDown(object sender, MouseButtonEventArgs e)
{
DraggingLabel = sender as Label;
if (e.LeftButton == MouseButtonState.Pressed)
DragDrop.DoDragDrop(DraggingLabel, DraggingLabel.Content, DragDropEffects.Copy);
}
private void Label_Drop(object sender, DragEventArgs e)
{
Label originalsource = e.OriginalSource as Label;
Label lblToDrop = sender as Label;
string fromContent = lblToDrop.Content.ToString();
lblToDrop.Content = (string)e.Data.GetData(DataFormats.StringFormat);
DraggingLabel.Content = fromContent;
}
答案 0 :(得分:0)
谢谢Skippy。我其实在想它是一个网络问题。我今天运行了完整的程序,这个模块运行没有错误。因此,当它无法“找到”表时,由于网络中断。可以在Access中看到表但OLAP进程不能。这是那些不能告诉您真正原因的不准确错误之一。 好吧!