Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 99,488
» Latest member: trevornoah
» Forum threads: 2,426
» Forum posts: 11,373

Full Statistics

Online Users
There are currently 898 online users.
» 7 Member(s) | 886 Guest(s)
Applebot, Baidu, Bing, Google, Yandex, Bc8blog, keobongdacity1, mansarovareyehospital, pg55zone, Tajmeels_Clinic, tothenew, trevornoah

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: 340
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-21-2026, 05:31 PM
» Replies: 2
» Views: 385
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 293
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 637
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 365
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 811
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 331
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,499
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 489
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,194

 
  Delphi 10.3 - Enable application to send emails without email client
Posted by: joceravolo - 04-08-2020, 06:22 PM - Forum: Indy - Replies (5)

Hi,

I want to make an application send different emails using tidSMTP.
The tests I am doing using Yahoo or Gmail to send the email it not working but I don't know why.
I don't get an error, but the test email does not work.
The message that pops up is Connection close graciously.
I am new to this and I haven't found any documentation on how to approach this.

Thanks in advance,

Here's the code:

With IdSSLIOHandlerSocketOpenSSL1 do
  begin
    Destination := dbeSMTPServer.Text + ':' + dbeSMTPPort.Text;
    Host := dbeSMTPServer.Text;
    MaxLineAction := maException;
    Port := StrToInt(dbeSMTPPort.Text);
    SSLOptions.Method := sslvTLSv1;
    SSLOptions.Mode := sslmUnassigned;
    SSLOptions.VerifyMode := [];
    SSLOptions.VerifyDepth := 0;
  end;
//SETTING SMTP COMPONENT DATA //
  IdSMTP.Host := dbeSMTPServer.Text;
  IdSMTP.Port := StrToInt(dbeSMTPPort.Text);
  IdSMTP.Username := dbeSMTPUser.Text;
  IdSMTP.Password := dbeSMTPPassword.Text;
  IdSMTP.IOHandler := IdSSLIOHandlerSocketOpenSSL1;
  IdSMTP.AuthType := satDefault;
  //IdSMTP.UseTLS := utUseExplicitTLS;
// SETTING email MESSAGE DATA //
  IdMessage.Clear;
// add recipient list //
  with IdMessage.Recipients.Add do
  begin
    Name := dbeFullName.Text;
    Address := dbeEmail.Text;
  end;
  IdMessage.From.Address :=  dbeEmail.Text;
  IdMessage.Subject := 'Email Test From Sales Manager';
  IdMessage.Body.Add('Hi ' + dbeFullName.Text + ',' + chr(13) + chr(13) +
                    'If you received this email, the configuration of the email for the user ' + dbeUsername.Text +
                    ' is correct!');
  IdMessage.Priority := mpHigh;
  try
    IdSMTP.Connect();
    IdSMTP.Send(IdMessage);
    ShowMessage('Email sent');
    IdSMTP.Disconnect();
  except on e:Exception do
    begin
      ShowMessage(e.Message);
      IdSMTP.Disconnect();
    end;
  end;

Print this item

  Migration Intraweb New Version
Posted by: Rolphy Reyes - 04-06-2020, 04:32 PM - Forum: IntraWeb General Discussion - Replies (4)

Hi!

We had the Intraweb version 14.0.47 and now we're trying to migrate to new Intraweb 15.1.19.

The application (s) use ADO for connecting to the database. This was working good, despite the bad practice that we have implemented that each form has a lot of ADOQuery component.

This is the actual configuration:

1.- Usersession has the ADOConnection and a bunch of TADOQuery component. 
2.- A lot of forms with a lot of TADOQuery component. 

It was working.

Now after the installation of Intraweb 15.1.19, now we get this error Missing Connection or ConnectionString. Nothing have changed, how can we solve this problem???

TIA

Print this item

  Loading Page??
Posted by: ShaneStump - 04-04-2020, 01:24 PM - Forum: IntraWeb General Discussion - Replies (2)

Howdy All!

First, I hope everyone and their families are safe during this worldwide pandemic.

I keep adding more and more overhead to my UserSession when it is initially created (I have to load the data BEFORE the first main intraweb page is created).

I need to show a page telling the user that I am loading their data and to please wait.

Where / how do I show a page in the Server Controller while the usersession is being 'created'?

I am guessing I need to 'delay' the data loading in my UserSession when it is first created and show a loading page and then continue data loading?!!?

Thanks in advance,

Shane

Print this item

  IWComboBox in a IWGrid, which is in a IWFrame
Posted by: jefflynn - 04-03-2020, 07:16 AM - Forum: IntraWeb General Discussion - Replies (2)

Hi there
I have a small project, which consists of a form, and a frame. In the frame there is a grid, and in the grid cells there are comboboxes, one in each cell. I create the frame, grid, comboboxes dynamically. The user can set the comboboxes, and he/she presses the ok button, and in an OnAsyncClick handler I check the ItemIndex variables of each combobox and put them in a database. The problem is: in the OnAsyncClick handler I cannot get the actual ItemIndex value, I always get -1, no matter how it is set. I tried using the OnAyncChange event of the individual comboboxes, the result is the same. I don't know if this is a bug or I'm missing something.

Print this item

  tiwbs4carousel
Posted by: omidsistani - 04-01-2020, 05:00 PM - Forum: IntraWeb General Discussion - Replies (3)

hi EveryOne
how i can Set image in carouselimages?
i set like this :

@pic\slide\1.jpg
@pic\slide\2.jpg
@pic\slide\3.jpg


but Not Working!!!
tnx

Print this item

  IntraWeb 15.1.19 is out!
Posted by: Alexandre Machado - 03-31-2020, 10:39 AM - Forum: IntraWeb General Discussion - Replies (6)

We are in, the maintenance update is out  Big Grin

https://www.atozed.com/2020/03/intraweb-15-1-19/

Small fix for ISAPI applications similar to the one released for 15.1.18.

Stay safe!

Cheers,

Print this item

  IWMemo text showing
Posted by: geremiah - 03-29-2020, 12:03 AM - Forum: IntraWeb General Discussion - Replies (2)

I'm trying to show some text in an iwmemo loaded from a cookie in the formshow event.
But even if add the text to the IWMemo the text is not showed.
Am i doing something wrong ?

Print this item

  IW 15.1.18 is out
Posted by: Alexandre Machado - 03-28-2020, 12:01 PM - Forum: IntraWeb General Discussion - Replies (5)

Hi guys!

hope you are all good, safe and working from home, with some free time to install a new update:

https://www.atozed.com/2020/03/intraweb-15-1-18/

Enjoy and keep coding!  Smile

Cheers!

Print this item

  TIWDBGrid with fixed row headers
Posted by: Diekie - 03-26-2020, 07:18 AM - Forum: IntraWeb General Discussion - Replies (3)

Hi There

I have XE2 and IntraWeb 12.2.37.

I have spent a fair amount of time looking for a way to freeze the header row on my TIWDBGrid when scrolling, to no avail.

There are various CSS-based solutions out there, but they all depend on the <thead> and/or <tbody> tags, which this version of IntraWeb does not produce for the table syntax. I do believe it was introduced in a later version.

Question: Is there a way to modify the output HTML stream, so I can manually insert these tags in the appropriate place? Are there any other solutions, perhaps?

I have also tried overlaying 2 grids, but it is not an elegant solution.

I thank you!

Print this item

  Traceing in Delphi
Posted by: petrsoft - 03-25-2020, 07:04 AM - Forum: IntraWeb General Discussion - Replies (1)

Hello, I have difficulties with tracing my source code in Delphi. Every time I want to trace  compiler stops not on demanding line but somewhere on other place in source code, very often on blank line. It is very unpleasant and makes me sometimes confusion .This happens after using units which are parts of original package Intraweb. I have Delphi 10.2 and now  and Intraweb 15.1.17 Ultimate Edition. Maybe is problem to have both installation as like as for Delphi XE and Delphi Tokyo on my computer ?
Thank you very much
Jaroslav , petrsoft

Print this item