Search found 9 matches
- Tue Aug 19, 2014 11:13 am
- Forum: Programming
- Topic: @neqna function
- Replies: 3
- Views: 4957
Re: @neqna function
The documentation clearly states @neqna as a string function. Here are several examples from the Command and Programming Reference: Page 543: @neqna(str1, str2) tests for inequality of strings Page 567: @neqna ................tests for inequality of string values treating empty strings as ordinary b...
- Tue Aug 19, 2014 7:51 am
- Forum: Programming
- Topic: @neqna function
- Replies: 3
- Views: 4957
@neqna function
In this code: %Str1 = "abc" %Str2 = "" if @neqna(%Str1, %Str2) then @uiprompt("Test 1") endif if not(@eqna(%Str1, %Str2)) then @uiprompt("Test 2") endif I would expect both test messages to display, but only "Test 2" displays. Why? I am using Eviews ...
- Tue Aug 12, 2014 8:07 am
- Forum: Bug Reports
- Topic: "Program has changed, save?" warning not showing
- Replies: 1
- Views: 3448
"Program has changed, save?" warning not showing
I have two program files: 1) Includes subroutines 2) Main program, calls subroutines in (1). It includes (1) with an include statement. When I make a change in (1) and try to close it without saving, I get the usual "Program has changed, save?" warning. However, if I make a change in (1), ...
- Tue Aug 05, 2014 7:22 am
- Forum: Programming
- Topic: UIDialog, limit on number of controls
- Replies: 1
- Views: 3194
UIDialog, limit on number of controls
I was trying to create a user interface control with @uidialog function, but I received an error like "User dialog contains too many controls in ...". I had 15 check boxes and two edit boxes. What is the limit on the number of controls that can be used in @uidialog?
- Thu Jul 31, 2014 8:06 am
- Forum: Suggestions and Requests
- Topic: Eviews wishlist
- Replies: 11
- Views: 16341
Re: Eviews wishlist
Has the ability to retrieve the characteristics of charts, such as axis range, etc., been incorporated into Eviews 8? This would be a useful feature to have.
- Thu Jul 24, 2014 8:12 am
- Forum: Programming
- Topic: Reading a csv file into a table
- Replies: 4
- Views: 6502
- Thu Jul 24, 2014 7:16 am
- Forum: Programming
- Topic: Reading a csv file into a table
- Replies: 4
- Views: 6502
Re: Reading a csv file into a table
I was looking for an answer to the same question: "how to read text in a csv file into a table?" However, regarding Gareth's second suggestion, I was not able to figure out how to read a text file into a text object. The text object does not seem to have a "read" procedure. I use...
- Tue Jun 03, 2014 8:02 am
- Forum: Programming
- Topic: Minimum function
- Replies: 2
- Views: 4456
Re: Minimum function
Thanks.
- Tue Jun 03, 2014 7:40 am
- Forum: Programming
- Topic: Minimum function
- Replies: 2
- Views: 4456
Minimum function
I am solving a model for a panel series which is a share variable, and I want to make sure that the values are less than 100. I couldn't figure out how to use the minimum function in a proper way. for !obs = @dtoo("2014M02") to @dtoo("2015M12") smpl 1997M01+!obs-1 1997M01+!obs-1 ...
