Questions tagged [clipper]

Clipper is an xBase compiler that implements a variant of the xBase language. Use this tag for questions about coding in that language. For questions about the line and polygon clipping library use the tag clipperlib instead.

Use this tag if your question is about one or more aspects of the clipper compiler and/or the xBase language it uses.

Some topics that can be asked are:

  • DOS Development Under Windows
  • Automatic Build And Make
  • The Debugger
  • Form And Menu Editors
  • Graphics-Mode Support
  • Mouse support
  • Protected-Mode Development
  • The enhancements/extensions added.

Above topics are found on the current product website

For questions about the Clipper library, a line and polygon clipping library, use instead.

62 questions
1
vote
1 answer

Flutter - Trying to achieve this complex layout

I am trying to achieve the following Flutter layout ( as shown in the picture). I want to place two images side by side which I know can be achieved easily using Row but what I want is to separate the two images by the shape ( as shown in the…
OMi Shah
  • 5,768
  • 3
  • 25
  • 34
1
vote
1 answer

compile clipper dos application

I have an old point of system program written in clipper. I have successfully decompiled the program in RESCUE5. The decompiler has written the source files to .udf. I have made the necessary changes to the .udf files and I would to recompile the…
the_big_blackbox
  • 1,056
  • 2
  • 15
  • 35
1
vote
2 answers

Offsetting polygons by meters with clipper

I would like to create buffered polygons of locations (towns, villages etc) in order to use them for searching in radius. This is what I would like to achieve (units for ilustration): This is how I do it in pyclipper: import pyclipper coordinates…
Michal Gallovic
  • 4,109
  • 2
  • 18
  • 25
1
vote
0 answers

Undefined symbol after library search - CLIPPER

I have tried to compile an application written in Clipper 5.2. It is experiencing an error which I believe is the inclusion of libraries. The moment that I linked, it displays the following error: I'm using: rtlink fi MyApp Stretch of code where I…
1
vote
2 answers

I'm looking for some Clipper Decompiler

I have very old DOS program, it was made 20 years ago in Clipper. I need to make some little modification. Ofc I tried Decompiling to ASM, but code looks horrible.
ujemny
  • 39
  • 1
  • 7
1
vote
1 answer

Clipper bin2i and i2bin needed in Java

I am converting/migrating a good old clipper xbase program to Java. As the old program is still running, I need to be compatible, when writing data in Java to the databases. It works really well, until now. For that I need the functions i2bin and…
PeterK
  • 11
  • 3
1
vote
3 answers

Benefits of migrate a clipper application running on Netware/ipx to Windows server 2003/IP

Anyone knows if there are benefits migrating from netware IPX to Server 2003/IP ? I´m running a legacy clipper application and I want to add php or java applications. the actual: environment is: Novel Netware 6 - IPX - ADS 6 I´m thinking to migrate…
d_alaniz
  • 11
  • 2
1
vote
0 answers

OOP - Visual Objects: Does VO support Interfaces like C#/Java Interface (for strategy design pattern)?

I'm a C#/Java developer and here on my new job we have a legacy system developed with Visual Objects (VO, from Computer Associates -- rough mode: VO = OO-Clipper), and I need to fix some modules and implement some patterns here (i.e.: strategy…
cezarlamann
  • 1,465
  • 2
  • 28
  • 43
1
vote
1 answer

Showing a MsgBox with variables depending on boolean

Im kind of a beginner with programming but here is the thing: I have different variables set as local, these variables are strings of chars, messages and at the same time I have a set of Booleans that will fill with True or False depending of some…
Nickso
  • 785
  • 1
  • 10
  • 32
1
vote
1 answer

Can I implement code snippets at runtime in vb?

I need to port an old Clipper app to vb.net. It relies heavily on user-written macros and indeed would be almost impossible to create without them. As VB is interpreted, I am sure it must be possible to implement code that the user has entered, but…
SM.
  • 79
  • 1
  • 9
1
vote
2 answers

What is the most active clipper-like community?

I work for a company that is using Microsoft Visual Foxpro 9. Since Microsoft has abandoned us, we no longer get fresh driver updates (the last was for ODBC was built for VFP version 6.) Clipper and Foxpro aren't too different, from what I…
jetimms
  • 417
  • 1
  • 5
  • 23
1
vote
1 answer

Compiling error - sysdeps/i386/elf/start.S and undefined reference to main

I'm using a development platform called Harbour to use Clipper code to create a Linux executable working on 32bit SuSe. I can already create an executable that still requires external libraries of the platform, but I need to create an executable…
semmelbroesel
  • 543
  • 1
  • 8
  • 27
0
votes
1 answer

How do i download a file with CA-VO

I'd like to download a file using HTTP. How do I do it?
Spikolynn
  • 4,067
  • 2
  • 37
  • 44
0
votes
1 answer

How to replace the contents of nsx file index from dbf in vb.net

I have updated replace items with SQL in the DBF database but the DOS display of the item used in transactions cannot be selected and edited so the solution I have to replace the contents in the NSX file, which is the index of the DBF file. How can…
roy
  • 693
  • 2
  • 11
0
votes
1 answer

Flutter CustomClipper

I am using Custom Clipper while creating these two widgets in Flutter, but there is a problem, how can I create it? Update: can be used to crop from right side class CustomRightClipper extends CustomClipper { @override Path getClip(Size…