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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 98,374
» Latest member: 789wincodes
» Forum threads: 2,426
» Forum posts: 11,371

Full Statistics

Online Users
There are currently 1435 online users.
» 4 Member(s) | 1428 Guest(s)
Applebot, Bing, Google, 77judimynet, 789wincodes, hitclub68top, u888accountant1

Latest Threads
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 222
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 180
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 191
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 496
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 252
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 660
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 231
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,266
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 371
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,005

 
  Rtf to HTML with intraweb
Posted by: cprmlao@hotmail.com - 07-19-2019, 12:59 AM - Forum: IntraWeb General Discussion - Replies (2)

Hi,

I have a big database with many blob fields in tables. 

I have many RTF text in that fields.

Is there some solution to converter those rtf fields content into html format to show into a div element in a template html?

I have search in google, stackovewrflow, intraweb old forums, but I have found nothing.

Regards, Luiz

Print this item

  Delphi 10.3.2 is ready! And we are getting ready too!
Posted by: Alexandre Machado - 07-18-2019, 11:32 PM - Forum: IntraWeb General Discussion - No Replies

Delphi 10.3.2 Official announcement:

https://community.idera.com/developer-to...dio-10-3-2

Marco Cantu blog post:
http://blog.marcocantu.com/blog/2019-aug...tu.blog%29

We are now building new updates for IntraWeb framework supporting Delphi 10.3.2. 

We are going to deploy new IW 15.1, 15.0 and 14.2 within a few hours.

Stay tuned

Print this item

  UDP broadcast message fails
Posted by: Boba TC - 07-18-2019, 03:49 AM - Forum: Indy - Replies (10)

Dear All; here's another easy one. I'm trying to send out a udp broadcast msg like this:

Code:
object Form1: TForm1
  Left = 0
  Top = 0
  Caption = 'Form1'
  ClientHeight = 254
  ClientWidth = 535
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Memo1: TMemo
    Left = 8
    Top = 40
    Width = 293
    Height = 206
    Lines.Strings = (
      'Memo1')
    TabOrder = 0
  end
  object Button1: TButton
    Left = 12
    Top = 8
    Width = 75
    Height = 25
    Caption = 'Button1'
    TabOrder = 1
    OnClick = Button1Click
  end
  object IdUDPClient1: TIdUDPClient
    BroadcastEnabled = True
    Port = 0
    Left = 364
    Top = 28
  end
end

Code:
//---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <IdBaseComponent.hpp>
#include <IdComponent.hpp>
#include <IdUDPBase.hpp>
#include <IdUDPClient.hpp>
class TForm1 : public TForm{
__published: // IDE-managed Components
  TMemo *Memo1;
  TButton *Button1;
  TIdUDPClient *IdUDPClient1;
  void __fastcall Button1Click(TObject *Sender);
private: // User declarations
public: // User declarations
  __fastcall TForm1(TComponent* Owner);
};
extern PACKAGE TForm1 *Form1;
#endif

Code:
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
__fastcall TForm1::TForm1(TComponent* Owner)
  : TForm(Owner){}
void __fastcall TForm1::Button1Click(TObject *Sender){
  try{
    IdUDPClient1->Broadcast( "This is a test. Ignore it.", 45242 );
  }catch( EIdException &e ){
    Memo1->Lines->Add( e.Message );
  }
}
//---------------------------------------------------------------------------

When the Button1 is clicked - nothing visible happens, so I look at the WireShark dump but I have no idea what is going on (see attached). Please help. TIA.

Print this item

  How to get Javascript response on Delphi side, without using hidden fields?
Posted by: LeoBruno - 07-17-2019, 02:16 PM - Forum: IntraWeb General Discussion - Replies (2)

Hi:

Can´t find an answer for this one anywhere.

Basically, I´d like to execute a javascript function on delphi, and get it´s response, without using a hiddent editbox or somwthing like that.

Is it possible?

How?

Print this item

  Get value from Javascript to Label
Posted by: matija - 07-17-2019, 08:23 AM - Forum: IntraWeb General Discussion - Replies (3)

In javascript I have a function that returns ID. 
I want to read this value from HTML javascript and display it on the Label.

procedure TMainForm.IWAppFormCreate(Sender: TObject);
begin

AddToInitProc('function GetId() { return 5; }');

end;


procedure TMainForm.IWAppFormShow(Sender: TObject);
begin
IWLabel1.Caption:= Here This ID from function GetId -> 5
end;

Print this item

  Browser Back Button Again #999,332
Posted by: ShaneStump - 07-16-2019, 11:17 PM - Forum: IntraWeb General Discussion - Replies (6)

Howdy All,

One of my competitors overlays the current web page with their web application and any attempt to leave the page (back button, entering a new URL, etc) pops up a dialog asking if you are sure.

Any idea on how to implement such a feature? Even if the user tries to change the URL?

Most of the grievances I get from my customers is because their customers use the back button, etc and screw up the web reservation process.

Thanks,

Shane

Print this item

  Installing IW 15.0.24 under Delphi 10.3.1
Posted by: Davide - 07-15-2019, 08:28 AM - Forum: IntraWeb General Discussion - Replies (2)

Hello,

I am trying to install IW 15.0.24 under Delphi 10.3.1.
The installation went well but I Don't find any IW tab and components under the components palette.
The path in library is well defined.
Any advice about how to get the components and wizards in my IDE?

Thank you,
Davide

Print this item

  New version 15.1.0 is now available
Posted by: Alexandre Machado - 07-14-2019, 09:15 AM - Forum: IntraWeb General Discussion - Replies (23)

Hi guys,

There is a new IntraWeb version available, 15.1.0

This version introduces several new features and enhancements.

Download link here: https://www.atozed.com/2019/07/intraweb-15-1-0/

See what's new here: https://www.atozed.com/2019/07/15-1-0-h/

Soon we are going to publish new blog posts and demos showing new features of IW 15.1

Notes:

  • TMS library should be compatible, but the user must rebuild all TMS packages from source code

  • CG Dev Tools users will need a new version from CG, once some changes in source code will be necessary

Print this item

  New IntraWeb updates available
Posted by: Alexandre Machado - 07-12-2019, 11:57 AM - Forum: IntraWeb General Discussion - No Replies

New update for IW 15 branch:  https://www.atozed.com/2019/07/intraweb-15-0-24/


New update for IW 14 branch:  https://www.atozed.com/2019/07/intraweb-14-2-12/


Later today we are going to release a new release with several exciting new features, IW 15.1! Stay tuned!

Enjoy!   Smile

Print this item

  IW App with Bootstrap 4 Demo!
Posted by: ShaneStump - 07-12-2019, 04:56 AM - Forum: IntraWeb General Discussion - Replies (6)

Howdy All!

I finally (after 3 extra months of committee decisions) have my new web reservations up on our demo site (it is in beta and demo mode).

Please let me know what you think:

VTS Web Reservations Version 3 (Demo)

The web app is responsive and will work with mobile/tablet/desktop browsers!

All the best,

Shane

Print this item