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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 100,235
» Latest member: sunwin8686com
» Forum threads: 2,426
» Forum posts: 11,373

Full Statistics

Online Users
There are currently 821 online users.
» 1 Member(s) | 817 Guest(s)
Applebot, Bing, Google, tk88toys

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

 
  Attach event parameters to functions like ShowConfirm
Posted by: jeroen.rottink - 11-19-2020, 10:08 AM - Forum: IntraWeb General Discussion - Replies (2)

Sometimes I use WebApplication.ShowConfirm() to get a confirmation from the user. For example the user wants to delete a record from a grid and clicks on a icon to delete a row. The row index is sent to the server where additional information is gathered based on the row index. A message is crafted to display to the user and ask for a confirmation. For this step ShowConfirm(msg, callback, etc) is used. Can I pass additional event parameters to this callback? Now I keep state information in the object serverside but I would like to pass these parameters from the browser to the callback if possible.

Print this item

  Web Session Timeout
Posted by: Mikael Nilsson - 11-18-2020, 10:48 AM - Forum: IntraWeb General Discussion - Replies (2)

Hi,

Is there a way to catch when a user gets timeout/expires?
I need to update a table when this happens.

Mikael

Print this item

Sad MessageDlg
Posted by: ESPADA - 11-18-2020, 07:46 AM - Forum: IntraWeb General Discussion - Replies (1)

if MessageDlg('Do you want to ?', mtConfirmation, [mbYes, mbNo], 0) = mrYes then
begin
//
end;


Is there a way to write commands like this in Intraweb? Or how to use it?
Thank you

Print this item

  IW 2021 Update?
Posted by: ShaneStump - 11-18-2020, 01:58 AM - Forum: IntraWeb 17 - Replies (3)

Any news?

All the best,

Shane

Print this item

  WebApplication.AppID
Posted by: Mikael Nilsson - 11-16-2020, 03:43 PM - Forum: IntraWeb General Discussion - Replies (1)

Hi,

Is there a way to get all active AppIDs in the web application?

Regards Mikael

Print this item

  Thread update IWLabel
Posted by: matija - 11-13-2020, 09:20 AM - Forum: IntraWeb General Discussion - Replies (4)

In have (VCL version) thread for update statusbar

How update code for IW with update IWLabel? IWLabel1.Caption .... Access Error!

VCL code:
procedure TMyThread.Execute;
begin

while not Terminated do
begin

          if Terminated then
          begin

            Synchronize(
              procedure
              begin
                MainForm.StatusBar1.Panels.Items[0].Text := 'Load Ending! ';
              end
              );

            Break;

          end; // if terminated


Synchronize(
                    procedure
                    begin
                      MainForm.StatusBar1.Panels.Items[0].Text := 'Loading... ';
                    end
                    );


end; // while

end;

Print this item

  Get Url
Posted by: ozelaya - 11-13-2020, 06:28 AM - Forum: IntraWeb General Discussion - No Replies

Hi,

Is there a way to get the url that has been used to access the IWApp?

My IW App handles params something like this "http://MyApp?Action=5&form=6" and can be also accesed without params "http://MyApp"

What I want to achieve is that on Sessionexpired redirect to the same url used to access my app.

on Exipred session redirect again to "http://MyApp?Action=5&form=6" or to "http://MyApp"

Is this possible, any hints?

Thanks in advance,

Omar Zelaya

Print this item

  Loading and saving image
Posted by: Landon - 11-12-2020, 11:55 PM - Forum: IntraWeb General Discussion - Replies (2)

I am very new to IntraWeb and web development for that matter.  I am trying to allow a user to take a pic from their phone and save it to a database through a browser.

I have figured out how to allow the user to take a pic and display it through the TemplateProcessorHTML and javscript.  However, I am not sure how to get the loaded image from there, to a point where I can save it.

I figured there has to be an IW component I can use for this, but I do not know where to start.  I have other forms that I have text fields saving just fine, but I am not using the TemplateProcessor for them. 

Any help would be appreciated.

Print this item

  DateTime format
Posted by: Mikael Nilsson - 11-11-2020, 01:53 PM - Forum: IntraWeb General Discussion - Replies (11)

I have problem with DateTime format.
Delphi version is 10.3.3 and IW 15.2.3


In Delphi/Intraweb I do this command that's fails with this error: '2020-11-11 14:22:57.660' is not a valid date and time

wDateTime := strToDateTime(ContinueTime);


wDateTime is a TDateTime
ContinueTime is a string containing the value '2020-11-11 14:22:57.660'

I have also done these settings in ServerController
procedure TIWServerController.IWServerControllerBaseConfig(Sender: TObject);
begin
  SysUtils.FormatSettings.ShortDateFormat := 'yyyy-mm-dd';
  SysUtils.FormatSettings.ShortTimeFormat := 'hh:nnConfuseds';
  SysUtils.FormatSettings.LongTimeFormat := 'hh:nnConfuseds.zzz';
end;


I forgot to mention that this code works in SA buy not as a ISAPI.dll

Print this item

  Could not load SSL library
Posted by: alpires2000 - 11-10-2020, 11:46 PM - Forum: Indy - Replies (9)

Hi, when I try to access a url with https the following error occurs: Could not load SSL library. But this error only occurs when I compile my app for android 64-bit, 32-bit works well.
I am using delphi 10.3.3 and AndroidOpenssl1.0.2h

Some idea?
Thanks

Print this item