Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
It would be great if the ICON configuration variable could use an icon that is more than a 16 color icon. The current restriction of only being able to use a 16 color icon makes it hard to have a good looking icon on current Windows systems. It would be great if it could support True Color Alpha Channel (32-bit color) icons.
Hi! I would like your help! I have the standard Apllication Server, as I used with Net Express 5.0, would you be wondering if I can take advantage of the Application Server that I have if I migrate to Visual Cobol?Thanks in advance for your help! Allan
Hi Team, Whenever region restarted input queue & active queue has disappeared in our environment. Kindly let us know is there any way to fix this issue as permanently.?
Boa dia a todos, por favor estou tentando fazer uma assinatura digital em um XML, e esta dando super certo com a ajuda do exemples que Chris Glazier e Altair Borges me enviaram, porem esta assinando com o algoritimo RSA-SHA1 mas eu preciso assinar com algoritimo RSA-SHA256, eu achei um exemplo que eu acredite que seja o que eu preciso conforme esta abaixo em C#, mas não estou conseguindo converter o Visual COBOL for Visual Studio, se alguém conseguir me ajudar ficarei muito agradecido. atenciosamente Renato Soares Vieira using System; using System.Security.Cryptography; class RSASample { static void Main() { try { //Create a new instance of RSACryptoServiceProvider. using (RSACryptoServiceProvider rsa = new RSACryptoServiceProvider()) { //The hash to sign. byte[] hash; using (SHA256 sha256 = SHA256.Create()) { byte[] data = new byte[] { 59, 4, 248, 102, 77, 97, 142, 201, 210, 12, 224, 93, 25, 41, 100, 197, 213, 134, 130, 135 }; hash = sha256.ComputeHa
Hi, I have a POS application that we are running on a Windows 10 Tablet and need to incorporate a signature capture feature. Does anyone have any suggestions on how to go about doing this without the need for a signature pad device? We want the user to sign on the touch screen and save the signature image to a .jpg file format (preferably, but not absolutely required that it is jpg). Looking around on the web, I find some options for active-x controls that I may can plug in and use. I would greatly appreciate any input or guidance from anyone who is familiar with signature capture on touch screen devices. Thank you!#extend#AcuCobol#COBOL#ActiveX
I've been playing with creating a text file which is imported into an Excel spread sheet. I get good results when the spread sheet in empty but importing to an existing spread sheet(which is what I want) gets totally unexpected results. My question is, are there Excel commands that can say "place this data at this location?". My theory is that with such commands I can update specific locations with the extracted data. Thanks John... Looks like I should add more to my question. The question is about using text to update an Excel spread sheet, sense no one answered I suspect what I want can't be done with a text file. Are there other (simple?) techniques that can accomplish updating specific data in a spread sheet?
Hi all We have now AcuToWeb up and running in a single program. Over all, we find AcuToWeb to slow for the full package, but it is okay for a single program even though we hope that performance could be a little bit better a long the way. But now to my question. Our customer want his customer to sign an agreement on the tablet running AcutoWeb. Is that do able, and does anybody have an idea how to do that. Best Regards Steen
Hi all :-) Does anyone have a COBOL example of a user validation in Active Directory they´d like to share? Regards Steen
Hi all, Has anybody used RMNet to implement an OAuth 2 solution. I am specifically trying access Audatex Audconnect solution for exporting assessments. I can get the authorization login to work using the browser control but the return post opens a new web page which I don't really want to see but I can glean the token from it by inquiring on the web browser control. However, having got the token I then need to post requests using httppost/httpget using the returned token to setup a request for an export and return the endpoint for getting the assessment data. All the posts after the authorization have Curl command equivalent's but I cannot get any of them to work. A simple one is to find out who you are when connected and the curl command is curl -X GET --header 'Accept: application/json' --header 'Authorization: Bearer 'returned token' 'audaconnect-demo.ax-aee.co.uk/.../whoami' which works from the command line when I run it. I h
Hello! I have a listBox that shows specific records of a file. I want to create a textBox so if I type something inside there then the SelectedItem will go to the specific one. Any ideas?
Linux/Unix is almost new for me. Which is the best TERM to use in combination running ACUGT 9.2.4 and/or 10.2. Is it vt220? When yes, how has for me a A_TERMCAP including mouse and colors? The a_termcap MF provided is from 2006.#extend#Linux
Hello I have a problem with the event MSG-GOTO-CELL-DRAG (not thin client). When I use the next code it works when I drag a row down in a grid slowly. When I drag the row down very fast it seems to loose the MSG-GOTO-CELL-DRAG event because INTEGER is not being added. WHEN MSG-BEGIN-DRAG MOVE 0 TO INTEGER WHEN MSG-GOTO-CELL-DRAG ADD 1 TO INTEGER WHEN MSG-END-DRAG DISPLAY INTEGER I tried runtime 9.22 and 10.20#Grid
Good afternoon, please have a string type variable and it has a text of x characters, there is a function so that I can get the exact size of this content, I am joining 3 variables in a string and getting whitespace between them , example:set variable to var1 & var2 & var3So, what for?text1 text2 text3and I need you to stay text1 text2 text3 thank you
Hello to all! I want to fill a listbox from a .dat file but I am stuck!!! method-id ShowListBox public. local-storage section. 01 listItem string. procedure division. open input pinakes. read pinakes invalid key invoke type MessageBox::Show("ERROR!!!"). invoke listBox1::BeginUpdate. set listItem to kwd2. invoke listBox1::Items::Add(listItem). invoke listBox1::EndUpdate. close pinakes. end method. What Am I doing wrong...? PS. I am totally noob in Cobol programming!!!!
hello, I have been trying to install Visual COBOL for eclipse for Windows (Personal edition) and i can't activate the product. I am using the same email I used for registration and I am still getting the Activation Failed. It seems that i need an authorization code to continue. Can someone help me ?
Hi, In a nutshell, how can I call managed COBOL from C#. Is there any references I need to add or something ?? Best Regards#VisualCOBOL#COBOL
Have anyone a WPF Sample with a DataGrid for me? #WPFDataGridSample
Hello everyone,I would like to print a UPC code on HP printer (PCL).RMCOBOL 6.09.04 on SCO UNIX SYSTEM V.Has anyone ever done this on this platform? Thanks
Hi, Been experimenting with WinHTTP (windows API) with the following codes; object section.class-control. WinHTTP is class "$OLE$WinHttp.WinHttpRequest.5.1". : :invoke WinHTTP "new" returning ws-winhttpmove "www.mysite.com/mypagCall.asp?qFunc=review "&qString=THIS %IS %A %TEST" to ws-URLString*>*>BELOW CODE PART I'M NOT SO SUREinvoke ws-winhttp "Open" using z"POST" ws-URLStringinvoke ws-winhttp "Send"invoke ws-winhttp "getResponseText" returning ws-StringFrom the URL, I'm passing two values, the qFunc and qStringto a classic ASP page and so far it is working. Question is: What I am after though is "how WinHTTP" could request to a classic ASP page with values.... AND how should (ws-String) it returns a value coming back from a Cobol program? Tried using SOAP but Microsoft Windows Server 2012 R2 did not migrate the SOAP functionality since Windows Server 2003. Or did they (using the SOAP toolk
I have a simple cobol console program using visual studio 2017 (running visual cobol 2017) display "ackack" line 4 position 10. this throws an "index out of range exception" this syntax worked with Visual Cobol 2015. Am I missing something in the docs?
Does VisualCobol in Managed mode support .NET Core 2.0 on LINUX?
HI All I have got the 10.1.0 Dev Suite and I have been led to believe that the 32bit version of this comes with the Acusql precompiler Presumably to compile a cobol source program I will need the 10.1.0 compiler to pick up the precompiler ? I have 10.1.1 runtime and but I only have the 64bit version licenses not the 32bit. If I have compiled as per stated above does that mean I MUST execute the 32bit runtime? I purchased a 32 bit runtime license for AcuSQL last June 2017 but Micro Focus have been unable to supply such a license. I get a delivery notice but when I go to the website to "email summary" I get message "This order does not contain any License Key information" Has anyone seen that before? The support people in Sydney do not seem to know how to get round this. Would I be right in thinking that : a) I need 32bit runtime and 32 bit licenses b) I need the 32bit ACUSQL runtime and license c) when I compile using
Hello, one of the Indexed file is being corrupted all the time. This file gets updated through out the day. It has been working for past 20 years. the problem started recently. unable to find the root cause. When use rebuild utility, we are loosing some data. This file has three alternate keys. Help anyone please!!!!!!!
I've a web browser control which is used to display a image when I do the http call. I am wondering if there is a way to save this image off and resize it or store so I can do the call and get the back and print both sides at one time. I can print one side at a time but if possible I would like to do both at the same time. I also have some calls where the image comes back upside down so I would like to save it and rotate it if possible to display right side up. Would anyone have any suggestions on how or if I could do this. Thank you.
Hi How do you handle automatic update of the Acucobol thin client. We are using ATC files, and the ATC files is associated with the thin client we are using right now (10.1) When we set the normal port to the next version 10.2 the user are prompted if they would upgrade, and then the download runs and succeeds. But it does not change the association to the acuthin client before. that means that every time the user clicks his ATC file they are asked to upgrade. Has anybody found a solution for this Best Regards Steen
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.