As string vector object, but string matrix object
Regards Johan
Search found 142 matches
- Fri Dec 23, 2016 5:34 am
- Forum: Suggestions and Requests
- Topic: Suggestions, add new object "smatrix"
- Replies: 2
- Views: 2431
- Thu Dec 08, 2016 12:32 am
- Forum: Programming
- Topic: Graph - which line on top
- Replies: 3
- Views: 2390
Re: Graph - which line on top
Nice! Thanks MOG
- Tue Dec 06, 2016 12:44 am
- Forum: Bug Reports
- Topic: Position when adding text
- Replies: 1
- Views: 1802
Position when adding text
Hello I have problems with the position when adding text (.addtext) to a graphobject. In the example I put a title at the position "-0.38, -0.50" and a subtitle at the position "-0.38, -0.28" (and a line at the same postition to clarify). Although I enter the same x-position for ...
- Thu Nov 24, 2016 2:51 pm
- Forum: Suggestions and Requests
- Topic: Eviews 10 - Number of Grid Lines
- Replies: 1
- Views: 3660
Re: Eviews 10 - Number of Grid Lines
Hi I've been thinking about this with gridlines Somewhere in the code there should be a algorithm that determines the number of gridlines. Shouldn't it just be a if-statement somewhere that checks if the user has selected number of gridlines and use that number instead? Should be pretty straight on ...
- Fri Sep 30, 2016 7:44 am
- Forum: Programming
- Topic: From numbers to letters
- Replies: 3
- Views: 1870
Re: From numbers to letters
Use @chr
Regards Johan
Code: Select all
For !i = 1 To 26
%cl{!i} = @Chr(!i+64)
Next
table.setlines({%cl2}) +r
Regards Johan
- Mon Sep 19, 2016 7:52 am
- Forum: Programming
- Topic: Change alpha series truncation with code
- Replies: 4
- Views: 2094
Re: Change alpha series truncation with code
Yes, there may be a way
Regards Johan
Code: Select all
%p1 = @Env("APPDATA")+"\Quantitative Micro Software\EViews\"
%p2 = %p1+"EViews32.ini"
SavePrgIni(file=%p2) [Options]"Alpha Truncate" 800
OptSet {%p1}
Regards Johan
- Wed Sep 07, 2016 9:18 pm
- Forum: Suggestions and Requests
- Topic: Eviews 10 - Number of Grid Lines
- Replies: 1
- Views: 3660
Eviews 10 - Number of Grid Lines
Just want to say hi and telling you that the question "Number of Grid Lines" is still relatively crucial for us, so mabey in version 10! :) See further http://forums.eviews.com/viewtopic.php?f=29&t=11413 and http://forums.eviews.com/viewtopic.php?f=8&t=8512 Regards Johan
- Mon Aug 29, 2016 1:20 am
- Forum: Programming
- Topic: Multiple paragraphs in @uiprompt
- Replies: 2
- Views: 1735
Re: Multiple paragraphs in @uiprompt
Code: Select all
%msg = "This is paragraph one (more text here)." + @Chr(13) + @Chr(13) + "This is paragraph two (more text here)."
@UiPrompt(%msg)
Regards Johan
- Wed Aug 24, 2016 5:28 am
- Forum: Bug Reports
- Topic: Last char truncated when storing/fetching string from Aremos database
- Replies: 2
- Views: 2552
Re: Last char truncated when storing/fetching string from Aremos database
Hi, a quick fix would be to put a space at the end of the string, ie
Code: Select all
string str = @wjoin(svec) + " "
- Tue Aug 23, 2016 7:37 am
- Forum: Bug Reports
- Topic: Missing first datelabel in graph
- Replies: 1
- Views: 1548
Missing first datelabel in graph
Hi When I using a sample between 0-10 the first datelabel is missing ("0"). If I change sampel to 1-11 then every datelabel is shown, se example below. Is this a bug? Regards Johan (Build Aug 11 2016) WfCreate u 0 11 Series x= @Rnorm Smpl 0 10 Graph g1.line x g1.datelabel interval(all) Smp...
- Sun Aug 14, 2016 8:48 am
- Forum: Programming
- Topic: Graph is crooped to much when saving in emf-format
- Replies: 7
- Views: 2723
Re: Graph is crooped to much when saving in emf-format
[emoji106]
Regards Johan
Regards Johan
- Tue Jul 12, 2016 12:28 pm
- Forum: Programming
- Topic: Graph is crooped to much when saving in emf-format
- Replies: 7
- Views: 2723
Re: Graph is crooped to much when saving in emf-format
Hi Jason In my "Graphics Default" I have "Always label both" checked (under "Axes and Scales" / "Data axis"), that's probably why I get the right axis Byt if I unchecked "Always label both" and in my code includes tmp.setelem(2) axis(r) or tmp.axis d...
- Wed Jun 29, 2016 11:33 pm
- Forum: Programming
- Topic: Graph is crooped to much when saving in emf-format
- Replies: 7
- Views: 2723
Re: Graph is crooped to much when saving in emf-format
Hi
Just a follow up, this seems still be a problem. Any plans for this fix?
(Version: Jun 28 2016 build)
Regards Johan
Just a follow up, this seems still be a problem. Any plans for this fix?
(Version: Jun 28 2016 build)
Regards Johan
- Wed Jun 15, 2016 2:02 am
- Forum: Programming
- Topic: how to jump to a new line in a string
- Replies: 2
- Views: 1976
Re: how to jump to a new line in a string
Hi, use ASCII characters, @chr(13) or @chr(10), i.e.
See further http://www.theasciicode.com.ar/extended ... e-255.html
Regards Johan
Code: Select all
%string = "a b c" + @chr(13) + "d e f"
@uiprompt(%string)
See further http://www.theasciicode.com.ar/extended ... e-255.html
Regards Johan
- Thu May 19, 2016 12:46 am
- Forum: Suggestions and Requests
- Topic: Option for statusline
- Replies: 2
- Views: 2634
Re: Option for statusline
But if it's easy to fix...
Regards Johan
Regards Johan