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 SkipVought 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: *

  1. fsccdm

    If you need open a text file delimi

    If you need open a text file delimited by char with excel and create excel file: **** REPOSITORY class COM AS "*COM" CLASS OLE AS "*OLE". ********* WORKING-STORAGE SECTION. **** 01 CONTROLLI. 03 EXC_APPLICATION PIC X(50) VALUE "EXCEL.APPLICATION&quot...
  2. fsccdm

    DBAccess Control 64 Field Limitation

    If you have licensed datagrid control from microsoft you can use PcobADODatasource from version 7. I work with more 220 fields correctly. See samples on v7. For retrieve data from field you can use only the property "Col" and "TEXT" of datagrid (ex: MOVE SPACE TO RIGA-COND...
  3. fsccdm

    how to tranfer the object handler between two form?

    If you use PowerCOBOL you can create your object as a control. Then register it in your system, and put it as a normal control on the main form (adding with custom control), open child form with INVOKE CHILD_NAME "Activate", and pass data between the forms. I do not know if this is...
  4. fsccdm

    powerform

    Setting run-time variable FOR powerform "SETPRTDIALOG 2" can I activate in any way flag for collate option? Thanks fsccdm
  5. fsccdm

    CBL_CHECK_FILE_EXIST always returning 0

    You can use "GetFileAttributesA" (attributes of a file it's better than check_file_exist because is very short) if the file exist return-value is 0 else -1 you need use kernel32.lib. On cbl routines routine check_file_exist is wrong, you can retrieve the correct file on support...
  6. fsccdm

    powerform with windows 2000/XP

    You must set on "Setting" the printer as a printer server with the format of your custom size and when you print you must use that format. Fsccdm
  7. fsccdm

    'Open Error' file = sysin. 'non-file'

    You must verify where is located the file. On debug mode must be in debug folder, in release mode must be in release folder or other folder you set. See file control and set the assign clause correctly. Your program cannot find the location file. fsccdm
  8. fsccdm

    Converting Alphanumeric Characters to Decimal

    This is in POWER COBOL V.7.0 but it's the same thing use FUNCTION NUMVAL it's easy ENVIRONMENT DIVISION. DATA DIVISION. WORKING-STORAGE SECTION. 01 CONTROLLI. 03 XDAT PIC X(10). 03 NDAT PIC 9(10). PROCEDURE DIVISION. A. MOVE SPACE TO XDAT...
  9. fsccdm

    Fuijtsu COBOL

    What version of Fujitsu cobol are you using?
  10. fsccdm

    create new e-mail message with outlook

    If you need to create a new e-mail message with attachment file using outlook and PowerCOBOL V.6.1: ******* REPOSITORY CLASS COM AS "*COM". ******* powercobol v.6.1 button click ENVIRONMENT DIVISION. DATA DIVISION. WORKING-STORAGE SECTION. 01 CONTROLLI...
  11. fsccdm

    PowerCobol V4 sample programs wanted

    You can download it from adtools support (sample program) Fsccdm
  12. fsccdm

    Building database - PowerCobol

    I use access database or sql, and indexed cobol files, and database are very useful for data management. With database it's easy create filters to search data without using keys as with indexed files. You can use powercobol control adodatasource integrated with datagrid control from microsoft...
  13. fsccdm

    listview control

    If you want move data from list-view: on itemclick event of control list-view (only on first column click) ENVIRONMENT DIVISION. DATA DIVISION. WORKING-STORAGE SECTION. LINKAGE SECTION. 01 POW-PLISTITEM OBJECT REFERENCE POW-CLISTITEM. PROCEDURE DIVISION...
  14. fsccdm

    listview control

    See this if can help you ENVIRONMENT DIVISION. DATA DIVISION. WORKING-STORAGE SECTION. 01 ws-details. 03 ws-dets-1 pic 999. 03 ws-dets-2 pic xxxx. 03 ws-dets-3 pic xxxx. 01 CONTROLLI. 03 POW-PCMLIST OBJECT REFERENCE POW-CLISTITEM. 03 WK-IDX...
  15. fsccdm

    Calling Win32APi in Fujitsu Cobol

    Go to www.adtools.com search support samples and download it (windows API). The fujitsu cobol provides, also, cbl routines for create directory or similar (see the samples on fujitsu cobol). fsccdm
  16. fsccdm

    Invoking the Windows HTML Help Engine

    If you use powerCobol see this ****************** ENVIRONMENT DIVISION. DATA DIVISION. WORKING-STORAGE SECTION. 01 CONTROLLI. 03 FILENAME PIC X(260). PROCEDURE DIVISION. A. MOVE SPACE TO FILENAME STRING "HH" DELIMITED BY SIZE " &quot...
  17. fsccdm

    how I do that ??

    This is in POWER COBOL V.6.1 but it's the same thing ENVIRONMENT DIVISION. DATA DIVISION. WORKING-STORAGE SECTION. 01 CONTROLLI. 03 XDAT PIC X(10). 03 NDAT PIC 9(10). PROCEDURE DIVISION. A. MOVE SPACE TO XDAT MOVE 0 TO NDAT MOVE "Text&quot...
  18. fsccdm

    POWERCOBOL FORM WITH SCROLLS

    To robertocecchini it's the same response that give me Gary Roush of support-adtools. It'valid only for text but not if you want insert controls at design time as you make with userform of vbasic of office. I post with tromba a request to Fujitsu for do that on next version of powerCobol. Thanks...
  19. fsccdm

    POWERCOBOL FORM WITH SCROLLS

    I have used TAB but It's not very nice. I should prefer If possible use a form with scrolls as office, it's more helpful for operator use. I'm Italian speaker so excuse me for my bad English. Fsccdm Thanks
  20. fsccdm

    POWERCOBOL FORM WITH SCROLLS

    I need use forms with scrolls bars as Microsoft forms 2.0 for office (for a very higth form data). Is possible create it on powerCOBOL V.6.1? or use the controls for Microsoft 2.0? I tried to do that but the controls don't works correctly (powercobol not recognizes scroll bar both,vertical,hor...

Part and Inventory Search

Back
Top