| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 1079 online users. » 0 Member(s) | 1075 Guest(s) Applebot, Bing, Facebook, Google
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 290
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 232
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 251
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 555
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 301
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 723
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 275
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,366
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 414
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,071
|
|
|
| How to change the active element on the form. |
|
Posted by: Сергей Александрович - 07-22-2021, 09:51 AM - Forum: IntraWeb General Discussion
- Replies (20)
|
 |
There is a desire to press the Enter key to go to the next information input field.
The option with event processing does not work.
procedure TfmPayTovarEd.edKOLAsyncKeyPress(Sender: TObject;
EventParams: TStringList);
var
mValue : String;
begin
mValue := EventParams.Values['which'];
if EventParams.Values['which'] = '13' then
begin
ActiveControl := edEDIZM;
Self.Refresh;
end;
end;
In Delphi, I constantly use the "ActiveControl := edEDIZM;" And for some reason it doesn't work in IW. Can you tell me how to do this?
|
|
|
| IWMemo in template |
|
Posted by: matija - 07-21-2021, 05:32 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
I work with HTML templates.
<div class="container-fluid">
<div class="row">
<div class="col-md-2">
{%MyListBox%}
</div>
<div class="col-md-10">
{%MyMemo%}
</div>
</div>
</div>
i want the width (100%) and heigth (100%) MyMemo to be relative to the column?
|
|
|
| Invalid transaction handle when idle > 10 min |
|
Posted by: StephanM - 07-20-2021, 03:14 PM - Forum: IntraWeb General Discussion
- Replies (5)
|
 |
I just migrated an ISAPI app to a new server.
On this new Win 2019 Server, if I leave that app idle for more than 10 minutes, when I get back to it and click a button I get:
Error details:
Exception message : invalid transaction handle (expecting explicit transaction start)
Depending on the error condition, it might be possible to restart the application.
Exception class : TDBXError
Any ideas?
C++Builder 10.3 Update 3
IntraWeb 15.2.3
I've checked that TIWServerController::SessionTimeout = 30 ;
On the IIS App Pool, Idle Timeout = 35
The same app does not have this problem on the previous server; but I don't know if that means it's a server setting.
Thanks for your input.
|
|
|
| IDE Debugger not working |
|
Posted by: Comograma - 07-15-2021, 09:34 AM - Forum: IntraWeb General Discussion
- Replies (8)
|
 |
For some time that I'm to report this.
I have many code, many .pas files that the debugger do not work at all.
For instance, if I mark a certain line break, let's suppose, line #10, the debugger never reachs that line, never break on that line. For that to work, I must mark a line break, 4 ou 5 lines above, I that way it will break there, wich is very annoying and confusing. Some times on a short procedure, it will will break or stop at a line after the end of that procedure.
Anyone with this issue?
|
|
|
| CBuilder IW Sample |
|
Posted by: carlos_el_austriaco - 07-13-2021, 01:02 PM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
Hello everyone,
I am new to IW and tried to understand the Delphi IWBSDemo, but I do CBuilder since ever and would need a similar sample project in c++.
I search since days around to find one that has a VCL Form as base, as in the IWBSDemo (Fish Facts), where I could place some user interface to manage some
stuff the VCL way.
any help verry welcome
un saludo
Carlos
|
|
|
|