Hi, Sounds like a problem in the CCSID. Take a look at your joblog when you run the CPYTOIMPF and see if you get any warning message about CCSID. IF all else fails, you could try using query to create a file without the packed fields and FTPing it to the PC. Regards, Martin Gilbert. [...]
Hi, A printer file is an object which contains a defintiion of the layout (fields, constants, etc) that a program will use to print. Printer files are described using DDS (data description specifications). There are utilities to help you define print files, the IBM supplied one is called RLU. You can find more information in [...]
I’m not sure what commands and options you are refering to as CHGSPLFA is the command and not a ‘work with’ style interface, but you could customize the behavior of CHGSPLFA using the <a href=”http://publib.boulder.ibm.com/infocenter/iseries/v5r4/topic/apis/xcachg.htm”>Command Analyzer Change Exit Program</a>capability of i5/OS. Bruce Vining <a href=”http://www.brucevining.com/”>http://www.brucevining.com/</a> Providing integrated solutions for the System i user community ================================================================= [...]
Change the type to CLLE and compile the program using opton 14 you will get the CLLE program, but remember there is no way to recover the source program in case of CLLE so better copy the source before converting CLP program to CLLE. ————————————————————————————————————- Due to the high level of compatibility between OPM and [...]
This command is in TAATOOL Delete Old Spooled Files – TAA (DLTOLDSPLF) —————————————————————— There are also sample programs in the Information Center on how to perform various tasks using system APIs. One example, <a href=”http://publib.boulder.ibm.com/infocenter/iseries/v5r4/topic/apiref/apiexdelsp.htm”>Deleting old spool files</a>appears to demonstrate how to do what you want. Examples are provided with OPM RPG, OPM COBOL, and [...]
Hi, You can try the WRKOBJOWN command to see which objects are OWNED by a particular user, but this won’t tell you whether jobs are scheduled to run using that user profile. You may also have CL programs which submit jobs to run using specific profiles – which you would also have to search for [...]
Logical operators can’t be used to set conditional breakpoint. We can’t have multiple conditions for the same breakpoint. ================================================================= The debug BREAK command allows a WHEN clause that specifies a boolean expression. A breakpoint that I just set had the condition WHEN &AMODE > 0 AND &AMODE > 1. I realize that that doesn’t make [...]
See Notes Help for adding a custom @Formual button to your workspace. Use this formula. It does these things. <ul><li>Use it from any Notes document. </li><li>It stops evaluation if the current document has no Subject field or the document has no attachments. </li><li>It assigns the attachment name to the subject if there is only one [...]
Over 90% of applications can be sequenced using Application Virtualization. For more information on sequencing, see the guide at http://search.microsoft.com/results.aspx?mkt=en-US&setlang=en-US&q=sequencing. For IE compatibility issues, consider using Microsoft Enterprise Desktop Virtualization as IE cannot be virtualized using App-V.
The answer really depends on what the user’s requirements are and how well managed the VDI environment is. With pooled VMs, you have the potential to reduce your storage needs, however you will likely want to make to have the ability to deliver and manage user and application state independently from the image. With dedicated [...]
RemoteFX describes a set of rich media capabilities that are available to customers using the Remote Desktop Services platform to deploy a virtual machine- or session-based remote desktop infrastructure. Specifically, RemoteFX enhances the Remote Desktop Protocol (RDP) in Remote Desktop Services, so that remote workers can access any type of application or screen content, including [...]
Yes, they can. The benefits of App-V are just as strong on a PC as it is in a hosted virtual desktop (VDI) scenario. App-V works well in both situations.
We had a fairly simple call-in system that we used for the rare occasions that we needed to accept them. Not sure if that is a universal offering, but it was quick to set up, with very low cost involved. Here is a site with plenty of information on credit card processing services – hope [...]
thank you for responding. i’m sorry, this is the first time i’ve actually been on a site like this and i’m actually new to Access. i’ve never received training but i do ok developing simple databases. I’m using Access 2003. i created a table for the employee and unit because i thought that giving it [...]
Here’s a simplified example (vb script) that should get you started. You might want to add code to check for the existence of the folder, and to display user friendly messages. <pre>Dim objFSO, objFolder, strDirectory strDir = InputBox(“Enter directory name”) Set objFSO = CreateObject(“Scripting.FileSystemObject”) Set objFolder = objFSO.CreateFolder(strDir) WScript.Quit </pre> -CarlosDL
Are you able to login locally to the computer? see what group policy (if any) is attached to this test computer. At command prompt type: gpresult If you are, then try removing and re-adding a computer to the domain to see what happens.
For bulk modifications, I would lean towards scripting if you are knowledgeable and comfortable at the level. If you are not comfortable with scripting, I would then utilize 3rd party tools like Managed Engine’s ADManager Plus which allows bulk modifications of user accounts. With the modification, you can assign the individual user to that mailbox, [...]
Why not use the INT function instead of the TRUNC function. The INT function is perfect for this as it is meant to return the integer of a number, (and it is better for those following your code as it is easier to understand.) =A1 – INT(A1) says exactly what you are trying to do.
Yes there is… Many thanks for the tip.
If I understand your question correctly, then something like this should do what you need: <pre> Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Panel2.Enabled = False Panel2.BackColor = Color.DarkGray Panel3.Enabled = False Panel3.BackColor = Color.DarkGray … End Sub</pre> -CarlosDL







