Search found 6 matches

by bfisher
Sat Feb 24, 2007 8:32 pm
Forum: Feature Proposals
Topic: Support for calling Active X Objects
Replies: 8
Views: 7043

Passing data

Yes, passing data between the two is a bit more difficult. The best way is to create an external in C++, because that can put data directly into a Revolution variable. This works with even large amounts of binary data. I once wrote an image-processing external in C. There was http://www.runrev.com/n...
by bfisher
Sun Feb 18, 2007 10:46 pm
Forum: Feature Proposals
Topic: More conveniant label editing
Replies: 2
Views: 3585

More conveniant label editing

The way things are now, to add a label to your stack, you create the label, and then to add text you must open properties and go to Contents. For something that is a common operation, this is a little slow. A better idea: put an item on the Object menu "Add label." Then it asks to name the label, be...
by bfisher
Sun Feb 18, 2007 9:55 pm
Forum: Feature Proposals
Topic: Multiple undo/redo
Replies: 6
Views: 7173

Multiple undo/redo

Will Revolution ever support multiple undo/redo?

This seems like a pretty basic thing to have for a mature product. I cannot imagine why it is missing, even in the script editor.

I think this has gone beyond the point where it is that would be nice to have. No multiple undo/redo is a problem.

-Ben
by bfisher
Sun Feb 18, 2007 8:46 pm
Forum: Feature Proposals
Topic: Support for calling Active X Objects
Replies: 8
Views: 7043

ActiveX

One way to do this might be to write a small VBS script that can communicate with the object, and have your Revolution stack call the script with some parameters. To call the script you might use the shell or launch commands.

You could also write an external DLL.
by bfisher
Sun Feb 18, 2007 8:42 pm
Forum: Feature Proposals
Topic: "The Quad" of image
Replies: 1
Views: 3066

Reusing images

If you want to reuse an image for a series of buttons, it is probably easier to use icons. If you wanted to reuse an image, look up its id. Then you can take any button and say "set the icon of btn mybtn to imgid." These icons are not restricted by size. There is limited support for rotating images ...
by bfisher
Sun Feb 18, 2007 8:38 pm
Forum: Feature Proposals
Topic: replaceText
Replies: 2
Views: 4366

Missing regex replace

This is a crucial regular expression feature. Revolution cannot say that it has PCRE regex without replacing groups like \1 or $1.

This serious ommission has prevented me from doing real regular expression text processing in Revolution.