RE: Converting VB.NET to Visual Cobol
You get a NullReferenceException because c is not initialized. Try this:declare c as type SHA512Managed = new SHA512ManagedFreundliche GrüsseWerner Lanter
View ArticleRE: Converting VB.NET to Visual Cobol
...and to answer the original question, the syntax: declare a() as binary-char unsigned occurs any = type Encoding::UTF8::GetBytes(SourceText)...is not quite right. Should be: declare a as...
View ArticleVirtual COBOL Personal Edition
I am a former COBOL programmer and Systems Analyst looking to get back into coding. I want to sharpen my skills so I have signed up for the Personal Edition. I need to know what version I should...
View ArticleRE: Viewing External Data Elements
Yes, this was an issue with external data items in a managed code application only. The same debugging query works fine for native applications.This problem has been fixed and will be delivered in the...
View ArticleConverting VB.NET to Visual Cobol
I'm converting this VB.NET code to Visual Cobol but I'm with difficulty in the declaration: declare a() as binary-char unsigned occurs any = type Encoding::UTF8::GetBytes(SourceText)VB.NET code...
View ArticleRE: Converting VB.NET to Visual Cobol
Thanks for the tip. I got the solution with the following code.1 $set ilusing"System.Security"2 $set ilusing"System.Security.Cryptography" 3 class-id PasswordSHA.Form1 is partial4...
View ArticleRE: Error: method with signature in the trial VC 2.2
Support for passing parameters directly within a method signature was added in version 2.2 update 1. The current version of the VC PE product available for download is the 2.2 base release so it does...
View ArticleError: method with signature in the trial VC 2.2
I´m using the VC 2.2.00151 Trial at home to develop small projects that will be inserted in the book I'm writing "Introduction to Visual COBOL .NET" and when I insert parameters directly in the method...
View ArticleRE: DLL access
Try setting the PATH in the web.config file of the WCF project and not in the wrapper class so it is picked up when the application is started.
View ArticleRE: Message CBL x ASPX
You can do this by using inserting the javascript "alert" command into the page using something like the following: method-id Button1_Click protected. procedure division using by value sender...
View ArticleMessage CBL x ASPX
I need to give a message in a aspx application, for example when the user clicks on a button displaying the message.
View ArticleRE: Message CBL x ASPX - 2ª part
I am not sure what you are asking for here.If you want to ensure that the fields are filled prior to the user clicking the button then you should disable the button until the fields have data in...
View ArticleRE: Message CBL x ASPX - 2ª part
What I need is to know why the page is missing the setting when the message shows
View ArticleRE: Message CBL x ASPX - 2ª part
Oh I see. The message is displayed prior to the page being rendered. To change this so that the page will be rendered before the message is displayed try the following instead: method-id...
View ArticleMessage CBL x ASPX - 2ª part
See what's going on, see the images at http:\\www.mmsis.com.br\mf\Acesso1.png and http:\\www.mmsis.com.br\mf\Acesso2.png method-id Button1_Click protected. procedure division using by value...
View Article