Search found 18 matches

by lukevancleve
Thu Nov 20, 2014 1:01 pm
Forum: Programming
Topic: Filepath metadata in EViews databases
Replies: 7
Views: 11461

Filepath metadata in EViews databases

Hi, It seems that EViews stores file paths in its .edb databases... for example this is a snippet of the plaintext of the database file: [History] Imported from 'C:\Users\.../..../.../.../file.txt' Modified: 2014Q3 2200Q4 Is there a way to create the databases without this data? If not is there a wa...
by lukevancleve
Wed Oct 08, 2014 6:11 am
Forum: Programming
Topic: Writing a string to file
Replies: 1
Views: 3301

Writing a string to file

Hi,

How can I write a string to file?

string abc = "1,2,3"

abc.save {%file} '''' Doesn't work
by lukevancleve
Thu Jun 19, 2014 6:10 am
Forum: Programming
Topic: Declare equation without estimating
Replies: 1
Views: 3170

Declare equation without estimating

Is there a way to declare an equation without estimating it? i.e.

equation eq_one.(?) a = c(1) + c(2)*b

The (?) is usually the estimation method...
by lukevancleve
Tue Jun 17, 2014 10:48 am
Forum: Programming
Topic: Estimation equation in a string
Replies: 3
Views: 4596

Re: Estimation equation in a string

I do not.
by lukevancleve
Fri Jun 13, 2014 11:41 am
Forum: Programming
Topic: Estimation equation in a string
Replies: 3
Views: 4596

Estimation equation in a string

Hi,

Is there an easy way to get the estimation equation as a string? say I have an equation object that when you view it has

Estimation Equation
=======================
A = C(1)B + C(2)B(-1)


Is there a

string my_eq = ?

... to get "A = C(1)B + C(2)B(-1)"

Thanks,

Luke
by lukevancleve
Tue Apr 15, 2014 10:13 am
Forum: Programming
Topic: starting directory of eviews
Replies: 3
Views: 4790

Re: starting directory of eviews

I have an include statement that I need to be relative to the directory. For instance

include ..\library

doesn't work. I've tried passing in the directory as in

cd {%0}

include ..\library

but that also doesn't work
by lukevancleve
Tue Apr 15, 2014 9:46 am
Forum: Programming
Topic: starting directory of eviews
Replies: 3
Views: 4790

starting directory of eviews

Hi,

How can I set my eviews starting directory on execution? i.e. I have c:/RSMA/EViews8-64/EViews8_x64.exe A:\path/to/program.prg

Is there any flag I can set to specify the starting working directory?
by lukevancleve
Tue Mar 18, 2014 1:14 pm
Forum: Programming
Topic: deleting registered addins
Replies: 1
Views: 3061

deleting registered addins

Is there a way to programmaticaly delete an addin symmetric to:

addin(proc="myaddin", desc="This is my add-in", version="1.0")
by lukevancleve
Mon Mar 17, 2014 10:00 am
Forum: Programming
Topic: Saving sspace model as plain text
Replies: 1
Views: 3211

Saving sspace model as plain text

Hi, I'd like to save models as plain text (for version control systems) for use in different runs. Ideally I'd is save the model text, import the text in a new workfile, and append it to a new model. The model append code doesn't like this though. Is there a way to do this? Thanks. freeze(modeltext)...
by lukevancleve
Fri Oct 11, 2013 11:52 am
Forum: Data Manipulation
Topic: Legend isn't copied to clipboard
Replies: 1
Views: 3157

Legend isn't copied to clipboard

Hi,

When I copy my graph to the clipboard to paste it into email/word it doesn't carry with it the legend. Obviously I have some incorrect setting... how can I resolve this?

Thanks,
by lukevancleve
Wed Aug 07, 2013 10:10 am
Forum: Programming
Topic: Active window
Replies: 3
Views: 4348

Re: Active window

I mean if I have a script (perl example): foreach $program (@long_list_of_programs) { system( eviews.exe $program) } ... the each time eviews is executed the the $program becoms the active window in windows. So if I have 1000 jobs on a script that each take 10 seconds it will make my desktop unusabl...
by lukevancleve
Wed Aug 07, 2013 6:42 am
Forum: Programming
Topic: Active window
Replies: 3
Views: 4348

Active window

When I'm running lots of eviews jobs on a script, Eviews always makes itself the active window upon starting a new job while I'm doing something else. Is there any to disable this?
by lukevancleve
Tue Aug 06, 2013 12:50 pm
Forum: Programming
Topic: multiple commands on a line
Replies: 1
Views: 3115

multiple commands on a line

How can I:

command1; command2;

as opposed to:

command1
command2
by lukevancleve
Fri Jul 19, 2013 8:43 am
Forum: Programming
Topic: New line in legend
Replies: 2
Views: 3778

Re: New line in legend

:(
by lukevancleve
Fri Jul 19, 2013 8:09 am
Forum: Programming
Topic: New line in legend
Replies: 2
Views: 3778

New line in legend

How do I get a new line in a legend? i.e.

legend("First line,\n Second line")

The standard \n doesn't work.

thanks

Go to advanced search