(3.2.2.1) Tankadin Spreadsheet
Moderators: Fridmarr, Worldie, Aergis, theckhd
Re: (3.1.3.1) Tankadin Spreadsheet
I just set my macro security to low and ive never had an error, and the only time ill ever use open office is for this spreadsheet anyways xD. And awesome work Rhi 
- Davitz
- Posts: 25
- Joined: Fri Jan 11, 2008 10:51 am
- Location: Canada
Re: (3.1.3.1) Tankadin Spreadsheet
Rhî wrote:The program can't find or isn't allowed to get access to the requested macro. Do you have macros enabled? Is your security setting for macros high?
I have macro settings saved to medium, and hit the "Enable Macros" button when the dialog box comes up when I open the spreadsheet.
EDIT: I just switched my macro security to Low as well and I still get the error when I try using any of the macros in the spreadsheet.
-

duriek - Maintankadonor
- Posts: 77
- Joined: Fri Sep 26, 2008 9:48 pm
- Location: New Jersey
Re: (3.1.3.1) Tankadin Spreadsheet
Latest Open office Calc versions installed? All I can say, that these macros are doing their work at my PC.
- Rhî
- Posts: 305
- Joined: Fri Sep 21, 2007 4:41 am
Re: (3.1.3.1) Tankadin Spreadsheet
Rhî wrote:Latest Open office Calc versions installed? All I can say, that these macros are doing their work at my PC.
Yeah I downloaded the latest version of Open Office last night when I downloaded the PTR spreadsheet. I did a little more research on the problem myself and some people getting scripting framework issues were saying that they were having profiling issues and that the data from those profiles (from older versions of open office) were hanging around still and complicating things when upgrading to a newer version. I'm in the process right now of completely uninstalling all traces of open office from my computer and I will download and install the latest version when I'm done with that. I'll give you an update on my situation when I'm complete... hopefully this fixes the errors.
-

duriek - Maintankadonor
- Posts: 77
- Joined: Fri Sep 26, 2008 9:48 pm
- Location: New Jersey
Re: (3.1.3.1) Tankadin Spreadsheet
Ok I just finished uninstalling all components of open office on my computer and downloaded and installed the newest version right after that. I opened the spreadsheet and I am still running into the same errors. Would you happen to have any other ideas of what the problem might be?
-

duriek - Maintankadonor
- Posts: 77
- Joined: Fri Sep 26, 2008 9:48 pm
- Location: New Jersey
Re: (3.1.3.1) Tankadin Spreadsheet
De-Installation -> CC Cleaner / Registry Cleaner -> Restart your system -> Re-installation. Otherwise you may have old entries in your registry.
Unfortunately I have no clue what else could be the problem aside trouble with an older version of Open Office.
Unfortunately I have no clue what else could be the problem aside trouble with an older version of Open Office.
- Rhî
- Posts: 305
- Joined: Fri Sep 21, 2007 4:41 am
Re: (3.2.0.2) Tankadin Spreadsheet
I'll try this out. But this is the first time i've installed Open Office.
- Meyrinn
- Posts: 106
- Joined: Thu Jun 18, 2009 9:03 am
Re: (3.2.0.2) Tankadin Spreadsheet
I just did a new install of OOo on a freshly installed OS and am getting the same error. To people not having errors: have you opened a previous version of the spreadsheet?
I notice the location=application call in the error frame. I wonder if Rhi has the macros stored locally to the application instead of the document?
Looking at the macros on Modul3 shows
... which is obviously very wrong.
I removed the enveloping Sub Modul3/End Sub and deleted all the REMs. Clicking the button still throws a not found error; manually running the macro throws a "BASIC runtime error. Object Variable not set." error on "ActiveWindow.ScrollRoll = 1"
Browsing through the other objects show additional commented out code. e.g., Modul5 shows
Tabelle44 shows
and so on.
A google search on scripting framework basic script could not be found brings up this page from the oooforum http://www.oooforum.org/forum/viewtopic.phtml?t=82490 , which has a slighty different error (the reference posted is location=document, whereas we are getting location=application).
The reply is
So I'm wondering if there was an error with the conversion? I'm not certain why it would work for Rhi and not for the posted file, unless there are local libraries to Rhi.
I'm just poking around -- I haven't worked with VBA or spreadsheet macros much since the late 90s.
I notice the location=application call in the error frame. I wonder if Rhi has the macros stored locally to the application instead of the document?
Looking at the macros on Modul3 shows
- Code: Select all
Rem Attribute VBA_ModuleType=VBAModule
Sub Modul3
Rem Sub Reset_All_Talents()
Rem '
Rem ' Reset_All_Talents Makro
Rem ' Makro am 13.11.2007 von Steffen Bähre aufgezeichnet
Rem '
Rem
Rem '
Rem ActiveWindow.ScrollRow = 1
Rem Range("F4").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I4").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F6").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I6").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C8").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F8").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I8").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("L8").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F10").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I10").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C12").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F12").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I12").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C14").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I14").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C16").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F16").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I16").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F18").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F20").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F24").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I24").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C26").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F26").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("L26").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C28").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F28").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I28").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("L28").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C30").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F30").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I30").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C32").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F32").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I32").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C34").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I34").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C36").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F36").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I36").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I38").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F40").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F44").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I44").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C46").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F46").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I46").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C48").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F48").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I48").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("L48").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C50").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I50").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("L50").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C52").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I52").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("L52").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F54").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I54").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("C56").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F56").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("I56").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F58").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("F60").Select
Rem ActiveCell.FormulaR1C1 = "0"
Rem Range("A1").Select
Rem End Sub
Rem
End Sub
... which is obviously very wrong.
I removed the enveloping Sub Modul3/End Sub and deleted all the REMs. Clicking the button still throws a not found error; manually running the macro throws a "BASIC runtime error. Object Variable not set." error on "ActiveWindow.ScrollRoll = 1"
Browsing through the other objects show additional commented out code. e.g., Modul5 shows
- Code: Select all
Rem Attribute VBA_ModuleType=VBAModule
Sub Modul5
Rem Sub Staminacalculation()
Rem '
Rem ' Staminacalculation Makro
Rem ' Makro am 10.12.2008 von Steffen Bähre aufgezeichnet
Rem '
Rem
Rem '
Rem Sheets("Items").Select
Rem Range("J156").Select
...
Tabelle44 shows
- Code: Select all
Rem Attribute VBA_ModuleType=VBADocumentModule
Sub Tabelle44
Rem Private Sub CommandButton1_Click()
Rem Sheets("Stats").Select
Rem Sheets("Stats").Range("H22").Select
Rem Selection.Copy
Rem Sheets("Stats").Range("H20").Select
Rem Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
Rem SkipBlanks:=False, Transpose:=False
Rem Sheets("Stats").Range("H22").Select
Rem Application.CutCopyMode = False
Rem ActiveCell.FormulaR1C1 = "10 Seconds I"
Rem Sheets("Stats").Range("H23").Select
Rem Sheets("Rotation Analysis").Select
Rem Sheets("Rotation Analysis").Range("C22").Select
Rem ActiveCell.FormulaR1C1 = "=Stats!R[50]C"
Rem Range("D22").Select
...
and so on.
A google search on scripting framework basic script could not be found brings up this page from the oooforum http://www.oooforum.org/forum/viewtopic.phtml?t=82490 , which has a slighty different error (the reference posted is location=document, whereas we are getting location=application).
The reply is
vnd.sun.star.script:Standard,CaicOuterCntr?language=Baslc&location=document.
That points to a MSOffice macro (using an incomplete URL-scheme), which does not work anyways.
So I'm wondering if there was an error with the conversion? I'm not certain why it would work for Rhi and not for the posted file, unless there are local libraries to Rhi.
I'm just poking around -- I haven't worked with VBA or spreadsheet macros much since the late 90s.
-

fuzzygeek - Maintankadonor
- Posts: 4853
- Joined: Wed Aug 01, 2007 1:58 pm
Re: (3.1.3.1) Tankadin Spreadsheet
It looks like 3.2.0.1 is the first version posted as ODS; that document also contains
What version of open office are you using Davitz? Rhi, what version do you have?
I've been looking at this spreadsheet with 3.1.0.
- Code: Select all
Rem Attribute VBA_ModuleType=VBAModule
Sub Modul11
Rem Sub Rotation1()
Rem '
Rem ' Rotation1 Makro
Rem ' Makro am 03.04.2009 von Steffen Bähre aufgezeichnet
Rem '
Rem
Rem '
Rem Sheets("Stats").Select
Rem Sheets("Stats").Range("H22").Select
Rem Selection.Copy
Rem Range("H20").Select
...
Davitz wrote:I just set my macro security to low and ive never had an error, and the only time ill ever use open office is for this spreadsheet anyways xD. And awesome work Rhi
What version of open office are you using Davitz? Rhi, what version do you have?
I've been looking at this spreadsheet with 3.1.0.
-

fuzzygeek - Maintankadonor
- Posts: 4853
- Joined: Wed Aug 01, 2007 1:58 pm
Re: (3.2.0.2) Tankadin Spreadsheet
I'm using Excel and using http://www.artofsolving.com/online-document-converter to convert. No issues.
- Corman
- Posts: 453
- Joined: Wed Jun 11, 2008 5:47 am
Re: (3.2.0.2) Tankadin Spreadsheet
I'm using 3.1 Build 9399. And it is good to know, that excel users can convert O3 to excel without problems.
- Rhî
- Posts: 305
- Joined: Fri Sep 21, 2007 4:41 am
Re: (3.2.0.2) Tankadin Spreadsheet
Seems as though Libram of Defiance isn't on the list of librams D:
Fuzzy- And im using the same version of Open Office as Rhi.
Fuzzy- And im using the same version of Open Office as Rhi.
- Davitz
- Posts: 25
- Joined: Fri Jan 11, 2008 10:51 am
- Location: Canada
Re: (3.2.0.2) Tankadin Spreadsheet
Two items are not on the lists Dreadscale Armguards and Legguards of Feverish Dedication, any way to add your own items? Alot of sheets are missing stuff atm so i'd love to be able to add them myself while waiting for the next update.
Thanks
Thanks
-

gmf1 - Maintankadonor
- Posts: 381
- Joined: Tue Jun 03, 2008 12:55 am
- Location: Toowoomba, Queensland, Australia
Return to Advanced Theorycraft and Calculations
Who is online
Users browsing this forum: No registered users and 5 guests






