RE: Visual Studio Express compatability
Please use the following link:www.microfocus.com/.../index.aspxThanks.
View ArticleRE: Visual Studio Express compatability
thank you that did the trick. Every time I filled that out in the past it kept sending me to the 2.2 links.
View ArticleRE: Cobol Program Driving the whole flow
Hi Chris,The main form will open the second form using threading on button 1 click . On button 2 click I will open a 3rd form using thread. so basically my 1st form is having 2 button and 1 text boxNow...
View ArticleRE: Ctrl in Visual Cobol Eclipse
Hello PM_SSW,It does not appear that you can change the CTRL modifier key used for Go To Definition in the COBOL Editor. I am checking to confirm whether this is possible.
View ArticleCtrl in Visual Cobol Eclipse
Hi,is it possible to change the key of the "go to declaration"-function? (CTRL + Click on variable)It occurs very often that I want to copy or paste something and accidently jump to a...
View ArticleRE: Ctrl in Visual Cobol Eclipse
I've confirmed that Visual COBOL for Eclipse does not currently provide the ability to configure the modifier key used for Go To Definition in the COBOL Editor. Thank you for pointing this out; I'm...
View ArticleRE: Wait Cursor
set type Cursor::Current to type Cursors::WaitCursorto set it back set type Cursor::Current to type Cursors::Default
View ArticleQuestion or Issue with generated Directives file - Managed Winforms application
Either there is an issue with generating the dir file ... or I have a question related to the intended behavior when generating the dir file and the subsequent use of the COBOL command to generate the...
View ArticleRE: Question or Issue with generated Directives file - Managed Winforms...
The generated dir file is really just an informative file that will show you which directives are used when building the project using Visual Studio. You can use this .dir file anyway that you see fit...
View ArticleRE: Global Variables in VISUAL COBOL
You can store the object in the Base class by defining it as an external item in both Base class and in Layerexample:01 anInstance object reference external.This data item will then be referring to...
View ArticleRE: ListView with WPF in Visual Cobol
You can use the event SelectionChanged to find out what the current selected value is either by its index number within the ListView or you can retrieve the selected item into an object of the same...
View ArticleRE: VC Not Playing Well With Others
Your copybooks are missing from the zip but the first thing I immediately noticed is that you are defining the COM class name incorrectly in the .gnt program.In program1.cbl: COMPRESSOR IS CLASS...
View ArticleVC Not Playing Well With Others
I'm trying to call a DLL that I wrote in C# from a GNT called from a native COBOL program. The call is failing with "Server defined OLE exception" (800401F3): Invalid class string...." Now, from past...
View ArticleRE: check if file exists
*> Test if File exists declare TestFile as string. set TestFile to "c:\temp\testtext.txt" if type System.IO.File::Exists(TestFile) display...
View Articlecheck if file exists
How can I use the File.Exists(filename) statement of VB.Net to Visual Cobol?
View ArticleRE: VC Not Playing Well With Others
Chris - Thanks for helping out. I must've looked at that 50 times, and I had someone else look at it and neither of us caught that. Sometimes the answer is tricky to find, sometimes it's right under...
View ArticleRE: Use of Clipboard
Generally you can call any .Net function. An example: invoke type System.Windows.Clipboard::SetDataObject(type DateTime::Now::ToLongTimeString()). *> Copy Time to Clipboard...
View Article