Call win forms from native cobol program with copy books
Hi,I am new to visual cobol and 3 yrs exp to Visual Studio. We have requirement where we need to design a win forms using VS and write a cobol program which will call these win forms. We will set some...
View ArticleCobol 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 follows1) A Cobol program is executed and it open a win forms which is...
View ArticleNetExpress convert to Visual Studio
Good morning, I am again with this old problem, I need to convert this program done in Net EXpress to Visual Cobol, noting que the program works Correctly in NetExpress but in Visual Cobol can not load...
View ArticleRE: 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 ArticleRE: 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 ArticleRE: Convert String Base64
Hello I need to convert the string passed and this is in Base64 that's all.
View ArticleRE: 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 ArticleRE: 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 ArticleRE: 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...
View ArticleConnect 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...
View ArticleRE: 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 ArticleListView 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 de...
View ArticleRE: 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 ArticleError 179 - MFRUN.gnt cant be found
Error 179 - MFRUN.gnt cant be found on COBOL Server for WindowsI have looked at previous post on this subject which seemed to be cleared by simply restarting...
View ArticleRE: 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 ArticleRE: Convert String Base64
try this:set textBox2::Text = New System.Text.ASCIIEncoding()::GetString(type Convert::FromBase64String(TextBox1::Text)) *> Decode base 64 to text
View Article