Forum Post: RE: Call win forms from native cobol program with copy books
Thanks it helped a lot
View ArticleForum Post: Cobol Program Driving the whole flow
Hi, I have a requirement where I need to call a form from another form after successful login. The steps which need to happen is as follows 1) A Cobol program is executed and it open a win forms which...
View ArticleForum Post: RE: NetExpress convert to Visual Studio
- I do not understand anything, the DLL was written in C # if it is native I have no idea. - That's how I learned and this working out for that will change, I do not know anything about the managed...
View ArticleForum Post: RE: Convert String Base64
Please do not post your data (the Base64-encoded string) in a question like this. It's completely unnecessary and simply makes your question difficult to read. Are you writing a managed .NET COBOL...
View ArticleForum Post: RE: Convert String Base64
Hello I need to convert the string passed and this is in Base64 that's all.
View ArticleForum Post: Connect MySQL
I tried to connect to MySQL in Visual Cobol 2.2, but I can't do it. my project - property - SQL - OpenESQL - ADD - Select DBMAN - After that, I can't select ODBC, so I can't use ODBC. In addition,...
View ArticleForum Post: RE: NetExpress convert to Visual Studio
Pita, tente o seguinte: Crie um novo projeto nativo dentro da solução. adiciona a dll selecione propriedades do projeto nativo e informe a plataforma 86x...
View ArticleForum Post: RE: NetExpress convert to Visual Studio
Altair, adicionar a dll, onde? Fica complicado programei em NET Express por muito tempo agora temos que nos adaptar a esta nova plataforma e esta bem complicado, não encontramos nada na WEB sobre VC e...
View ArticleForum Post: RE: Connect MySQL
my project - property - SQL - OpenESQL - ADD - Select DBMAN - After that, I can't select ODBC, so I can't use ODBC. Although it appears that you can't select ODBC (in the Add Directive dialog), go...
View ArticleForum Post: RE: NetExpress convert to Visual Studio
Na verdade, você não precisa criar um projeto nativo. Click-right sobre o nome do projeto e Add Reference Browse e selecione a DLL desejada. Depois é só fazer a chamada. Anexei um arquivo com dois...
View ArticleForum Post: ListView with WPF in Visual Cobol
Hello: I am a new member and i try use a listview in a program. I've seen many examples but I haven't been able to put any working. I have always a problem. The las problem is an incompatibility with...
View ArticleForum Post: RE: Error 179 - MFRUN.gnt cant be found
Hello Chris, FYI after some delay it was confirmed that the original install package was either corrupt or invalid. It appeared to run to end but having downloaded a verified install package from MF...
View ArticleForum Post: Visual Cobol PE
Just upgraded to Visual Studio 2015. Whuch version of VCPE do I need to install? Thanks
View ArticleForum Post: RE: Convert String Base64
I need to do a routine to decode on my system I can not depend on a Web site. VB.NET --- TextBox2.Text = Convert.ToBase64String(New System.Text.ASCIIEncoding().GetBytes(TextBox1.Text)) ´Encode text...
View ArticleForum Post: RE: Convert String Base64
try this: set textBox2::Text = New System.Text.ASCIIEncoding()::GetString(type Convert::FromBase64String(TextBox1::Text)) * Decode base 64 to text
View ArticleForum Post: RE: Visual Cobol PE
We just released Visual COBOL Personal Edition 2.3 on the PE download site here: In this version we have full support for Visual Studio 2012, 2013 and 2015. Simply download the installer for VS2015...
View ArticleForum Post: RE: Connect MySQL
I just wanted to ensure that you are using the correct project type here. If you select DBMAN in the SQL tab and the default option is ADO then this is a managed code .NET project. If you were using a...
View Article