Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Data Grid / VB Win2000 to XP Issues

Status
Not open for further replies.

computergeek

Programmer
May 23, 2001
193
CA
Hello,

We are finally upgrading from WIN2000 to XP. We have a web application that uses the data grid object: classid="CLSID:0002E559-0000-0000-C000-000000000046"

There is VB code embedded with a Cold Fusion page that populates the data grid object. It seems some of the properties and methods have changed. Does any one know where I can find a reference for what I believe is the document collection:

Sub LoadData()
<cfloop index="dataindex" from="1" to="#numsheets#" csvlist = ""
<cfoutput>
theSheet = "oper#dataindex#"
csvlist = Replace("#Sheetlist[dataindex]#", "$$",Chr(13))
With document.all.item(theSheet)
'.screenupdating = False


.screenupdating seems to be no longer valid, but I do not know where to look to find some reference material to tell me what IS valid now...

Thanks,
 
As you asked in the VBA forum, I'd suggest to add the reference and then play with the F2 key (Object Browser).

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Hello,

Sub LoadFormat()
<cfloop from="1" to="#numsheets#" index="theIndex">
.... more code here
This line works on Win2000, how to perform the same task for XP?
#thesheetid#.ActiveSheet.Scroll #thesheetid#.ActiveSheet.Range("A1")
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top