Forum Post: Stored Procedure Output
Hi , I have the following code in cobol program: MOVE 1 TO SP-P-MEMBER-NO EXEC SQL call SP-GET-MEMBER-EMAIL(:SP-P-MEMBER-NO IN , :SP-O-EMAIL-ADDRESS OUT ) END-EXEC. And below is my stored procedure...
View ArticleForum Post: RE: VC PE 2.3 FOR VS 2015 Debugging
Is the debugger actually attached to a process? I don't use VS 2015 myself, so it's possible that Microsoft has changed the menu layout, or that some option controls whether the Memory windows are...
View ArticleForum Post: WPF IValueConverter
I don't know how to define the ValueConversion attribute in a Cobol class implementig IValueConverter. Can anybody translate the following C# definition. [ValueConversion(typeof(DateTime),...
View ArticleForum Post: RE: Import a Remote Copy Book Project
Thank you for visiting the Micro Focus Community Forum. Please try the following: 1) Click File Import Micro Focus Remote COBOL Projects. (In some versions of Visual COBOL for Eclipse, that last...
View ArticleForum Post: RE: WPF IValueConverter
Hi Lanter, you should be able to use something like: $set ilusing"System" ilusing"System.Windows.Data" class-id DateConverter implements type IValueConverter attribute...
View ArticleForum Post: Clean WebForm
I need to clean a webform but I would like to field the field found a routine in C # you can convert to Cobol . Thank you protected void Button1_Click ( object sender , EventArgs e ) { LimparControles...
View ArticleForum Post: RE: Clean WebForm
Hi, This code should do it:- method-id Button1_Click protected. procedure division using by value lnkSender as object lnkEvent as type System.EventArgs. invoke...
View ArticleForum Post: RE: Import a Remote Copy Book Project
Hello, this I already tried. I want to import a remote copybook project. A copybook project is a different type of project which can't be imported with this method because it doesn't show up in the...
View ArticleForum Post: Join Query
Hi , In Embedded SQL we could write a Join SQL query and get the desired results from two or more table in one go. But in ADO.Net , we create a dataset for two table and define a relation between...
View ArticleForum Post: Report Writer under managed COBOL?
Does anyone know of any restrictions or issues with using Report Writer in managed COBOL? Does anyone have any experience with Report Writer in managed COBOL? We've converted a number of our "batch"...
View ArticleForum Post: RE: Import a Remote Copy Book Project
Sorry to hear that this did not work for you. Perhaps the feature behaves differently in that fairly old (Visual COBOL for Eclipse 2.2) version of the product. I have confirmed that with the current...
View ArticleForum Post: RE: Report Writer under managed COBOL?
I don't have any experience with Report Writer in managed or unmanaged COBOL, I'm afraid. However, my initial guess is that a generated method needs to be decorated with the...
View ArticleForum Post: RE: Report Writer under managed COBOL?
The suggestion didn't fix the exception. I tried modifying the method-id first and tested, then modified the class-id and tested again. Same exception thrown at the C# call to the COBOL class....
View ArticleForum Post: RE: Clean WebForm
Thanks for answering , but this clearing of the master page information. I need to clean the form of a page called by the master page . Thank you! I made this work and invoke invoke self ::...
View ArticleForum Post: RE: Report Writer under managed COBOL?
Thanks Don. I have been able to reproduce the problem using a simplified version of your example that invokes the COBOL method from a C# console app without using RunUnits. I find that the error...
View ArticleForum Post: RE: how to specify file names in Visual Cobol Select mainframe style
Where do we set our environment Variables in for managed codes. On selecting App.config file , an xml file comes up . How do we define variables there. For eg: File Path declaration.
View ArticleForum Post: RE: how to specify file names in Visual Cobol Select mainframe style
I have got answer for this in other posts ... Thank You
View ArticleForum Post: Calling SYSTEM
Hi, In MF COBOL + Unix Environment , we used Call SYSTEM to execute Unix Commands from COBOL program.( Mostly used to move files ) In Visual COBOL on Windows ( Oracle DataBase and Powershell scripts...
View ArticleForum Post: RE: Calling SYSTEM
The call "system" is supported under Windows in the same manner as under Unix so the above command should work just fine. If you wish to suppress the prompt o overwrite existing files then you can add...
View ArticleForum Post: RE: Regex
Try the following: working-storage section. 01 wValido condition-value. 01 Lnk-Processo2 string. procedure division. move "mmsis@mmsis.com.br" to Lnk-Processo2...
View Article