Search found 165 matches
- Wed Jul 02, 2025 1:08 pm
- Forum: Any Other Business
- Topic: VS Code Language Extension for EViews
- Replies: 6
- Views: 333921
Re: VS Code Language Extension for EViews
Many thanks, Steve!
- Mon Jun 30, 2025 10:14 pm
- Forum: Any Other Business
- Topic: VS Code Language Extension for EViews
- Replies: 6
- Views: 333921
Re: VS Code Language Extension for EViews
In this thread, there was (or used to be) a link to, as I understand it, a text file containing all objects, object methods & procs, commands, and functions along with the associated URL to the online help page: https://help.eviews.com/list.txt It no longer seems to work. Is there any chance you...
- Thu Oct 03, 2024 9:17 pm
- Forum: Programming
- Topic: Eviews launch options
- Replies: 8
- Views: 48350
Re: Eviews launch options
Thank you, Steve!
- Wed Oct 02, 2024 11:50 pm
- Forum: Programming
- Topic: Eviews launch options
- Replies: 8
- Views: 48350
Re: Eviews launch options
Hi,
I’m running this batch code. As I understand it, Eviews should run without opening, but when I execute this line, Eviews opens. What could be wrong?
Regards Johan
I’m running this batch code. As I understand it, Eviews should run without opening, but when I execute this line, Eviews opens. What could be wrong?
Code: Select all
"C:\Program Files\EViews 14\EViews14.exe" "C:\Temp\Test.prg" /programonly- Tue Jun 11, 2024 11:26 pm
- Forum: Bug Reports
- Topic: Bug when "copy" from a closed workfile
- Replies: 11
- Views: 68303
Re: Bug when "copy" from a closed workfile
Hi, the problem with the "Maximum number of Workfiles" seems to have returned. When I run the code below, I get the error message Maximum number of Workfiles are already open in "COPY C:\TEMP\TEST31.WF1::A\A31 A\B31" in Test.PRG on line 11. Is there any suggested solution? Eviews...
- Wed Mar 01, 2023 10:02 am
- Forum: Programming
- Topic: seterr
- Replies: 1
- Views: 4312
seterr
How does the seterr command works, I don't really understand the manual? Someone that have some short exampelcode?
Thanks, greetings Johan
Thanks, greetings Johan
- Fri Jan 27, 2023 9:24 am
- Forum: Bug Reports
- Topic: Bug when "copy" from a closed workfile
- Replies: 11
- Views: 68303
Bug when "copy" from a closed workfile
In many of our calculationsystems we copy data by reading directly from a closed workfile, for example Series x = C:\Temp\Test.Wf1::A\y In the latest version, Eviews seems to open the workfile when this command is used. Some systems are huge and Eviews gives an error message when Eivews has opened 3...
- Thu Dec 08, 2022 12:02 pm
- Forum: Bug Reports
- Topic: Corrupt xlsx file using non-english characters
- Replies: 9
- Views: 75063
Re: Corrupt xlsx file using non-english characters
Wonderful news!
- Thu Dec 01, 2022 12:41 pm
- Forum: Bug Reports
- Topic: Problem creating vector using group in Eviews 13
- Replies: 4
- Views: 54398
- Thu Dec 01, 2022 5:48 am
- Forum: Bug Reports
- Topic: Problem creating vector using group in Eviews 13
- Replies: 4
- Views: 54398
Problem creating vector using group in Eviews 13
Hi We have a problem in generel to convert group into a vector in Eviews 13. For example in Eviews12 we use the following code to convert a group to a vector. This code works in Eviews 12 but not in Eviews 13. See picture Eviews 13: Nov 29 2022 build Regards Johan And Jonathan WfCreate(page=q) q 202...
- Mon Nov 28, 2022 10:42 pm
- Forum: Bug Reports
- Topic: Very dark in dark mode
- Replies: 3
- Views: 17839
Re: Very dark in dark mode
Unfortunately I get the same result with patch Nov 28 2022 build, black text on black background.
Regards Johan
Regards Johan
- Sat Nov 26, 2022 12:07 am
- Forum: Bug Reports
- Topic: Corrupt xlsx file using non-english characters
- Replies: 9
- Views: 75063
Corrupt xlsx file using non-english characters
When I use Swedish specific letters such as å,ä and ö, the excel file becomes corrupt. See examples WfCreate(page=u) u 1 ' EXAMPLE 1 Table Table1 Table1(1,1) = "åäö" Table1.save(t=xlsx) c:\temp\Table1.xlsx Range=Sheet1!a1 ' EXAMPLE 2 Alpha Alpha1="åäö" WfSave(type=excelxml, cellf...
- Fri Nov 18, 2022 6:40 am
- Forum: Bug Reports
- Topic: Very dark in dark mode
- Replies: 3
- Views: 17839
Very dark in dark mode
Hi, when I am running
in a prg-file I get black text on a black background, see picture
(Eviews 13, nov 9 2022 build)
Code: Select all
WfCreate(page=u) u 1
String x = "test"
Show x
(Eviews 13, nov 9 2022 build)
- Mon Oct 17, 2022 9:41 pm
- Forum: Bug Reports
- Topic: Bug Graph Eviews 13
- Replies: 5
- Views: 9204
Re: Bug Graph Eviews 13
Ok then the graph in Evews 13 will be ok, i.e. if I put g1.setelem(1) lineopacity(OFF,0.75) But I don't really understand the command, why are there two arguments, according to "Command Reference help" it should only be one argument and a value between 0 and 1, i.e. g1.setelem(1) lineopaci...
- Mon Oct 17, 2022 1:17 pm
- Forum: Bug Reports
- Topic: Schwarz information criteria - Eviews 13
- Replies: 3
- Views: 6937
Re: Schwarz information criteria - Eviews 13
Code: Select all
wfcreate(page=a) a 1980 2030
series y=@rnd
series x1=@rnd
series x2=@rnd
' This work in Eviews 12 but not in 13
Equation eq1.ardl(ic=bic) y x1 x2 @
' This work in Eviews 13
Equation eq2.ardl(ic=sic) y x1 x2 @