Tagged Questions

object pascal scripting engine

learn more… | top users | synonyms

7
votes
2answers
1k views

Making an IDE using Pascal Script and SynEdit

I'm creating a built-in script engine using PascalScript from RemObjects (excellent) and the SynEdit editor. It's almost finished using the IDE example shipped with PascalScript and the IDE example in ...
3
votes
2answers
275 views

Can I register to the GAC with Pascal scripting (InnoSetup)?

I'm using InnoSetup to install an application I built. My client requests that it downloads the latest DLLs upon install using this InnoSetup addon: http://www.sherlocksoftware.org/page.php?id=50 ...
3
votes
2answers
142 views

Unable to invoke the Get_ProcAddress from PascalScript

The following is my code: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, uPSComponent; type TForm1 = class(TForm) ...
3
votes
2answers
2k views

InnoSetup: Getting AppName in [Code] section

I'm creating an installer using InnoSetup, and writing some custom handlers in a [Code] section. In one of the handlers, I would like to be able to retrieve the value of the AppName (or, potentially, ...
2
votes
1answer
61 views

Inno-setup: Custom Wizard page based on existing page type

I decided to create custom wizard page in my inno-setup-based installer. But i do not want to create it from scratch. I want to take TInputDirWizardPage and modify it, e.g. add a combo-box. Is it ...
2
votes
2answers
220 views

How to register the interface variable into remobjects pascal script?

I using RemObjects Pascal Script component for Delphi XE, i've the following code: type ITest = interface(IInterface) ['{7762A355-052F-449D-8347-01B59E2D2738}'] procedure Execute; end; ...
2
votes
1answer
1k views

Problem with checking the Windows version from Inno Setup

My program installs a driver, which has different versions compiled for XP, Win2003, Vista/Win2008, and Win7. I use pascal functions to check which is the OS, and install the corresponding DLL. On ...
2
votes
3answers
731 views

How to detect an existing installation of IIS using INNO setup?

I am looking for a way to determine if the user already has a version of IIS installed. If he doesn't, I will go ahead and run my IIS installation script. I know of the exception handling clause ...
2
votes
1answer
337 views

Contact license key server with Inno Setup?

Using the Pascal scripting, is there any way to connect to a server and send/retrieve data over http? Browsing through the reference I didn't see any way...
1
vote
1answer
58 views

How can I retrieve the computer name with my Inno pascal script?

I've been having some difficulty with my inno pascal script. I familiarized myself a bit (just a bit) with Pascal, but its becoming more clear to me now that pascal script may be very different. The ...
1
vote
1answer
616 views

Getting started working with RemObjects Pascal Script in delphi

I have just started working with RemObjects Pascal Script. and have been trying to follow the remobjects tutorial. http://devcenter.remobjects.com/articles/?id={2FFC1EE9-F18D-4B11-9DE4-1BA0A79D0D04} ...
1
vote
1answer
304 views

Pascal Scripting Without Unit Importer

It seems like the UnitImport program maybe came along some ways into the development of cajScript/PascalScript and it may hide some of the details that would help provide an understanding of how to ...
1
vote
2answers
380 views

How can I get Pascal Script to recognize the 'create' and 'free' functions when importing a custom class?

I am having a problem with the example from this article. The article explains how to import your own classes so they can be called from a Pascal Script. I am importing my custom class but cannot ...
1
vote
3answers
258 views

Is there a safe way to clean up stack-based code when jumping out of a block?

I've been working on Issue 14 on the PascalScript scripting engine, in which using a Goto command to jump out of a Case block produces a compiler error, even though this is perfectly valid (if ugly) ...
0
votes
0answers
26 views

Access file list via script in InnoSetup

Is there any way to access the list of files (entries in the [Files] section) from PascalScript when running the setup? We're trying to make the application runnable directly from the setup, rather ...
0
votes
1answer
31 views

Subtitle Workshop and Pascal: divide subtitles intelligently

Is there any Pascal script good to make Subtitle Workshop to split lines "intelligently" from the point of view of the type of the word? The idea is rather simple, and it is exactly the standards ...
0
votes
1answer
65 views

Add function execution into installer progress of inno setup

I'm making a patch for an old game (Command & Conquer 1, Win95 edition), and in some cases, executing the patch requires going through a function written in the Pascal script that could take quite ...
0
votes
1answer
101 views

How\where to use SaveStringToFile() in my inno setup file

I'm not that familiar with inno (or pascal scripting), but I am assuming what I want to do is pretty simple. I want to edit a particular text file at the very beginning of the install. Is there a ...
0
votes
2answers
301 views

InnoSetup simple progress wizard

My installer is very simple, it basically is: Welcome Page Progress Page Final Page The welcome and final pages are standard (just one button). At the progress page I'm installing a bunch of other ...
0
votes
3answers
82 views

Replacement for batch files needed that employs pascal as a source language

Having just completed a fairly large batch script, I have reached my limit as far as spending most of my time implementing arcane work-arounds for the inadequacies of the language. It's time to look ...
0
votes
1answer
146 views

Basic IP validation within Inno Setup script

I am getting IP address from user, how can I check if the input is IP address? Good day to you..
0
votes
2answers
164 views

PascalScript including other script per uses or include command

I have included the PascalScript engine into my software. My user now wants to write a whole set of scripts for this engine, and would like to know if it is possible to include other Scripts by an ...
0
votes
2answers
227 views

Delphi Applications in RemObject Pascal Scripter

I want to run a Delphi application(With forms vcl, forms, etc) using another application with RemObject Pascal Scripter. will RemObject Pascal Scripter support all the areas of delphi , If so can ...
0
votes
2answers
68 views

How to invoke PascalScripts UnitImporter from command line

I want to know if there is a way to start the PSUnitImporter.exe from command line. What I want to do is to have the import file created automatically as a Pre-Build Event. So far I have found out ...
0
votes
1answer
318 views

Inno Setup / ISTool: Detect local computer's IP address(es)

In the [code] section of my ISS script I want to detect the local machine's IP addresses. What is the most elegant way to accomplish this? Is there a Win32 DLL I can import via "external"?
0
votes
2answers
271 views

How can I store a COM object in Inno Setup's TNewComboBox.Objects property?

I'm using Inno Setup to create an installer for my application. I'm currently filling a combobox (TNewComboBox) with the names of the Web sites on the current machine's IIS install. Now what I ...
0
votes
1answer
258 views

Why can't I register this method with the PascalScript compiler?

My question is below. Here is my setup: interface uses windows, {...,} uPSComponent_Default, uPSComponent, uPSRuntime, uPSComponent_Controls; TForm1 = class(TForm) //... PSScript1: ...
0
votes
2answers
634 views

Basic email validation within Inno Setup script

I'm wanting to do a basic string validation within an Inno Setup script to be relatively certain the string is an email address. I just want to see that there is a '@' character followed by a '.' ...
0
votes
4answers
794 views

Are there any good Pascal Script resources/documentation?

I started playing around with Pascal Script today and I cannot find any good documentation. I found these (one, two) articles. The are helpful but they are just examples. edit: Separated this into ...