| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
How to terminate HTTP Thr...
Forum: Indy
Last Post: hamstring
9 hours ago
» Replies: 4
» Views: 296
|
VCL conversion
Forum: Delphi General Discussion
Last Post: marktuan
08-07-2026, 01:20 PM
» Replies: 0
» Views: 362
|
Looking for UI Design Tip...
Forum: Delphi General Discussion
Last Post: chrisjordon232
08-06-2026, 05:17 AM
» Replies: 0
» Views: 82
|
Simply convert PeerIp to ...
Forum: Indy
Last Post: DidierMenant
08-04-2026, 03:50 PM
» Replies: 2
» Views: 244
|
New CGDevTools build is a...
Forum: CGDevTools
Last Post: lfeliz
08-04-2026, 12:03 AM
» Replies: 2
» Views: 1,395
|
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: JuergenS
07-31-2026, 09:44 AM
» Replies: 6
» Views: 1,311
|
Datatables question
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-28-2026, 04:34 AM
» Replies: 2
» Views: 300
|
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: CharlieDunn
07-27-2026, 08:27 PM
» Replies: 1
» Views: 481
|
Intraweb components missi...
Forum: IntraWeb General Discussion
Last Post: valmeras
07-27-2026, 03:18 PM
» Replies: 3
» Views: 431
|
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,923
|
|
|
| CSS for IWTabControl |
|
Posted by: valmeras - 08-25-2020, 04:02 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
I am using Intraweb 14.2.7 with Rad Studio 10.2.3 (C++ Builder)
I would like to know if it is possible to add css for a TIWTabControl ?
Because I don't see the option in the object inspector.
|
|
|
| Access violation iw 15.2.14 |
|
Posted by: softdev85 - 08-25-2020, 07:55 AM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
Hello,
there are access violation, in IW 15.2.14, in adress 0000 in bds, and iw.....Bpl
with delphi 10.3.3.3
impossible to access to code on some form,
the error message indicate, there are some procedure not present,
or property not present, do you want i remove them ?
the compilation is ok,
but impossible to access in ide a some form
is not for all form, just somes ones
no problem with 15.2.13
no problem with 15.2.12
best regard
|
|
|
| Cross Talk error |
|
Posted by: joelcc - 08-24-2020, 07:13 PM - Forum: CrossTalk General Discussion
- Replies (1)
|
 |
v.2.0.27
I am trying to compile Net.mscorlib and the following code errors at the line: const MaxValue: Byte = 255;
The error is the following: [dcc32 Error] NET.mscorlib.pas(355): E2010 Incompatible types: 'Byte' and 'Integer'
How do I correct this?
Here is the full object.
Byte = class(TCTBaseObject)
private
protected
class function CTFullTypeName: string; override;
public
const MaxValue: Byte = 255;
const MinValue: Byte = 0;
function CompareTo(
const aValue: TCTObject): Int32; overload;
function CompareTo(
const aValue: Byte): Int32; overload;
function Equals(
const aObj: TCTObject): Boolean; reintroduce; overload;
function Equals(
const aObj: Byte): Boolean; reintroduce; overload;
function GetHashCode: Int32; reintroduce; overload;
class function Parse(
const s: string): Byte; overload;
class function Parse(
const s: string;
const aStyle: NumberStyles): Byte; overload;
class function TryParse(
const s: string;
out aResult: Byte): Boolean; overload;
function ToString: string; reintroduce; overload;
function ToString(
const aFormat: string): string; reintroduce; overload;
function GetTypeCode: TypeCode; overload;
function GetType: TypeNET; overload;
end;
|
|
|
| Memory Leak on v15.2.13 |
|
Posted by: Encina - 08-24-2020, 03:10 AM - Forum: IntraWeb General Discussion
- Replies (5)
|
 |
Code: unit Unit1;
interface
uses
Classes, SysUtils, IWAppForm, IWApplication, IWColor, IWTypes, Vcl.Controls,
IWVCLBaseControl, IWBaseControl, IWBaseHTMLControl, IWControl, IWCompButton;
type
TIWForm1 = class(TIWAppForm)
IWButton1: TIWButton;
procedure IWButton1AsyncClick(Sender: TObject; EventParams: TStringList);
public
end;
implementation
{$R *.dfm}
procedure TIWForm1.IWButton1AsyncClick(Sender: TObject; EventParams: TStringList);
begin
//
end;
initialization
TIWForm1.SetAsMainForm;
end.
|
|
|
| v15.2.12 IWModalWindow doesn't work |
|
Posted by: Encina - 08-21-2020, 09:14 AM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
v15.2.12 is ok
procedure TIWForm1.IWAppFormCreate(Sender: TObject);
begin
With IWModalWindow1 do
begin
Reset;
Autosize := False;
Title := 'Test';
Draggable := False;
Src := 'http://cdn07.foxitsoftware.cn/pub/foxit/manual/cPDF/zh_cn/FoxitConnectedPDF_Manual.pdf';
OnAsyncClick := nil;
Show;
end;
end;
|
|
|
| AV & Memory leak |
|
Posted by: Encina - 08-21-2020, 03:15 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Delphi10.3.3
Intraweb v15.2.12
1.New / Other / Delphi / Intraweb / Intraweb Application Wizard
StandAlone Application (Http.sys)
Project Name: Test
2.program Test
+ ReportMemoryLeaksOnShutdown := True;
3.New / Other / Delphi / Intraweb / New Frame
unit Unit2;
interface
uses
SysUtils, Classes, Controls, Forms, IWVCLBaseContainer, IWColor, IWContainer,
IWRegion, IWHTMLContainer, IWHTML40Container;
type
TIWFrame2 = class(TFrame)
IWFrameRegion: TIWRegion;
IWRegion1: TIWRegion;
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.dfm}
end.
4.Copy IWFrame2(Unit2.pas) to IWForm1(Unit1.pas)
unit Unit1;
interface
uses
Classes, SysUtils, IWAppForm, IWApplication, IWColor, IWTypes, Vcl.Controls,
Vcl.Forms, IWVCLBaseContainer, IWContainer, IWHTMLContainer, IWHTML40Container, Unit2;
type
TIWForm1 = class(TIWAppForm)
IWFrame2: TIWFrame2;
public
end;
implementation
{$R *.dfm}
initialization
TIWForm1.SetAsMainForm;
end.
5.Run (F9)
6.Launch Firefox and execute application
http://127.0.0.1:8888/
7.Shutdown
AV...
Memory Leak...
|
|
|
|