| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 914 online users. » 1 Member(s) | 909 Guest(s) Applebot, Baidu, Bing, Google, yoa1kin94orothy
|
| 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: 359
|
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-21-2026, 05:31 PM
» Replies: 2
» Views: 400
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 307
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 649
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 378
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 819
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 335
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,522
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 497
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,211
|
|
|
| IW 15.1.20 TIWRegions |
|
Posted by: Richard - 04-27-2020, 08:21 AM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
I have a form divided in 2 Régions. The left one is aligned alLeft and the other alClient. Sometimes I want to hide the left region, and with IW 14 , when I hide the left region , the right region takes the whole place of the form.
Now, with IW 15, when I hide the left region, the right region keeps the same width, and don't takes the available space.
Any idea?
|
|
|
| How to use bootstrap4 TIWBS4Region create marquee? |
|
Posted by: newsanti - 04-26-2020, 04:31 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
TIWBS4Region.RawText = True
------------------------------------------------
Scrolling Text or marquee
------------------------------------------------
object IWForm2: TIWForm2
Left = 0
Top = 0
Width = 807
Height = 540
RenderInvisibleControls = True
AllowPageAccess = True
ConnectionMode = cmAny
Background.Fixed = False
LayoutMgr = IWBS4LayoutMgr1
HandleTabs = False
LeftToRight = True
LockUntilLoaded = True
LockOnSubmit = True
ShowHint = True
DesignLeft = 2
DesignTop = 2
object IWBS4Region_Form: TIWBS4Region
Left = 0
Top = 0
Width = 807
Height = 81
Align = alTop
Css = ''
HeightRender = False
RawText = True
Text =
'<marquee><p style="font-family: Impact; font-size: 18pt">Lorem i' +
'psum dolor Lorem ipsum dolor Lorem ipsum dolor Lorem ipsum dolor' +
' Lorem ipsum dolor Lorem ipsum dolor!</p></marquee>'
WidthRender = False
end
object IWBS4LayoutMgr1: TIWBS4LayoutMgr
Left = 392
Top = 256
end
end
|
|
|
| WebApplication.NewWindow ignores encoding |
|
Posted by: Mikael Nilsson - 04-23-2020, 09:26 AM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Hello,
I have a XML files created with ISO-8859-1. I want to to use the Swedish special characters.
<?xml version="1.0" encoding="ISO-8859-1"?>.......
If I double click on the file, the file is opened with a browser and all is fine.
If I show the file in a TIWText all is fine.
But when sending it with WebApplication.NewWindow() it does not work. The browser complains on the first Swedish special character.
Is this a bug?
Regards
Mikael
|
|
|
| Intraweb & AWS Load Balancer |
|
Posted by: gbh100 - 04-22-2020, 08:58 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
I have an environment in AWS using a load balancer that receives all of the communication in HTTPS and then converts it to HTTP in the AWS environment. When I call an Intraweb application (I use V14 and ISAPI) with https://mydomain.com/app1 Intraweb changes the URL to http://mydomain.com/app1/SessionID thus neutralizing the SSL session I want to use. Intraweb is unaware that SSL is in use and therefore doesn't include it when the URL is rewritten with the session ID. Can I intercept this somewhere and change the response to include https:// ? The SSL works fine when I manually change the URL to https.
|
|
|
| Sending email to 365 server |
|
Posted by: zsleo - 04-22-2020, 06:43 AM - Forum: Indy
- Replies (4)
|
 |
Here is an extract code I am using/testing that keeps returning the error: 'Socket Error # 10060'#$D#$A'Connection timed out.'
Code: procedure TForm1.Button1Click(Sender: TObject);
var
idSMTP1: TIdSMTP;
idSASLLogin: TIdSASLLogin;
idUserPassProvider: TIdUserPassProvider;
begin
idSMTP1 := TIdSMTP.Create(nil);
try
idSMTP1.IOHandler := TIdSSLIOHandlerSocketOpenSSL.Create(idSMTP1);
idSMTP1.UseTLS := utUseExplicitTLS;
TIdSSLIOHandlerSocketOpenSSL(idSMTP1.IOHandler).SSLOptions.SSLVersions := [sslvTLSv1_2];
idSMTP1.Host := 'smtp.office365.com';
idSMTP1.Port := 587;
idSASLLogin := TIdSASLLogin.Create(idSMTP1);
idUserPassProvider := TIdUserPassProvider.Create(idSASLLogin);
idSASLLogin.UserPassProvider := idUserPassProvider;
idUserPassProvider.Username := 'XXXXXX';
idUserPassProvider.Password := 'YYYYYY';
idSMTP1.AuthType := satSASL;
idSMTP1.SASLMechanisms.Add.SASL := idSASLLogin;
try
idSMTP1.Connect;
try
idSMTP1.Authenticate;
finally
idSMTP1.Disconnect;
end;
ShowMessage('OK');
except
on E: Exception do
begin
ShowMessage(Format('Failed!'#13'[%s] %s', [E.ClassName, E.Message]));
raise;
end;
end;
finally
idSMTP1.Free;
end;
end;
Can someone please help by pointing to what/where I going wrong
TIA
|
|
|
| IWControl or IWBS4Control |
|
Posted by: Rolphy Reyes - 04-22-2020, 12:42 AM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Hi!
In the new version of Intraweb the setup comes with IW Bootstrap additional, for the company this bring several questions:
1.- Those components, can be use freely without thinking that it's going to be "deprecated"??
2.- Those components are "Template" compatible?
3.- What is the advantage of using this suite of Bootstrap-based components?
4.- This suite of Bootstrap-based components inherit from Intraweb controls?
We are newbies to these HTML / CSS / JavaScript topics.
TIA
|
|
|
|