Forum Post: RE: Call Stack
The Call Stack should be shown within the Debug window and it should include performed paragraphs up to the current execution point. If you click on a previous paragraph name in the call stack it will...
View ArticleForum Post: RE: Field Lenght
It is a great help!!! Seek one more suggestion whether we can pass any value to cursor position itself.
View ArticleForum Post: Locking Threads
I would like to place a thread lock around the code below but I'm not sure what the syntax would be in Visual COBOL. Can you help me with the syntax? IF WS-COMM-FROM-PROGRAM SPACES...
View ArticleForum Post: RE: Locking Threads
You could use a mutex for this. See:- documentation.microfocus.com/.../index.jsp for an example. Regards David
View ArticleForum Post: ACCEPT Screen Level Data.
Hi, We used to capture the data from Screen Area using ACCEPT clause. The variable we defined inside Screen Area like 01 GMD3010A-DATA 05 LINE 04 COL 62 PIC X USING GMD-PEP. And using ACCEPT...
View ArticleForum Post: RE: Populate array with "occurs any"
This problem has now been resolved through the support incident. This was the response: I have taken a look at your sample and I believe that the following is the code that you need to add to form4 in...
View ArticleForum Post: RE: Locking Threads
If this is managed code you could also use the SYNC/END-SYNC statement. Please see the documentation for an example here: Thanks
View ArticleForum Post: RE: Field Lenght
Partha, In the sample above there is code that does : move 1 to cursor-row move 1 to cursor-column to set the cursor position for the next ACCEPT. As those values...
View ArticleForum Post: Syntax for creating an event
Can you tell me what the syntax would be for creating an event that can be called later by an event handler? C# example: public event EventHandler CloseButtonPressed;
View ArticleForum Post: RE: Syntax for creating an event
Hi Noj, the syntax will be something like: 01 CloseButtonPressed type EventHandler event. You can attach/detach methods/delegates to the event using the ATTACH/DETACH verbs, e.g.: attach method...
View ArticleForum Post: RE: Syntax for creating an event
There is an example program available that covers this as well. On Start menu-- All Programs-- Visual COBOL group run Samples and then select COBOL for .NET in the left hand column and then Events in...
View ArticleForum Post: Problem with PFKeys
Dear Chris, We stil have the same problema witk ADISCF in AIX 7.1. When we try toa alter the PFKeys funtion we didn´t have the same that we have in ADISCF for Windows. Por example in Windows we have...
View ArticleForum Post: Error 0x800b0101
Hello! Please help me with the following problem (i don't understand what i have to do...): 0x800b0101 - A required certificate is not within its validity period when verifying against the current...
View ArticleForum Post: Mouse Click Event
Hi, Is it possible in VISUAL COBOL V2.2 to activate the Cursor postion in Screen Section by a simple clieck over the fields. Still now we are activating the Screen fields using TAB or Arrow Key...
View ArticleForum Post: RE: Error 0x800b0101
Hi Vadim, Can you please provide some detail about what exactly you are doing when this error message is displayed? Thanks.
View ArticleForum Post: RE: Error 0x800b0101
I try to install the visual cobol by double-click on file - vce_22.exe, which i had download by reference from email from Distribution@microfocus.com
View ArticleForum Post: RE: Error 0x800b0101
Are you attempting to install this on a Windows XP system by any chance? There is an issue on some Windows XP systems with the Root Certificates not being up-to-date resulting in this type of error....
View ArticleForum Post: RE: Error 0x800b0101
I have windows 7 32 bit at work and windows 7 64 bit at home and when i try to install Visual Cobol this error appear on both OS :( May be this part of log file can help :...
View ArticleForum Post: RE: Error 0x800b0101
We believe that either the installer that you downloaded is corrupt or you need to update the root certificates on your Windows 7 computers. The latest product release is 2.2 update 1 and the version...
View ArticleForum Post: RE: Mouse Click Event
Hi, This is supported in native code applications only through calls to specific AF function calls, which do not seem to be documented at the moment in Visual COBOL. The following is an example that...
View Article