Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ronaldTest

    VBA to .NET

    Hi there, I have the below VBA codes and need to know how do I implement the code in .NET? Option Compare Database Declare Sub Process Lib "Process.dll" (ByRef sInt As Integer, ByRef sString As MemInfo) Type MemInfo sString As String * 100 End Type Public Sub test() Dim sSize As...
  2. ronaldTest

    What is the equivalent string data type in cobol

    hey mate.. sorry just giving you the updates.. the dllimport statement from ASP.NET below should be passing byref for string. 'Web service cobol dll <DllImport("TRIAL.DLL", EntryPoint:="TRIAL", _ SetLastError:=True, CharSet:=CharSet.Unicode, _ ExactSpelling:=True, _...
  3. ronaldTest

    What is the equivalent string data type in cobol

    ok... don't worry about the "netcobol for .net".. my company is using microfocus netexpress 3.1 anyway so it won't work with class system.string. I was testing using netcobol for the testing purpose only. back to your questions: 1. What a string you try to pass to COBOL (ascii, unicode,...)...
  4. ronaldTest

    What is the equivalent string data type in cobol

    OK, here is my cobol code: ----------------------------------------- IDENTIFICATION DIVISION. PROGRAM-ID. TRIAL. ENVIRONMENT DIVISION. CONFIGURATION SECTION. REPOSITORY. CLASS SYS-STRING AS "System.String". 001000 DATA DIVISION...
  5. ronaldTest

    What is the equivalent string data type in cobol

    hi there, I'm trying to call a cobol dll from .Net application but when the dll returns the string value, it returns the extended ascii characters. It is working fine if i'm passing the integer value. please help!!!

Part and Inventory Search

Back
Top