| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 98,089
» Latest member: kp88tips1
» Forum threads: 2,426
» Forum posts: 11,371
Full Statistics
|
| Online Users |
There are currently 1695 online users. » 0 Member(s) | 1692 Guest(s) Applebot, Bing, Google
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 184
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 150
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 165
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 469
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 237
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 640
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 224
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,239
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 357
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 984
|
|
|
| Height of TIwFont in pixels |
|
Posted by: Lenfors - 11-29-2022, 01:28 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hello!
Having problem to get the Height in pixels of a TIwFont.
There is a property Size, Eg. 12 and another property PxSize Eg. 16.
They are interconnected so when changing one the other one also changes.
But I assume the PxSize is the with (x) in pixels? How do I get the Height (y) in pixels?
Best regards, Mikael
|
|
|
| IWURL No cache |
|
Posted by: davidmcevoy@outlook.com - 11-29-2022, 10:27 AM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hello, in process of updating an old app from IW9 to IW15 and I have a function that creates a pdf and just uses the session id for the file name put into the IWURL, this same file will be repeatedly updated when requesting pdf's using the same name and then deleted once the session has expired.
This worked well in IW9 but I had used the /filesnc flag so that the hyperlink didn't get cached. In IW15 I had to change this to just /files to get it to work and it does, but in Edge it is caching the URL and only displaying the same file over and over again, despite the fact that the original file has indeed been updated to the content now required. The files are being generated in wwwroot/files.
Is there an option in IW15 to make a IWRL not cache like it used to be or do I need to play around with IW Cache? I can get this to work by removing the hyperlink and doing an onclick event on an IWImage that does a sendfile, this will work, but not the way I had originally intended to use it.
I think I might have to move the pdf from wwwroot/files to app path/files and the filesnc will work, but this again is not what I want to do as it would mean having to copy the file every time a link is clicked which is not the best option.
Any suggestions on how to make the IWURL not cache the file in all browsers?
Thanks
Daivd.
|
|
|
| IWRadioGroup wrapping |
|
Posted by: iwuser - 11-23-2022, 11:44 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
I have a IWRadioGroup set with glHorizontal layout (because it's better than Vertical for me and because there are no other choices) with potentially a lot of items (2 or more).
Through CSS I can make it scrollable. But I could not make it wrap into multiple lines and it has no property to set the column count.
Is there any standard way to make it display the buttons in a multi-line / wrapped fashion somehow? Or is there a different control I could use?
Or can you maybe add a new Columns property, to offer control over how it's displayed? - because this list would have a different length for me and I'd much rather be able to adjust the display dynamically, depending on how many items I have there?
|
|
|
| uIdHttp |
|
Posted by: piaulino - 11-23-2022, 01:01 PM - Forum: Indy
- Replies (3)
|
 |
I'm using idHttp and TIdSSLIOHandlerSocketOpenSSL, it works on the local machine, but on the server when running, the error "unknown protocol" occurs.
Indy version I use is 10.6.2.0
Code
lHTTP := TIdHTTP.Create(nil);
try
lHTTP.IOHandler := TIdSSLIOHandlerSocketOpenSSL.Create(lHTTP);
TIdSSLIOHandlerSocketOpenSSL(lHTTP.IOHandler).SSLOptions.SSLVersions := [sslvTLSv1,sslvTLSv1_2,sslvTLSv1_1];
lHTTP.ProtocolVersion := pv1_0;
Result := lHTTP.Get(aUrl);
finally
lHTTP.Free;
end
|
|
|
| Certificate chain is incomplete |
|
Posted by: davidmcevoy@outlook.com - 11-22-2022, 01:30 AM - Forum: IntraWeb General Discussion
- Replies (11)
|
 |
I am in the process of updating an old IW app to IW15 and in doing so I have done an ssl labs check and I am getting a B rating, I was hoping for an A, however it is better than the 'F' I was getting before updating.
The reason for the B rating is due to "Certificate chain is incomplete" I am running in an SA server mode, anyone able to advise how to fix this and get an A rating? My cert is from Sectigo if that helps. Perhaps I have made a mistake with the certificate I have purchased?
Also while I am here, how do I prevent my app from being put in an iFrame?
Cheers for any help.
David.
|
|
|
| hoWantProtocolErrorContent, |
|
Posted by: Сергей Александрович - 11-21-2022, 11:59 AM - Forum: IntraWeb General Discussion
- No Replies
|
 |
When compiling the project, the message is displayed: E2003 Undeclared identifier: 'hoWantProtocolErrorContent'
mIdHTTP1.Request.ContentType := 'application/json;charset=UTF-8';
mIdHTTP1.HTTPOptions := mIdHTTP1.HTTPOptions + [hoNoProtocolErrorException, hoWantProtocolErrorContent];
This parameter is needed to display the response text from the server with the response code 400. When compiling in a normal project, everything goes fine, and when compiling in an IntraWeb project, this error occurs. Tell me how to solve the problem?
|
|
|
|