For more details, click the link above.
We have a new server we've set up here that is called a "Citrix server". This thing manages thin client PC's on our network and remote access PC's through the internet. I'd questioned the tech staff about a month ago, asking if anybody knew if Qedit for Windows would work through a Citrix server. Nobody knew if it would or not.
Well, it does. And quite well, I might add. No special requirements, it installed and ran under a Citrix client just fine. They might want to take note, should any other customers enquire.
To help both the customer and myself write the report, I pasted in the current version of the report and edited the report using Qedit for Windows.
What I found really helpful was that by just turning on the View "Ruler Bar" I could easily see the layout and number of spaces for the Header lines.
Once this portion was designed, I could then use the View "Record Numbers" feature to count the number of lines in the report.
Once I had the design done, I could also test the line spacing and layout by printing the report to the screen and cutting and pasting into Qedit for Windows to insure that everything lined up and the Line counts were correct.
I realize that this is very "old school" but there are still some of us who do high volume, good old data processing and printing reports and using this newfangled Qedit for Windows provided a nice trick for this old programmer.
neil@robelle.com
/users/progdev/projects/01admin/phase1/src/plan.html
or much longer and more obscure!
You can open these files in Qedit for Windows by navigating through the directory window with your mouse, but often you need to enter the full file name into a host-command. A typical example is a CD command to the directory containing the file.
Qedit for Windows has a simple option to make the pathname of any open file easily accessible. Just Right-Click in the text window and select Copy pathname to clipboard. Now you can paste the pathname of your file into a script you are building, or the QWIN host-command window, or even a terminal emulator window.
For example, the current location in a document is shown in the lower right corner of your Qedit window as a relative record number. That is, the first line is always 1, the second 2, then 3, 4, 5... . If you insert a line, the relative record number of all lines below that point is incremented by one automatically.
If the host is an MPE/iX server, then each line also has an embedded line number which is physically part of the line. The numbers allow for fractional parts, such as 50.1, to insert a line between lines 50 and 51. Qedit maintains these line numbers for you automatically when you insert text, renumbering small ranges of lines to make room when necessary. For most purposes you can forget that they exist.
However, if you are working from a host compiler listing for Pascal, Fortran, COBOL, or Splash, you may want to jump to a specific line number to make a source code change. In that case you use the Goto Line function (either Control-J or Mark|Goto from the menu):
Notice that you have two choices: Line Number or Record Number. To work from a host file listing, select Line Number and insert the number in the box (50.31). Qedit will find that embedded line number in you file and jump to it.
Note: the color background of the COBOL source highlights the text, comment and unusable portions of the lines. Qedit supports a different color scheme for each connection, making it easy to see which host you are editing. This is the Desert Morning color scheme, selected from the Options|Connections dialog box.
Each month it will feature a technical article about an hp e3000 topic and another article about getting the most out of Robelle's e3000 products, Qedit and Suprtool.
The first issue contained a story on how to edit rectangles of text in Qedit for Window. Click the link above to read Bob Green's article in the NewsWire.
We found a technique so we could change and test the jobs any time we wish. The solution was to use the HOST command facility within Qedit for Windows. Click the link above for the full story.
In Qedit For Windows, you will see a small red bar in the scroll bar on the right. This is the split bar or Splitter. It allows you to divide the current window into two or more independently scrolling views into the same file. Great for debugging, where you put the data declarations in one window while you scroll through the code in another.
To use the splitter, grab it with your mouse and drag it down. When you release the mouse, your window will be divided at that spot with a yellow line to warn you that they are actually the same file. Of course, windows can only get so small; while you are dragging the splitter, Qedit shows a dotted double line if the window won't fit and a solid double line if it will.
To unsplit, just drag the yellow back to the top, or double click on it. To split a window exactly in half, just double click on the splitter bar (no need to drag it). You can also split vertically (try the Split Window command on the Window menu).
bob.green@robelle.com
First choose a substitute character like "Z" and type it in whereever you want to use the Escape character.
Then follow these steps:
Hans Hendriks of Robelle technical support created a better solution: a simple QSL script that allows you to insert one of several common non-printable characters.
To try the script, just copy it from this web page to the clipboard, paste into a local Qedit window, and Save As InsertSpec.qsl on your PC desktop. Then click Script, Manage Scripts, and Add, browse to the Desktop, select InsertSpec.qsl (QSL stands for Qedit scripting language), and click Done.
You should see "InsertSpecialCharacter" on your Script Menu. Now just point with your cursor and select which special character you want to insert.
Another good tip is to set your font to 'r_ansi' so you can 'see' the escape character.
Below is a listing of the InsertSpec.QSL script. If you want to try writing your own scripts, consult the on-line scripting documentation.
Name InsertSpecialCharacter On command "&Escape" file=qedit.activefile; mychar = character(27); cleanup = file.insert(mychar); endon On command "&Tab" file=qedit.activefile; mychar = character(9); cleanup = file.insert(mychar); endon On command "&Bell" file=qedit.activefile; mychar = character(7); cleanup = file.insert(mychar); endon On command "&CarriageReturn" file=qedit.activefile; mychar = character(13); cleanup = file.insert(mychar); endon On command "&Linefeed" file=qedit.activefile; mychar = character(10); cleanup = file.insert(mychar); endon On command "C_ce&dilla" file=qedit.activefile; mychar = character(0231); cleanup = file.insert(mychar); endon On command "&PoundSterling" file=qedit.activefile; mychar = character(0163); cleanup = file.insert(mychar); endon
Method 1: Drop on Desktop Icon
In this situation, let's assume the Qedit shortcut icon appears on the desktop.
If Qedit is already running and the application window is visible, do:
If Qedit is running but its application window is not immediately visible, it might have been minimized. It should appear as a button on the Windows taskbar. In that case, you should: