Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: etom
  • Order by date
  1. etom

    Cobol syntax

    Try embedding a x'0D0A' in your text string. Something like the following: STRING LIST-TIME, X'0D0A', LIST-CALL, X'0D0A', LIST-NAME, ' ', LIST-CONTACT X'0D0A', LIST-DESC, ' ', List-Icon DELIMITED BY SIZE INTO CALL-STRING This works in Fujitsu Cobol.
  2. etom

    moving COMP value to numeric value

    I believe we are all confused. 01 val1 pic 99v99999 comp. 01 val2 pic 9(7). 01 val3 pic 9(7). Move val1 to val2. divide val2 by 100 giving val3. val1 is defined as 7 digits binary with an assumed decimal point. Value "0000324" would be considered 00.00324. First question...
  3. etom

    Open Error

    If you are talking about open error on specific files, these are usually files that the operating system is using and eTrust has been denied access to them. This is a normal condition. etom
  4. etom

    Wireless Neighbor

    I have the same issue. I have two neighbors with wireless networks. My son's PC can see both of theirs and mine. His PC kept trying to connect to the wrong network. The wireless adapter on my Son's PC has the ability to build a connection profile. I simply set up the proper profile to the...
  5. etom

    PIC X and ACCEPT Problem. Please Help!!

    I use version 7 of the Fujitsu compiler and have the same problem with the Accept verb. I have never tried to solve the problem since I rarely use the accept verb do to most of my programming is in Powercobol. In reading the documentation it indicates that the following may solve your...
  6. etom

    Fujitsu Cobol 5 and Listview

    According to my Version 7 documentation, Listviews contain Listitem objects. Listitem objects do not contain a property for color so, I would read that as a NO to your question.
  7. etom

    When does COBOL send printout to the Windows spooler?

    My printing is release when I close the printer. It will always print on your default printer and you have no choice of the font. Mine was printing so small I could not read it. Kind of depends on what type of printer you have. There is a way to control the Fonts and sizes. Fujitsu has a...
  8. etom

    JCL: DISP question

    Use "DISP=(MOD,DELETE,DELETE) etom
  9. etom

    zOS Enterprise cobol calling non LE Assembler pgm AMODE(24), RMODE(24)

    I believe compiling your Cobol program with RMODE(24) and AMODE(24) is not necessary. I have called Assembler non LE compliant routines using just the DATA(24) compile option and using a dynamic call "CALL WS_NAME USING VARIABLE" where WS_NAME is a working storage field contaning the routine...
  10. etom

    realia cobol. exe returns dos16m error under windows 98

    I would make sure your Windows 98 system has the extended Memory manager loaded for Dos programs. It sounds like you are trying to use the extended memory (/E on the bind) and it is possible on the Windows 98 machine extended memory has not been made available to your DOS window. I have located...
  11. etom

    upgrade to XP

    I would completely backup my system prior to ugrading to XP. Use software like Norton Ghost, Drive Image, or True Image to create a backup that can be restored if things go very wrong.
  12. etom

    Moving PIC S9(15)V9(02) COMP-3 to output

    The 0C7 is saying that your input amount was not a valid Comp-3 format. The code that fredericofonseca posted above which tests the input for numeric will solve the 0C7 however, your root cause is your input amount is not a valid comp-3 field. etom
  13. etom

    E-Trust V6 hangs on Splash screen

    Sorry, Unable to find that entry in my registry. I have a special version of the CA software supplied by my work. I guess I will turn it over to them to try and fix. Thanks for the attempt. etom
  14. etom

    How do I remove the RECORDING keyword from code?

    IBM does not require this keyword anymore. It will default to fixed or variable depending on how you define your record layout. etom
  15. etom

    E-Trust V6 hangs on Splash screen

    I am having a problem where when I try and launch ETrust the splash screen is displayed and that is where it hangs. ETrust seams to be working normally otherwise. I can right click on a file or directory and scan it. I just can not launch the ETrust Console to set up scheduled Scans etc...
  16. etom

    Referencing error

    When writing a subroutine (Procedure using) it would indicate that another process will be calling your program. The message you are getting appears to me to indicate that the calling program (program calling your routine) does not call your program with matching parameters. Your program has...
  17. etom

    NetCobol Wrapper Wizard

    Sounds like a microsoft issue to me. Glad you were able to fix the problem. I already had service pack 1 installed so I guess that is why I do not have the problem. etom
  18. etom

    NetCobol Wrapper Wizard

    Great, if you get the answer from fujitsu please post an answer to this question just in case someone else has this problem in the future. etom
  19. etom

    NetCobol Wrapper Wizard

    It sounds like a registry issue. I had a simular problem with V6 last year. After contacting Fujitsu, they sent me a registry fix to clear up the problem. That was on the Data Access version. My guess is you have the wrong version of the MS installer documented in your registry somehow...
  20. etom

    Updating Registry Value using Fujitsu Cobol

    Thankyou very much. I was almost there. I was just missing a couple of pieces. etom.

Part and Inventory Search

Back
Top