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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 99,926
» Latest member: luck8norskevn
» Forum threads: 2,426
» Forum posts: 11,373

Full Statistics

Online Users
There are currently 1057 online users.
» 4 Member(s) | 1049 Guest(s)
Applebot, Baidu, Bing, Google, bpinetempresas2, bzf168com, luck8norskevn

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

 
  Finished SendFile
Posted by: matija - 07-28-2020, 12:12 PM - Forum: IntraWeb General Discussion - Replies (2)

Can you detect when WebApplication.SendFile is finished?

Print this item

  copy to clipboard
Posted by: softdev85 - 07-24-2020, 08:31 PM - Forum: IntraWeb General Discussion - Replies (5)

hello,
i have  TIWText  or IWMemo1 with some text inside

Have you any soluce for copy the text inside to the clipboard ?

Thank's a lot best regards

Print this item

  IW 15.2.10 is out
Posted by: Alexandre Machado - 07-24-2020, 12:41 PM - Forum: IntraWeb General Discussion - No Replies

This build replaces broken 15.2.9.



https://www.atozed.com/2020/07/intraweb-15-2-10/

Version history: https://www.atozed.com/2020/07/15-2-10-h/
[/url][url=https://www.atozed.com/2020/07/15-2-10-h/]

Print this item

  IW 15.2.8 is out
Posted by: Alexandre Machado - 07-23-2020, 11:29 AM - Forum: IntraWeb General Discussion - No Replies

Hi guys,

a few fixes which improves Async rendering:

https://www.atozed.com/2020/07/intraweb-15-2-8/

Enjoy!  Big Grin

Print this item

  problem in iframe
Posted by: fatersoft - 07-23-2020, 06:47 AM - Forum: IntraWeb General Discussion - Replies (2)

hi
The program built with Intraweb does not work properly in iframe
in 15.2
but in 15.1 is true

I can't navigate between pages when we use
this code


      TIWAppForm(WebApplication.ActiveForm).Release;
      AFormClass.Create(WebApplication).Show;
when intraweb application  running in iframe

Print this item

  IW 15 and 14 updates
Posted by: Alexandre Machado - 07-21-2020, 12:06 PM - Forum: IntraWeb General Discussion - Replies (1)

Hi guys,

2 new updates at once:

IW 15.2.7 contains some important fixes in IWjQGrids: 

https://www.atozed.com/2020/07/intraweb-15-2-7/


IW 14.2.13 includes RAD Studio 10..4 Sydney support. This version was built from the same code base from version 14.2.12. So, IW 14 users should only update if you are also moving your project to RAD Studio 10.4.

https://www.atozed.com/2020/07/intraweb-14-2-13/


Enjoy  Big Grin

Print this item

  Cosmos on linux
Posted by: cosbecause - 07-20-2020, 04:56 AM - Forum: COSMOS - Replies (1)

Can I run cosmos on linux?

Print this item

  bug in render using - TIWModalWindow
Posted by: mazluta - 07-18-2020, 02:25 PM - Forum: IntraWeb General Discussion - Replies (2)

it's look the that the region list or containers list not maintained well

unit IWBaseRenderContext;
line 216 - 
the fix not help

function TIWContainerContext.GetComponentContext(const AName: string): TIWBaseComponentContext;
var
  idx: Integer;
  p: Integer;
  LContainerName: string;
  LContainer: TComponent;
  LBaseContainer: IIWBaseContainer;
  //yossi
  goAhead : Boolean;
begin
  Result := nil;
  if Not Assigned(FAliasContextList) then // yossi
    exit;

  goAhead := True; //yossi
  Try //yoosi
    idx := FAliasContextList.IndexOf(AName);
  Except; // yossi
    goAhead := False;
  End;
  // yossi
//  if not goAhead then
//    Exit;

//yossi  if idx >= 0 then begin
  if (idx >= 0) and goAhead then begin
    Result := FAliasContextList.Objects[idx] as TIWBaseComponentContext;
  end else begin
    p := Pos('.', AName);
    if p > 0 then begin
      LContainerName := Copy(AName, 1, p - 1);
      LContainer := GetControlInstance(LContainerName);
      LBaseContainer := BaseContainerInterface(LContainer);
      if Assigned(LBaseContainer) then begin
        Result := LBaseContainer.ContainerContext.GetComponentContext(Copy(AName, Length(LContainerName) + 2, Length(AName)));
      end;
    end;
  end;
end;



Attached Files Thumbnail(s)
               

.zip   aa.zip (Size: 5.02 KB / Downloads: 1)
Print this item

  create grid columns at run time
Posted by: mazluta - 07-17-2020, 11:08 AM - Forum: IntraWeb General Discussion - Replies (18)

very simple project.

add 2 columns to grid.
refresh / invalidate / render - nothing help.......

if i will do something like that in the VCL framework it would work....

any body have idea? is it always like this in intraweb?
is there any full documentation for any new components?
dose the demos are relevant to version 15.xxx ++

dose the demo for madexception working? in version 15.xxx

dose atozed have to respect some one how bought there components?

==========================
this is the same project with VCL ehlib components
==========================

procedure TForm12.Button1Click(Sender: TObject);
begin
  DBGridEh1.Columns.Add;
  DBGridEh1.Columns[0].Title.Caption := 'code';
  DBGridEh1.Columns[0].Visible := true;;
  DBGridEh1.Columns.Add;
  DBGridEh1.Columns[1].Title.Caption := 'name';
  DBGridEh1.Columns[1].Visible := true;;
end;

===========================
this is the code in intraweb
===========================
unit Unit1;

interface

uses
  Classes, SysUtils, IWAppForm, IWApplication, IWColor, IWTypes, IWCompButton,
  Vcl.Controls, IWVCLBaseControl, IWBaseControl, IWBaseHTMLControl, IWControl,
  IWjQGrid, Vcl.Forms, IWVCLBaseContainer, IWContainer, IWHTMLContainer,
  IWHTML40Container, IWRegion, IWCompLabel;

type
  TIWForm1 = class(TIWAppForm)
    IWRegion1: TIWRegion;
    IWjQGrid1: TIWjQGrid;
    IWButton1: TIWButton;
    IWLabel1: TIWLabel;
    procedure IWButton1Click(Sender: TObject);
  public
  end;

implementation

{$R *.dfm}


procedure TIWForm1.IWButton1Click(Sender: TObject);
begin
  IWjQGrid1.Columns.Add;
  TjQGridColumn(IWjQGrid1.Columns[0]).Title := 'code';
  TjQGridColumn(IWjQGrid1.Columns[0]).Visible := True;
  IWjQGrid1.Columns.Add;
  TjQGridColumn(IWjQGrid1.Columns[1]).Title := 'name';
  TjQGridColumn(IWjQGrid1.Columns[1]).Visible := True;


  IWjQGrid1.DoRefreshControl := true;
  IWjQGrid1.Refresh;
  IWjQGrid1.Invalidate;

  Self.AsyncRenderComponent(IWRegion1);

  IWLabel1.Caption := ' there are ' + IntToStr(IWjQGrid1.Columns.Count) + ' columns';

end;

initialization
  TIWForm1.SetAsMainForm;

end.



Attached Files Thumbnail(s)
       

.zip   Project1.zip (Size: 54.34 KB / Downloads: 4)
Print this item

  IntraWeb and WebRTC
Posted by: TPiotr - 07-16-2020, 03:35 PM - Forum: IntraWeb General Discussion - Replies (1)

Hi,

Can anyone recommend a stable and safe solution for implementing WebRTC in IntraWeb applications ?
It is important that the IntraWeb application authorizes connections and manages WebRTC server connections.

Seems simple:

First machine has an public IP address (Computer in the company):
Server WWW (IntraWeb) + Server WebRTC + Client WebRTC
It can be as one application. It will be much easier and safer to communicate inside the application.

Second machine inside the NAT network (Employee's computer):
Only client WebRTC (Web browser)

Maybe there are some solution WebRTC server/client components ?

Best Regards
Piotr

Print this item