Clarion is a commercial, 4GL, object-oriented, programming language and Integrated Development Environment from SoftVelocity used to program database applications.
2
votes
1answer
157 views
access and modify clarion .dat file
Does anyone know how to access and edit the .dat clarion files? It seems that clarion is a database for DOS. the tables are stored in DAT files. I need to update few fields of that file.
1
vote
4answers
196 views
Convert a Clarion Procedure Declaration to C# DLLImport
How can I convert this Clarion procedure declaration to C#? It's part of a 3rd Party DLL written in C, which doesn't have much documentation. I have listed the prototype for the method in Clarion ...
3
votes
1answer
157 views
What does the symbol :=: mean (colon equals colon)
I've found the symbol :=: in some Clarion code and I can't seem to figure out exactly what it does. The code was written by a previous developer many years ago, so I can't ask him. I also have not ...
0
votes
1answer
88 views
Does exception handling in Clarion exist?
Does Clarion 8 offer anything for exception handling? I know as of Clarion 5 there was no support for things like try / catch but that was released almost 10 years ago. I can't seem to find any info ...
0
votes
1answer
171 views
CLARION DATABASES
I have a very old aplication made in Clarion. I need to access the data externally by using the ODBC driver. The problem is that the data is stored in .DAT and .K0 files. As far as I know the data ...
0
votes
1answer
82 views
How to bind a label control to an entry control, on Swing
In Swing we use a label control to indicate the user what information is requested in -generally- the following "entry" control. This entry control can be an entry, listbox, password etc.
We can ...
0
votes
1answer
269 views
How to reconfigure path to the data files in Clarion 5 IDE?
There is a problem, the system is written in Clarion 5 came from the past and now it needs to be rewrite to Java EE.
To do this i need to deal with its current state and how it works.
I'm generate ...
2
votes
1answer
290 views
Calling Clarion DLL from C#
I am currently working on a at an IT company. They made their software using Clarion,
and in that software they have a DLL which recalculates a lot of values from their database. I need to call this ...
0
votes
2answers
520 views
how to extract data from a .tps topscan clarion file?
well I have to make a mysql database from a clarion database. the tables are .tps files.
I don't know how to do it, for now I only found applications that work with .dat files.
Im lost. Any help ...
1
vote
1answer
255 views
What are hidden fields in a Clarion .TPS file?
I am looking at extracting some data from a Clarion .TPS file and I have been using the TopScan Application to open them.
When I look at the tables there are lots of hidden fields.
Are they just ...
0
votes
1answer
225 views
Passing parameters to SSRS from Clarion
I have a SSRS report that need 2 parameters ... I need to call it from Clarion using hyperActive template... Others reports without parameters work good
but for this I'm testing the URL in IE and I ...
1
vote
1answer
178 views
How to access Clarion Tables from Java
I have this client with this system coded in Clarion. He is needing an webservice in Java to public some APIs from their system.
Does anyone know the best approach to access and modify any given ...
3
votes
3answers
209 views
How do I properly pass an array address in Clarion?
Prototype:
myFunction( ULONG , *ULONG ),PASCAL
Variables:
myArray ULONG, DIM(30)
myStuff ULONG
Code:
...
myFunction(myStuff, myArray)
...
Error:
No matching prototype available - C:...
...
0
votes
1answer
441 views
Share 1 table between 2 different types of databases
The problem that I have is that I want to synchronize one table between two different databases.
Database 1 is on a XP server with MySQL
Database 2 is on a Novell server with Clarion.
Is it possible ...
1
vote
1answer
177 views
Using the devExpress WinForms controls with Clarion NET
How seamless is the integration of devexpress winforms controls in Clarion NET? Does it work at all? Is it comfortable?
0
votes
1answer
513 views
ODBC Linked server in sql 2005 doesn’t work from remote box
I have a dev workstation with sql 2005 installed and in it I created a linked server to a odbc connection to a clarion database. I can run select statements against it inside sql Mgt studio. When I ...
37
votes
11answers
5k views
How to count each digit in a range of integers?
Imagine you sell those metallic digits used to number houses, locker doors, hotel rooms, etc. You need to find how many of each digit to ship when your customer needs to number doors/houses:
1 to ...
2
votes
4answers
560 views
POSTing to the web in Clarion
I'm developing a RESTful API for a client. The problem is, he's using a rather obscure language called Clarion. It's proprietary and closed, and the docs are not freely available online.
Whenever we ...
0
votes
5answers
416 views
Sourcecontrol for Clarion 6
We're still developing a bunch of our application in Clarion 6 Enterprise. I was wondering if anyone knows of a sourcecontrol system that works well with Clarion 6?
4
votes
12answers
2k views
What do you think about Clarion? [closed]
Recently the CEO of the company has attended some conference, and since his returns he's only talking about Clarion programming. We've been developing a Ruby on Rails project for 2 years now, but he ...
0
votes
2answers
87 views
What Backup Library/Code Do You Use For Your Dataset (Files On Disk)?
I'm implementing Backup functionality into my new (small) app, Oldaer. I've got standalone desktop files (rather than sitting in a SQL db).
Looking around, I decided on using a Clarion 3rd-Party ...
0
votes
4answers
684 views
Clarion: Possible to use a C# Assembly?
Is it possible to use a C# assembly from Clarion? If not. Is it possible to run a simple console application written in C# and read the output from it back into Clarion? In both cases, how would you ...