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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 90,440
» Latest member: hi88fzcom1
» Forum threads: 2,418
» Forum posts: 11,354

Full Statistics

Online Users
There are currently 783 online users.
» 3 Member(s) | 777 Guest(s)
Applebot, Bing, Google, Gamehay88com, hi88fzcom1, Parnika_Dutta

Latest Threads
Looking for UI Design Tip...
Forum: Delphi General Discussion
Last Post: chrisjordon232
08-06-2026, 05:17 AM
» Replies: 0
» Views: 30
Simply convert PeerIp to ...
Forum: Indy
Last Post: DidierMenant
08-04-2026, 03:50 PM
» Replies: 2
» Views: 179
New CGDevTools build is a...
Forum: CGDevTools
Last Post: lfeliz
08-04-2026, 12:03 AM
» Replies: 2
» Views: 1,350
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-02-2026, 04:21 PM
» Replies: 3
» Views: 209
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: JuergenS
07-31-2026, 09:44 AM
» Replies: 6
» Views: 1,245
Datatables question
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-28-2026, 04:34 AM
» Replies: 2
» Views: 233
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: CharlieDunn
07-27-2026, 08:27 PM
» Replies: 1
» Views: 379
Intraweb components missi...
Forum: IntraWeb General Discussion
Last Post: valmeras
07-27-2026, 03:18 PM
» Replies: 3
» Views: 378
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,867
IW 16.1.9 Invalid propert...
Forum: IntraWeb General Discussion
Last Post: Blanca80
07-17-2026, 08:06 AM
» Replies: 7
» Views: 2,373

 
  IWVideo use with WebCam
Posted by: davidbaxter - 07-29-2020, 03:18 AM - Forum: IntraWeb General Discussion - No Replies

Is there a way to use the IWVideo component to display the images from a WebCam? Or is there another Intraweb component/method to display WebCam output to a web page?
Thanks.

Print this item

  Hide version number
Posted by: joel - 07-29-2020, 01:36 AM - Forum: IntraWeb General Discussion - Replies (10)

I need to hide the version number in the html.

<meta Name="GENERATOR" content="IntraWeb v15.2.6 Serial 123124">

I think there is a property on servercontroller to do this.   Does anyone know what it is?

Print this item

  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