Questions tagged [pascalscript]

Free scripting engine that allows you to use most of the Object Pascal language within Delphi or Free Pascal projects at runtime.

Pascal script is a script engine developed by RemObjects. It uses the object pascal language and can be implemented in Delphi or FPC project.

One prominent use of Pascal Script is the Open Source project.

971 questions
0
votes
0 answers

Creating new progress bar and customizing Installer page in innosetup

I want to create a new progress bar and customize the installer page a bit. Here is what I want in the installing page: A new progress bar that will show Current file Status(Percentage complete). The default progress bar will show overall…
Kushal
  • 605
  • 8
  • 29
0
votes
2 answers

Custom setup on operating system and architecture

I have been asked to have a setup procedure running in the following operating systems: Windows Vista (only x86) and higher (both x86 and x64) In order to restrict whole setup from running in older operating systems I added into [Setup] section the…
Meleena
  • 89
  • 2
  • 8
0
votes
0 answers

Long Descriptions on my components with button "show descriptions"

I would like to get the effect that appears in this installer: I want him to be a button on the bottom of the "show description" when the button is enabled after click on the component, appears at the bottom of the description of the component. The…
michal3210
  • 117
  • 1
  • 7
0
votes
0 answers

Query not executing using inno setup

I am executing a query in inno setup using sqlcmd. The purpose of the query is creating database. I have tried the query so far in sqlcmd which take a keyword 'GO' after after entering the query. The question is how to embed the keyword 'GO' after…
Haider Khattak
  • 567
  • 3
  • 8
  • 32
0
votes
0 answers

Destination folder issue in inno setup

My installer runs 2 exe files and I wish to give the user the abbiltey to choose the destination folder for the first exe program, I don't wrap the exe files under [Files] section instead I download them the problme is that the installer dosent…
ElramV
  • 325
  • 4
  • 16
0
votes
1 answer

How to debug inno-setup exceptions

I compiled inno-setup with XE6 myself. (I know, the document suggested older delphi versions, but I only have new IDE) I want to use pascal script to customize setup. But even I added a simplest [Code] section, the created installation…
dltigles
  • 45
  • 6
0
votes
1 answer

How to write events of "fastreport band" in delphi code

I have masterdata band in my fastreport. I can write code on "masterdata After print" in pascal script, but i want to know is there a way to write this code in main delphi form. Pascal script: procedure MasterDataOnAfterPrint(Sender : TfrxComponent)…
Afzal Ali
  • 802
  • 3
  • 9
  • 18
0
votes
0 answers

Inno setup : How to set timers in between images slide show?

i Was Created one setup for slide show code is perfectly running as you given. But the images are flipping with in short span of time. So in between images i want to set timer so that i can able to see those images clearly. Is that possible ? if…
Ramkee
  • 900
  • 1
  • 10
  • 27
0
votes
1 answer

inno setup: How to play embedded video or music while running installer?

I would like to create a sample installer, while installing that setup video/audio should be play in background, so that we can inform the features of our product in Video/Audio format. I have gone through Inno media player and Later on i went…
Ramkee
  • 900
  • 1
  • 10
  • 27
0
votes
1 answer

inno setup : How to get the tcp connections list in windows?

I tried to create an installer to check the current transmission control protocol connections on windows64 machine. Is it possible to create? am going to use command line using extern. if I give ls -lf it will returns all the files which are…
Ramkee
  • 900
  • 1
  • 10
  • 27
0
votes
1 answer

Decoding a PASCAL line of code

I am new to PASCAL and I am working on a PASCAL code. I would really appreciate if somebody helped me understand this piece of code. readagain1: Write(' ', (BYWORD(fileio_dcb.usr_buf^[WRD((2*j)+1)],…
0
votes
1 answer

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: TPSScript; PSImport_Classes1: TPSImport_Classes; …
Vivian Mills
  • 2,552
  • 14
  • 19
0
votes
1 answer

TEdit Value to Variable

I have what I think is a simple problem, just can't get my head around it. Trying to write a script with a single page. A combobox and a edit box. The combobox is working fine, I am able to get the contents of it depending on what has been…
0
votes
1 answer

How to hide page in Fast Report if there are no data on page?

I'm desiging a fast report with two pages,on the 2nd page i'have used Page header/footer,group header/footer and master data band. I have to hide the page2 if there is no data in master data band.name of master date band is 'masterdata2'. the pascal…
user3068880
  • 51
  • 2
  • 12
0
votes
4 answers

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 two questions. New question is here.
Lawrence Barsanti
  • 31,929
  • 10
  • 46
  • 68