| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-21-2026, 05:33 PM
» Replies: 1
» Views: 408
|
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-21-2026, 05:31 PM
» Replies: 2
» Views: 450
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 335
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 693
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 400
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 882
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 361
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,592
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 528
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,270
|
|
|
| IWDBEdit with currency formatting STILL NOT WORKING |
|
Posted by: commusic - 03-03-2021, 05:23 PM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
Hi there,
I'm trying to configure an IWDBEdit to display the input as a monetary value. Can anybody point me to some sample code, please?
More info:
Running C++ Builder with IW15.2.18.
IWDBEdit is using an ADOConnection.
The DB field is of type currency, of course.
WebApplication->RegionalSettings are set correctly.
Couldn't find anything on GitHub.
Thanks in advance,
Joe
|
|
|
| TIWCheckBox in TIWGrid (IntraWeb 15.2.24) |
|
Posted by: Lorbass - 03-02-2021, 03:03 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Another problem:
We use a TIWGrid in a frame.
The grid only consists of one column.
The control property of all rows is set with a dynamically generated TIWCheckBox (SubmitOnAsyncEvent = True).
However, changes to the CheckBox (Checked = True / False) are displayed; but they cannot be read out correctly.
That means:
The frame is displayed with IWModalWindow.
The grid is correctly filled with x lines.
The checkboxes show the current value.
The user makes changes and confirms them.
All CheckBoxes are then read out in a loop.
However, only the original values are then available.
Another Problem:
The event OnAsyncChange is assigned to the dynamically generated CheckBoxes, for example to display marked entries in bold:
procedure OnAsyncChange (Sender: TObject; EventParams: TStringList)
var
C: TIWCheckBox;
begin
C: = TIWCheckBox (Sender);
if C.Checked then C.Font.Style:=[fsBold] else C.Font.Style: = [];
C.RefreshAsyncRender;
end;
Result: All CheckBoxes are shown in a wild jumble!
Something wrong on our side?
Tnak you for hints!
|
|
|
| Enhancement suggestion for login integration |
|
Posted by: joelcc - 02-25-2021, 04:02 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
I have an enhancement suggestion. Since so many things are moving to the cloud and require integration with corporate authentication methods, I think it would be beneficial for IW to have integrated authentication with both google authentication and Microsoft Authentication using some form of authentication like (OAuth2?)
We just finished an integration with our own identity server so I know it can be involved, but it would be a great time saver for IW developers.
|
|
|
| Loading X509 Certificates |
|
Posted by: Airmech - 02-25-2021, 12:36 PM - Forum: Indy
- Replies (2)
|
 |
Hi,
I notice that the certfile and keyfile properties for Indy SSL IO Handlers are looking for a path and I'm looking for a way to load X509 certs from a database without needing to create a temporary file to access the cert.
The cert and key are saved in the database as blobs.
Is it possible to load them directly from the database or are temp files the only way to go?
Thanks
Trevor
|
|
|
| TLS 1.2 in Delphi 2007 |
|
Posted by: Dirk Janssens - 02-24-2021, 10:09 AM - Forum: Indy
- Replies (5)
|
 |
Hello,
I try to send mail with TLS 1.2 in a Delphi 2007 project.
Is that possible ?
I have Indy version 10.2.3
The IdSSLIOHandlerSocketOpenSSL1.Method only shows sslvTLSv1. ( and sslvSSLv2,sslvSSLv23,sslvSSLv3 )
If I choose sslvSSLv23, I get very often the error "SSL is not available on this server".
Strange thing is however, that if I keep trying to send the exact same mail, it sometimes does send the mail ...
Any hint is very much appreciated !
kind regards,
Dirk Janssens.
|
|
|
|