| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
Yesterday, 09:49 PM
» Replies: 1
» Views: 117
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 113
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 125
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 413
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 208
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 576
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 200
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,154
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 333
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 939
|
|
|
| Changing ancestor of TIWFrame |
|
Posted by: davenovo - 03-23-2018, 03:05 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
If I create a new intrawb frame the class looks as follows:
Code: TIWFrame1 = class(TFrame)
IWFrameRegion: TIWRegion;
private
{ Private declarations }
public
{ Public declarations }
end;
if I made a small change
Code: TMyFrame=class(TFrame)
end;
TIWFrame1 = class(TMyFrame)
IWFrameRegion: TIWRegion;
private
{ Private declarations }
public
{ Public declarations }
end;
When I close and reopen my program, the IDE complains that "property TabOrder cannot be found". This also happens if I create a new delphi frame in another unit, and then try to inherit the IW frame from that.
I have a regular TFrame that has some base functionality that I want to inherit in my IWFrame. Is there a way to change the ancestor of the TIWFrame1 to some other TFrame ?
|
|
|
| Reinstall Delphi 10.2.2 & IntraWeb ... |
|
Posted by: jorgo2018 - 03-21-2018, 02:47 PM - Forum: IntraWeb General Discussion
- Replies (7)
|
 |
Hallo,
we have Delphi XE8 + (IW, TMS) and Delphi 10.1 + (IW, TMS, cgDEVTools) installed on a machine.
Now we want to parallel install Delphi 10.2.2 + (IW, TMS, cgDEVTools).
Questions:
- Is it ok to just uninstall Delphi 10.1?
- Do we need an extra IntraWeb removal tool before uninstalling Delphi 10.1?
- Do you expect problems with TMS and cgDEVTools components?
Best regards
|
|
|
| Intraweb as windows service |
|
Posted by: davenovo - 03-20-2018, 10:00 PM - Forum: IntraWeb General Discussion
- Replies (33)
|
 |
Hello. 2 questions.
I know that you do not recommend deploying the Intraweb standalone server. There is also a web page here that describes deploying as a windows service.
I have 2 questions.
1. Is the window service as described above ok for production use? If not, what are the limitation I should be aware of?
2. Does this take exclusive control over the port to which its bound. i.e. I have a webserver using http.sys directly. It only handles requests if the request matches the URL it is serving. Otherwise, it passes the request along to anyone else listening to the same port. Does the webserver built into the Intraweb windows service described above behave in the same way?
|
|
|
| Make my own modal window |
|
Posted by: davenovo - 03-19-2018, 09:24 PM - Forum: IntraWeb General Discussion
- Replies (15)
|
 |
Is there a way that I can make my own IWForm, and do something like I would do in Delphi, i.e. just call Form.ShowModal.
I have found the IWModalWindow component, but the annoying thing about it is that if I want to do something fancy, I put it on a region, and set the IWModalWindow.ContentElement.
That is simple, but it means that on my main form, I have all the stuff for my main form, then I also have a region that contains the components for the modal window. So the form has tons of components on it. I would like to move the components I need for the modal window onto a separate modal window to not clutter up my main form. Especially if the main form can launch 5 or 6 modal windows it would get crazy.
Can I make a new IWFrame and put the IWFrame as the ContentElement?
|
|
|
|