Forum Post: RE: Select particular cell in Datagridview
The following example appears to work. This sets a flag and saves the current coordinates in the CellEndEdit event but actually changes the current column to the desired one in the Selection_Changed...
View ArticleForum Post: RE: Can't add existing form to project
Which product version are you running and with which version of Visual Studio? I tested this here using Visual COBOL for Visual Studio 2010 V2.2 update 1 and it works fine.
View ArticleForum Post: RE: A new Visual COBOL Webinar Series is starting soon
I believe the site that you are referring to is asking you to register to watch the videos and not to register for the webinars. Please enter your user information and then it should give you the...
View ArticleForum Post: RE: A new Visual COBOL Webinar Series is starting soon
Thanks Chris, you are correct.
View ArticleForum Post: listBox (sample C#)
In Visual Cobol i try: - Create a listBox1 - Add Itens: invoke listBox1::"Items"::"Add"("Item 1") invoke listBox1::"Items"::"Add"("Item 2") - But now, can i get INDEX from doubleClick...
View ArticleForum Post: RE: listBox (sample C#)
OLA CLAUDIO. OTIMO, SOU JNEVES DE RIBEIRAO PRETO-SP BRAZIL, BAIXEI O VISUAL COBOL FOR ECLIPSE, QDO FAÇO SETUP FINALIZA COM SUCESSO, DEOIS VEM POUP=UP (unsintall// repair // close, CARA NAO CONSIGO...
View ArticleForum Post: Unhandled Exception
I have a client that is get an unhandled exception 'Method in found Int32 MicroFocus.COBOL.Program.Helper.CompareStrigFig (system.string System.string)' . I can not get the same error on my...
View ArticleForum Post: RE: Unhandled Exception
This does look like a runtime mismatch. The method CompareStringFig is a fairly recent addition to the runtime, so it looks as though the program has been compiled with a more recent version of the...
View ArticleForum Post: RE: Can't add existing form to project
Hi Chris I'm using Micro Focus Visual COBOL 2.2 Version 2.2.00244 but without update 1, and as I'm using a trial version (with a Personal license) that is probably the reason. Sorry for taking up your...
View ArticleForum Post: RE: listBox (sample C#)
Hi Claudio, Please see the documentation for the Listbox class here as it lists all of the methods, properties and events that are available to you. If this is a single selection Listbox then the...
View ArticleForum Post: RE: listBox (sample C#)
you provided the link to the microsoft C # documentation. there is the link to the documentation of methods for use in visual cobol?
View ArticleForum Post: RE: listBox (sample C#)
Sorry, the .NET Framework classes are a Microsoft product and therefore they are documented by Microsoft. When you use COBOL you are still accessing the same underlying .NET Framework classes and the...
View ArticleForum Post: RE: listBox (sample C#)
How i try to use dataGridView. But i dont know to create column-names. I try: (all whith errors) set dataGridView1::ColumnCount to 5 (OK) invoke dataGridView1::Columns::Add::"PriCol"...
View ArticleForum Post: Semantics
Dear Sirs, We are having problem to execute the following in the command Line of Visual Cobol for Eclipse : cob -C "P (cobsql) end-c SQLCheck == SEMANTICS endp" Many Thanks, PJM
View ArticleForum Post: RE: listBox (sample C#)
The Add method on the Columns collection property does not take a string as a parameter, it takes an object of type DataGridViewColumn. You need to create the column objects first and then add them to...
View ArticleForum Post: RE: Semantics
Do you mean in the DevHub product instead of "in Visual COBOL for Eclipse?" On what OS? What is the error that you receive? Thanks.
View ArticleForum Post: RE: Semantics
The error screenshot does not correspond to the command that you showed in your initial post. Your initial post shows cob which is the command under Unix/Linux which is why I assumed that you were...
View ArticleForum Post: RE: Using 'Call' in Method
Hi Chris, I am a little confused with this. We have one Winform project for a Menu that should call different Winform projects for every Menu option, and I can not make the call work, I allways...
View Article