| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 487 online users. » 0 Member(s) | 483 Guest(s) Applebot, Baidu, Bing, Google
|
| Latest Threads |
Intraweb components missi...
Forum: IntraWeb General Discussion
Last Post: valmeras
07-20-2026, 08:29 PM
» Replies: 0
» Views: 29
|
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
07-17-2026, 05:18 PM
» Replies: 6
» Views: 4,487
|
IW 16.1.9 Invalid propert...
Forum: IntraWeb General Discussion
Last Post: Blanca80
07-17-2026, 08:06 AM
» Replies: 7
» Views: 2,106
|
Bootstrap5
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 03:38 AM
» Replies: 2
» Views: 558
|
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 03:14 AM
» Replies: 1
» Views: 203
|
Need Help Integrating Mic...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 02:38 AM
» Replies: 1
» Views: 190
|
Projeto Intraweb
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 02:12 AM
» Replies: 1
» Views: 259
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 02:11 AM
» Replies: 7
» Views: 950
|
OpenSSL and concurrent re...
Forum: Indy
Last Post: kbriggs
07-05-2026, 02:41 PM
» Replies: 5
» Views: 565
|
Intraweb + Lazarus
Forum: IntraWeb Dúvidas Gerais
Last Post: vonirpereira
07-03-2026, 06:35 PM
» Replies: 0
» Views: 127
|
|
|
| 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
|
|
|
| Optimization of final HTML code |
|
Posted by: TPiotr - 04-21-2020, 08:09 PM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
Hi,
I have IntraWeb 15.1.20 Ultimate with source code (Subscription to 2021).
Is it possible to optimize final HTML code? (I would like to remove characters #9 and #13#10)
I'm trying with WebApplication.Response in the IWUserSessionBaseAfterExecuteForm event, but I can't get to ContentStream.
Probably only solution is to add something to source code.
|
|
|
| Фоновый рисунок страницы |
|
Posted by: Сергей Александрович - 04-21-2020, 01:30 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Подскажите как правильно указать фоновый рисунок для страницы.
Цвет устанавливаю и все получается:
В свойствах формы BGColor := cl(Color) и фон красится в нужный цвет.
А вот указать фоновый рисунок не получается...
Background.FileName := FileName.jpg;
Вероятно я не верно указываю путь к файлу или не в том каталоге его размещаю.
Подскажите как правильно?
Tell me how to correctly specify the background image for the page.
I set the color and everything works out:
In the form properties, BGColor := cl(Color) and the background is colored to the desired color.
But you can't specify the background image...
Background.FileName := FileName.jpg;
I probably incorrectly specify the path to the file or place it in the wrong directory.
Tell me how to do it correctly?
|
|
|
|