MehulGajjark / excel-connector

Automatically exported from code.google.com/p/excel-connector
0 stars 0 forks source link

Application.StatusBar frozen after pulling a query #22

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Pull a query with the Excel Connector

What is the expected output? What do you see instead?
*Expect to have StatusBar returned.  Instead, the status bar is locked with 
"Query : drawing complete, " & outrow - 1 & " total rows returned"

What version of the product are you using? On what operating system?  With what 
Salesforce.com edition?
*sforce_connect_ee_1602.zip
*Windows 7 with Excel 2007
*SalesForce Enterprise Edition

Please provide any additional information below.
We've fixed this by adding the following code before the End Sub in s_force 
module, sfQuery subroutine:
  RowsReturned = outrow - 1 ' 6.12
  Application.StatusBar = False 'New code to return status bar
End Sub

Original issue reported on code.google.com by npepper@1on1academictutors.com on 17 Feb 2011 at 12:02

GoogleCodeExporter commented 8 years ago
i'll include this in the next build

Original comment by vneh...@gmail.com on 11 Mar 2011 at 4:03