0

我正在使用 QBFC 创建 silverlight 应用程序和集成 Quickbooks 数据。

我正在从 Quickbooks 中打开的 silverlgiht 应用程序中浏览公司数据库名称。当我这样做时,我会收到类似File in use 的错误。

如何从 Quick-books 中打开的浏览按钮获取文件名。

我按照下面的代码开始了快速书分离。

  sessionManager.OpenConnection( "", "Account sample" );


  sessionManager.BeginSession( Filename, ENOpenMode.omDontCare );
4

1 回答 1

0

The BeginSession call should be replaced with the file name that the user selected with your open file dialog. I would also suggest using OpenConnection2 if you're using the newest SDK. Here's a sample, though I've not really used Silverlight:

OpenFileDialog dlg = new OpenFileDialog();
dlg.Filter = "QuickBooks Files (*.qbw)|*.qbw";
if(dlg.ShowDialog() == true)
{
    sessionManager.OpenConnection2("","Account sample", ENConnectionType.ctLocalQBD);
    sessionManager.BeginSession(dlg.File.FileName, ENOpenMode.omDontCare);

}
于 2013-09-20T14:57:57.780 回答