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 strongm 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. bawstl

    ListView PowerCobol Explained?

    All the methods, properties and events should be available thru the help system. I usually go to the Controls and Objects Index for the control in question then narrow it down to the event or property I need.
  2. bawstl

    ListView PowerCobol Explained?

    the ones represent the icon (only used if LVStyle is 0 large icon) and smallicon (only used if the LVStyle is 1 small icon) if you use 3 report both are not used. The listitem (index) is a pointer to the item added. Then just read thru the index file adding the items to the listview.
  3. bawstl

    NetCobol 7.3.2: How to specify printer format for ReportWriter report

    Not sure if this will help, but in the CBR file do you have the @PrinterFontName setup? @PrinterFontName=(Courier New,Courier New) or something similar. Here is what I can find in the samples for NetCobol. 002540 FD PRINT-FILE. 002550 01 LINE-REC PIC X(136). 002560 01 CMNT-REC...
  4. bawstl

    help needed fixing error

    yes, and move or redefine the fields and use those to multiply
  5. bawstl

    Transparent Breakpoint

    is it a windows service app?
  6. bawstl

    Setting HTML Attributes in netCobol

    robundrh2o, You probably need to use the system.drawing.color then set the backcolor to PROP-GRAY OF CLASS-COLOR (where class-color references system.drawing.color) or similar for the web. hope this helps, Bruce
  7. bawstl

    Using powercobol 5.0 controls with ole..

    Federico, Not sure this helps,but the Fujitsu help states Position made up of the following elements. This property corresponds to the POS-Width 01 Positions. 02 POS-X pic s9(4) comp-5. 02 POS-Y pic s9(4) comp-5. 02 POS-WIDTH pic s9(4) comp-5. 02 POS-HEIGHT pic s9(4) comp-5. Bruce
  8. bawstl

    Setting HTML Attributes in netCobol

    What is the statement? Set prop-enabled of textbox to ws-false (where ws-false pic 1 usage bit value B"0") you should also be able to use intellisense for the textbox property.
  9. bawstl

    Fujitsu NetCOBOL for .NET (Express version)

    their web site is www.netcobol.com but I don't think they have a free version of the .Net cobol (current version .Net is 4 and regular cobol is version 10).
  10. bawstl

    Setting focus on a entry field in AcuCOBOL

    I am not sure, but you might see if there is something like 'SetFocus' for the Ef-1 text box.
  11. bawstl

    MicroFocus cobol how to set a .cbi file

    bardagol the company I work for moved from an older version of MF to Fujitsu and was (with a little modification) use the same code for loading files. We don't use the CBI to set file assignments (except for some report parameters). We use working storage with the external global settings. 01...
  12. bawstl

    Map Control

    You might want to check out the link below, http://www.klynas.com/streets.html
  13. bawstl

    Can't open project from Powercobol or Netcobol

    You should have a backup copy (.PPJ~) rename this to .PPJ and it should open (the ~ is a copy before the last save).
  14. bawstl

    Detect When WinForm Is Done Loading

    Or you could put the logic in the Shown event for the form.
  15. bawstl

    Cobol Execution Issues

    You need to 'Allocate the file ($1) if necessary, or specify the file correctly, then re-execute.' this can be done different ways you can use assign to "filex" or a working storage ws-file-name and assign the value here or you can assign the file allocation thru the Cobol85.CBR file...
  16. bawstl

    Calling DLL from Fujitsu COBOL

    Why not try 000010 @OPTIONS MAIN,DLOAD,NOALPHAL 000020 IDENTIFICATION DIVISION. 000030 PROGRAM-ID. COBDLL2. 000040* COMPILER. FUJITSU COBOL 3.0. 000050 ENVIRONMENT DIVISION. 000060 INPUT-OUTPUT SECTION. 000070* DLL TEST ATTEMPT, ADD 2 NUMBERS, RETURN RESULT 000080 DATA DIVISION. 000090...
  17. bawstl

    webbrowser navigate2 and IE7 fails

    I started out using the webbrowser control, but there was an issue on the web site when trying to open a second window (edit driver, work order...) would always bring the user back to the login screen.
  18. bawstl

    webbrowser navigate2 and IE7 fails

    Figured it out. The issue was with trimend changed to just trim for the url
  19. bawstl

    webbrowser navigate2 and IE7 fails

    I have a windows application (VB net 2005) that uses the shdocvw.internetexplorer and a webbrowser. Then watches for a file to be created and then navigates to that url. This process works fine using IE6 but returns an HRESULT fail code of 0x80040201. Thanks, Bruce
  20. bawstl

    Accessing PROPERTY

    You might try setting the property 'SET DecryptedText of SecurityMod to ws-originaltext'

Part and Inventory Search

Back
Top