Search found 13 matches
- Fri Feb 23, 2018 8:09 am
- Forum: Programming
- Topic: Check if workfile is open
- Replies: 4
- Views: 4284
Re: Check if workfile is open
Ah, thanks. I missed wfuse when checking for options and having read that I think it will do the trick in this case.
- Fri Feb 23, 2018 7:35 am
- Forum: Programming
- Topic: Check if workfile is open
- Replies: 4
- Views: 4284
Re: Check if workfile is open
It's not absolutely essential but for user friendliness of a self contained program I've written for my team at work. It goes roughly like this: Check if a workfile exists if it does not then: 1) Create one and load in some data from a csv file, then run an estimation subroutine. else 2) just run th...
- Fri Feb 23, 2018 6:36 am
- Forum: Programming
- Topic: Check if workfile is open
- Replies: 4
- Views: 4284
Check if workfile is open
Hi - apologies for what is quite a basic question - what is the simplest way to check if a given workfile is open? I can use @fileexist to see if a workfile is saved to a given location, but I couldn't see an equivalent option to check if it is open in the current instance of EViews (running 8.1 by ...
- Tue Nov 01, 2016 7:53 am
- Forum: Programming
- Topic: ASCII Read and skipcol
- Replies: 1
- Views: 3019
ASCII Read and skipcol
A quick question - when using the Read command for an ASCII file, I can use skipcol=n option to ignore the first n columns in the file. Is there anyway to get EViews to ignore the nth column out of N (e.g. the 5th column out of 10)? I suspect not, but wanted to check as the alternatives will be less...
- Wed Nov 06, 2013 9:58 am
- Forum: Programming
- Topic: Addin Update
- Replies: 2
- Views: 3319
Re: Addin Update
If you have the XML file on your network, is should work just fine. There is no requirement to host the XML on a website. Thanks for the reply. Presumably I have made some other kind of error, although I'm not sure where. The message I get is: [Addin_Name]: Could not retrieve update list due to err...
- Wed Nov 06, 2013 4:23 am
- Forum: Programming
- Topic: Addin Update
- Replies: 2
- Views: 3319
Addin Update
I've written my own addin and installer for EViews 8 which works fine. I notice however there is an option to enable automatic updates, with an option to specify a URL for an XML file. However, ideally, I'd like the addin to be updated from a directory on our network, rather than web host it. I've t...
- Mon Aug 05, 2013 2:15 am
- Forum: Bug Reports
- Topic: Write command and dateid
- Replies: 5
- Views: 6789
Re: Write command and dateid
Hi - thanks for the work around. Like I say it is a really tiny bug, hardly a huge problem but thought I would post it nonetheless. The value for me in it is that, if fixed, it is easy to get an identical output of data, whether you are using a pooled model with series that have cross sectional iden...
- Fri Aug 02, 2013 2:59 am
- Forum: Bug Reports
- Topic: Write command and dateid
- Replies: 5
- Views: 6789
Re: Write command and dateid
Thanks for this suggestion (I'm revisiting coding in EViews after not having done much since EViews 6 so not terribly familiar with the version changes). However, the dateid series still does not export correctly. For a balanced pannel with integer dates, the dateid series correctly goes through 1, ...
- Tue Jul 30, 2013 9:33 am
- Forum: Bug Reports
- Topic: Write command and dateid
- Replies: 5
- Views: 6789
Write command and dateid
Hi, this is a really tiny bug, but thought I would post it. When using a balanced pannel workfile with integer dates (EViews 8, 32 bit), I can write to a csv using a command like this: write(t=txt,na="",d=c,dates) “C:\My_CSV.csv” Var1 Var2 Var3 However, this doesn't give me a CSV with 4 &q...
- Wed Jun 12, 2013 6:22 am
- Forum: Bug Reports
- Topic: EViews 8 Crashes on Insert Row in Table
- Replies: 3
- Views: 5322
Re: EViews 8 Crashes on Insert Row in Table
Apologies, I can't be much help here for a number of reasons. Firstly the file is too big to email (40mb), and in any case a lot of the data contained is classed as confidential and legally I can't let it out of the office. If I delete the sensitive stuff the problem goes away, but that doesn't make...
- Tue Jun 11, 2013 3:35 am
- Forum: Bug Reports
- Topic: EViews 8 Crashes on Insert Row in Table
- Replies: 3
- Views: 5322
EViews 8 Crashes on Insert Row in Table
I have noticed EViews 8 (32 bit version) has a tendency to crash when attempting to insert new rows to tables. If I right click on a table row number, click insert cells, and select one row often I get a Windows 7 message that EViews has stopped working. The same happens if I click on a sell and the...
- Wed Apr 10, 2013 9:46 am
- Forum: Programming
- Topic: @val precision when extracting numbers from tables
- Replies: 3
- Views: 4585
Re: @val precision when extracting numbers from tables
Actually I may have found a solution, inserting this line before extraction seems to have done the trick: mytable.setformat(2,2) f.16 The @val precision seems to be restricted by the table format, but not the actual number entered (i.e. a 16 place decimal number was pasted in before using the setfor...
- Wed Apr 10, 2013 9:20 am
- Forum: Programming
- Topic: @val precision when extracting numbers from tables
- Replies: 3
- Views: 4585
@val precision when extracting numbers from tables
Hi - this is my first post here so apologies if it is in the wrong section or naive etc. I've used the search function already and can't find a similar post. I want to assign a value from a cell in a a table to a control variable as part of a program in EViews 8, e.g. !myvariable = @val(mytable(2,2)...
