Questions tagged [intraweb]

IntraWeb is a tool for creating web forms applications emitted in HTML and Javascript, written in Delphi or C++ (from Embarcadero) and built on the Visual Component Library.

IntraWeb, a product of Atozed software, is a web application framework that generates HTML and JavaScript from an application written in Delphi or C++ and built on the Visual Component Library from Embarcadero.

125 questions
0
votes
0 answers

Where is the TIWFile.Filename property?

I have a very old program made in Delphi 7, using IntraWeb 80. Now I'm porting it to Delphi XE8, with the latest IntraWeb library XIV. Seems that the TIWFile control from the last version of IntraWeb is missing the TIWFile.Filename property. I've…
0
votes
0 answers

Delphi7, Indy10, Openssl and Intraweb

I've to modify a very old app written in Delphi7 and Intraweb to upgrade to the last security requirements (Tls 1.2) I'm using delphi7, intraweb 8.0.2 (very old, sigh) , indy 10, openssl, so I started making some simple apps just to test all this…
0
votes
1 answer

How to update deployed css file with IntraWeb

I have specified a css file in the ServerController.pas file, and also placed this file in the "MyIWProject\Win32\Debug\wwwroot" folder. It works fine in the browser. However, I notice if I update the css file, the css file is not updated in the…
RaelB
  • 3,301
  • 5
  • 35
  • 55
0
votes
2 answers

What is the latest version of Intraweb that Arcana Elite Suite is compatible with?

The Arcana Elite Suite for Intraweb hasn't been updated since March 2008. Does this mean it won't work with any bundled Intraweb later than Delphi 2007? Anyone tried it with D2009 or D2010?
LachlanG
  • 4,047
  • 1
  • 23
  • 35
0
votes
1 answer

IWActivex, Intraweb, Delphi XE2-XE5. How to launch?

I'm trying to understand how to add Activex control to Intraweb stand-alone application. I'm placing IWActivex control on unit1 form. In field ClassID i'm writing the clsid of my registered OCX application. (f.e.…
Kast2K
  • 39
  • 1
  • 7
0
votes
1 answer

TTIWDBAdvWebGrid & controller paging, how to get ctDynEdit cells to also page?

My Delphi/Intraweb application uses a TMS TTIWDBAdvWebGrid associated with a dynamically created TClientDataSet via a TDatasource component. The idea is to allow a user to page through a large amount of records using the controller, and optionally…
Adriaan
  • 1
  • 2
0
votes
1 answer

Only one session of same application, per user, at a time, in Intraweb

I try to investigate around the Intraweb for Delphi 2010. I have a web page inside a CRM application, and every time the user flips customer, the web page is refreshed. However the sessions of "old" pages remain active, and I get a "the edition is…
0
votes
2 answers

Run Intraweb .so on apache

I made a stand alone app and it works find Intraweb 9.4.2' Create an apache 2 .so project info --- library DartsDLL; uses ApacheTwoApp, IWInitApacheTwo, DLogin in 'DLogin.pas' {IWForm1: TIWAppForm}, ServerController in…
0
votes
2 answers

Focus an IntraWeb IWTreeView on a selected item

I have a rather lengthy tree view (IWTreeView) in a IWRegion (ClipRegion:= True) with one node selected. How do I focus that node such that it is visible for the user after a render? The What I do so far: In Delphi tree.Selected:=…
Ralph M. Rickenbach
  • 12,893
  • 5
  • 29
  • 49
0
votes
1 answer

What is the correct way to implement server timer in intraweb usersession

I have a simple intraweb project with the following structure Usersession : Have a timer to check the database and load the changes, do some data-formatting and put the results into a in memory table. MainForm : Have a IWTimer to check if the in…
Justmade
  • 1,496
  • 11
  • 16
0
votes
1 answer

"bpl" load in IntraWeb

I am setting up a module of "bpl" load in IntraWeb, Delphi2010, and I found the following problem: I don't get to create an instance the application to not to be this is as an internal form. . procedure CargaDoSubModulo; type TIWFormClass =…
Amir
  • 41
  • 2
0
votes
1 answer

Deleting IWTreeViewItems causes exception on form release

On my form I have a IWTreeView and two buttons. One button deletes some IWTreeViewItems, the other releases the form: procedure TIWForm1.IWButton1Click(Sender: TObject); begin IWTreeView1.Items[0].Subitems.Clear; end; procedure…
Ralph M. Rickenbach
  • 12,893
  • 5
  • 29
  • 49
0
votes
1 answer

Login page session timeout for kiosk

We have a web-based product written in Delphi and Intraweb, that can be run on a public kiosk (full-screen). Is there any way using Intraweb to display a login page that isn't part of any session (just a standard Intraweb page), so the session only…
SteB
  • 1,999
  • 4
  • 32
  • 57
0
votes
1 answer

Delphi Intraweb website not indexed by google

I have made a website with Intraweb and it is working in my home-server. I have a basic home.html working in a IIS where I have included to redirect to the port 8888. It is working well, but google don't index misite:8888, only misite is indexed…
jllompi
  • 1
  • 2
0
votes
1 answer

intraweb XII+isapi+iis7 cookie not saved?

I developed an intraweb XII small app which save a cookie: ck:=THTTPCookie.Create('coo1','valcoo1','',now+7); WebApplication.Response.Cookies.Add(ck); Where I reopen the app, I use: WebApplication.Request.CookieFields.Values['coo1'] If I run in…
1 2 3
8
9