英文:
how to set wide screen size in ISPF
问题
我正在尝试在ISPF中获得一个宽屏幕。我认为这可能是我的ISPF设置问题,因为我在两个不同的3270仿真器上都遇到了相同的问题。
如果我想要获得132列宽的屏幕,我应该指定什么设置?
我尝试了从选项0设置终端特性到:
- 屏幕格式:3. 最大
- 终端类型:3. 3278
我应该指定不同的终端类型吗?
我尝试通过选项2编辑一个255字符宽的文件,但我只看到0-72。
我能获得比132更宽的屏幕吗?
英文:
I am trying to get a wide screen in ISPF. I expect it is my ISPF settings since I am having the same problem with 2 different 3270 emulators.
If I want to get a 132 column wide screen, what is the setting that I should specify?
I tried setting terminal characteristics from option 0 to:
- Screen format: 3. Max
- Terminal Type 3. 3278
Should I be specifying a different terminal type?
I tried editing a file via option 2 that is 255 characters wide and I only see 0-72.
Can I get a screen wider than 132?
答案1
得分: 3
除了在“Settings(0)”面板上更改screensize
之外,您还需要更改模拟器(pcomm或HOD)以适应宽屏。
在PCOMM中,它是screensize
参数;即,Screensize=43x155
为您提供43行,每行155个字节长。
HOD也有类似的设置。您需要进行更改,然后重新登录以查看屏幕尺寸的变化。
英文:
Apart from changing the screensize
on the Settings(0)
panel, you also need to change your emulator (pcomm or HOD) to refer to the wide size screen.
In PCOMM, it is the screensize parm; i.e., Screensize=43x155
gives you 43 lines, each with 155 bytes long.
A similar setting is available for HOD. You need to make a change and then log back in to see the screen size change.
答案2
得分: 2
你可以在你的主目录下的 .c3270pro 文件中指定默认资源,用于 c3270,在这里查看维基。
你可以设置 oversize 资源 来使用更宽的屏幕,例如:
c3270.oversize: 160x62
这应该适用于默认模型,或者你可以添加
c3270.model: 3279-4-E
免责声明:我只在 x3270 上尝试过这个,但文档建议它应该适用于 c3270。
英文:
You can specify default resources in the .c3270pro file in your home directory for c3270 here in the wiki.
You can set the oversize resource to use a wider screen, for example:
c3270.oversize: 160x62
This should work with the default model, or you could add
c3270.model: 3279-4-E
Disclaimer: I have only tried this with x3270, but the doc suggests that it should work for c3270.
答案3
得分: 1
我倾向于将ISPF设置的屏幕格式设置为1(数据)。这样,屏幕在大多数情况下是80列宽,只有在需要时才会变宽。
英文:
I prefer to set the ISPF settings Screen format to 1 (Data). That way the screen is 80 columns wide for the most part and then wide when it is needed.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论