Search found 23 matches

by madm
Fri Jan 09, 2026 12:37 pm
Forum: Programming
Topic: Eviews launch options
Replies: 8
Views: 48350

Re: Eviews launch options

I realize this is an old post, but I have a related question. When using the /programonly option, is there a way to put log output onto stdout or, if not, is there some other output command to do so?
by madm
Fri Feb 14, 2025 11:50 am
Forum: Bug Reports
Topic: Issue with table.save to XLSX files (EViews 13 on Windows)
Replies: 3
Views: 69211

Re: Issue with table.save to XLSX files (EViews 13 on Windows)

This should now be fixed in latest 13 & 14 patches dated Feb 6, 2025. Ah, many thanks Steve! Btw, a separate issue with the piece of code sample above is that freeze group_object.sheet will break unpredictably (and without warning from EViews) by not writing out all columns if group_object is t...
by madm
Tue Feb 04, 2025 2:32 pm
Forum: Bug Reports
Topic: Issue with table.save to XLSX files (EViews 13 on Windows)
Replies: 3
Views: 69211

Re: Issue with table.save to XLSX files (EViews 13 on Windows)

Ah, I should have checked. Seems that someone has already reported the same issue: viewtopic.php?t=21881
by madm
Tue Feb 04, 2025 10:30 am
Forum: Bug Reports
Topic: Issue with table.save to XLSX files (EViews 13 on Windows)
Replies: 3
Views: 69211

Issue with table.save to XLSX files (EViews 13 on Windows)

A simple replication of the issue we're seeing is below: wfcreate q 1990 2030 series A = 1 series B = 2 group ab A B freeze(test) ab.sheet test.save test_data.csv test.save test_data.xlsx The problem, which appears intermittently, is that the XLSX file that EViews generates will have a random number...
by madm
Tue May 07, 2024 6:30 pm
Forum: Bug Reports
Topic: Spool.flatten crash
Replies: 1
Views: 34858

Spool.flatten crash

Not sure exactly what causes this but flatten applied to a large enough spool will crash EViews. Sample code to reproduce: logmode l wfcreate q 1950 2050 series x = 1 series y = 2 delete(noerr) sp spool sp for !j=1 to 20 delete(noerr) sp{!j} spool sp{!j} for !i = 1 to 50 delete(noerr) g group g x y ...
by madm
Wed May 01, 2024 8:16 am
Forum: Bug Reports
Topic: Excel Corruption Issue (EViews 13, windows)
Replies: 9
Views: 50571

Re: Excel Corruption Issue (EViews 13, windows)

Will do for those of us on 13 but my team find it convenient to have the file open in Excel to be able to adjust the model specs and other settings between runs so they tend to leave the file open. This has been blocking us from moving on from EViews 12 to 13. I'll see if I can find another way arou...
by madm
Tue Apr 30, 2024 3:44 pm
Forum: Bug Reports
Topic: Excel Corruption Issue (EViews 13, windows)
Replies: 9
Views: 50571

Re: Excel Corruption Issue (EViews 13, windows)

It is occurring with many different files where we are reading from multiple tabs. I suspect but not 100% sure that it only (or at least more frequently) happens if we simultaneously have the file open in Excel. For context, these are input sheets that we are using to create a large-scale forecast m...
by madm
Tue Apr 30, 2024 3:12 pm
Forum: Bug Reports
Topic: Excel Corruption Issue (EViews 13, windows)
Replies: 9
Views: 50571

Re: Excel Corruption Issue (EViews 13, windows)

As an additional hint, when we use: %NAMES= @tablenames(%EXCEL_FILE) We will sometimes get back a list with a first entry that is not an excel sheet like below: _XLNM._FILTERDATABASE CONFIG CONTROL DATA MAIN Then when we do: for %N {%NAMES} importtbl(name=%N) %EXCEL_FILE range=%N next The first entr...
by madm
Tue Apr 30, 2024 3:10 pm
Forum: Bug Reports
Topic: Excel Corruption Issue (EViews 13, windows)
Replies: 9
Views: 50571

Re: Excel Corruption Issue (EViews 13, windows)

Yes, deleting the files when EViews is running could cause a crash. EViews should delete the files itself after 30 days (Options->General Options->File Locations). If you want to manually delete them, doing so when EViews is not open should be fine. Sorry I wasn't clear. We're not manually deleting...
by madm
Tue Apr 30, 2024 2:52 pm
Forum: Bug Reports
Topic: Excel Corruption Issue (EViews 13, windows)
Replies: 9
Views: 50571

Re: Excel Corruption Issue (EViews 13, windows)

Re "seems it causes a crash", typo. The crash coincides with file deletion.
Enterprise Edition -- Oct 11 2023 build
by madm
Tue Apr 30, 2024 2:39 pm
Forum: Bug Reports
Topic: Excel Corruption Issue (EViews 13, windows)
Replies: 9
Views: 50571

Excel Corruption Issue (EViews 13, windows)

Hi, We are having an issue when running programs in EViews 13 that read multiple sheets from an Excel workbook. I think this only happens when we also have the file open in Excel. First, we are seeing that multiple tmp files get produced (see screenshot), which appear to be backup copies of the orig...
by madm
Wed Nov 22, 2023 7:14 am
Forum: Programming
Topic: Addins and logging
Replies: 2
Views: 15534

Re: Addins and logging

The log closes when the program is called from an add-in. E.g., my add-in installer program had this command: addin(menu="Run project...", desc="Runs the project.", version="0.1") .\run_project.prg And it's the log for run_project that would close after run_project.prg ...
by madm
Tue Nov 21, 2023 5:17 pm
Forum: Programming
Topic: Addins and logging
Replies: 2
Views: 15534

Addins and logging

I have a an add-in program where I want to use a log to track messages and errors: logmode l ... instructions logmsg some stuf ...instructions But when the the program ends (in an error or otherwise) the log window disappears making it impossible to browse through the list of messages. Is there any ...
by madm
Thu Nov 09, 2023 6:15 pm
Forum: General Information and Tips and Tricks
Topic: Working with @UIDialog
Replies: 0
Views: 206986

Working with @UIDialog

I have found the @uidialog function quite cumbersome to work with so I came up with a slightly more manageable subroutine. subroutine add_dialog_item(string %DIALOG, string %TYPE, string %IOVAR, string %PROMPT, string %OPTION_LIST, scalar !MAX_EDIT_LENGTH) ' Adds a dialog item to a string dialog spe...
by madm
Thu Nov 09, 2023 5:40 pm
Forum: Programming
Topic: DB Fetch names and replacement var conflicts
Replies: 0
Views: 143490

DB Fetch names and replacement var conflicts

We have some general purpose routines that fetch a user-specified list of variables from a database. Unfortunately some of the variables in the database can have the % character in them, which leads to some undesirable conflicts with program variables: %A = "some unrelated variable" %VAR_T...

Go to advanced search