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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 82,545
» Latest member: go881cocom
» Forum threads: 2,408
» Forum posts: 11,315

Full Statistics

Online Users
There are currently 566 online users.
» 1 Member(s) | 562 Guest(s)
Applebot, Bing, Google, go881cocom

Latest Threads
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: Gregory_Twedt
06-24-2026, 04:40 AM
» Replies: 5
» Views: 642
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 84
TIWjQDBGrid changing UI
Forum: IntraWeb General Discussion
Last Post: BoostedCruiser
06-08-2026, 02:02 AM
» Replies: 36
» Views: 70,401
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Fabrizio Conti
06-04-2026, 09:14 AM
» Replies: 3
» Views: 480
Access Violation When Val...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
06-03-2026, 08:47 AM
» Replies: 2
» Views: 520
Bootstrap5
Forum: IntraWeb General Discussion
Last Post: geraldtatum
06-02-2026, 06:24 AM
» Replies: 1
» Views: 421
weakpackageunit contains ...
Forum: IntraWeb General Discussion
Last Post: rlebeau
05-26-2026, 04:56 PM
» Replies: 4
» Views: 551
Custom 404 handler
Forum: IntraWeb General Discussion
Last Post: CfawesDwale
05-21-2026, 08:02 AM
» Replies: 0
» Views: 260
PopUp Menu
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
05-13-2026, 04:35 AM
» Replies: 4
» Views: 8,212
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
05-13-2026, 03:32 AM
» Replies: 3
» Views: 4,131

 
  IntraWeb 17 Plays Nice with 15
Posted by: kudzu - 05-11-2018, 08:14 PM - Forum: IntraWeb 17 - No Replies

https://www.atozed.com/2018/05/intraweb-...s-with-15/

Print this item

  Roadmaps Updated with ETAs
Posted by: kudzu - 05-11-2018, 08:02 PM - Forum: IntraWeb General Discussion - No Replies

https://www.atozed.com/2018/05/roadmaps-...with-etas/

Print this item

  Unable to upload to correct FTPS folder if FTP site also exists
Posted by: Vintner - 05-10-2018, 03:37 PM - Forum: Indy - Replies (1)

Hello

I'm using Indy 10.6.0.516 on Delphi XE7.

I can get FTPS to upload to the correct folder using port 990 if there is no FTP site on the same IP. However, as soon as I set up an FTP site on port 21, then FTPS uploads now go to the FTP folder rather than the FTPS one.

Is it possible for Indy to work with FTPS when there are both FTP and FTPS sites on the same host? 

Here is my code:

Code:
               If IdFTP1.Connected then
                  IdFTP1.Disconnect;

               IdFTP1.Host:=FTP_HOST;
               IdFTP1.Port:=FTP_PORT; //990
               IdFTP1.Username:=FTP_USERID;
               IdFTP1.Password:=FTP_PASSWORD;
               IdFTP1.Passive:=True;

               IdSSLIOHandlerSocketOpenSSL1.Host:=FTP_HOST;
               IdSSLIOHandlerSocketOpenSSL1.Port:=FTP_PORT; //990
               IdSSLIOHandlerSocketOpenSSL1.DefaultPort:=FTP_PORT;

               IdSSLIOHandlerSocketOpenSSL1.SSLOptions.Method:=sslvSSLv23; 
               IdFTP1.IOHandler:=IdSSLIOHandlerSocketOpenSSL1;
               IdFTP1.UseTLS:=utUseExplicitTLS;

               IdFTP1.DataPortProtection:=ftpdpsPrivate;
               IdFTP1.Connect;
               IdFTP1.ChangeDir(FTP_FOLDER);

               IdFTP1.Put(zipSourceFile, zipDestinationFile);

Many thanks

Print this item

  How to pass email datetime to the New TIdImap4.AppendMsg method?
Posted by: edwinyzh - 05-10-2018, 08:44 AM - Forum: Indy - Replies (3)

Hello,

In the old version of Indy 10 (a few years back), the TIdImap4.AppendMsg allows  me to pass the UTC datetime of the email, but I don't know since when the parameter list of that method has changed.

I have noticed the AAlternativeHeaders: TIdHeaderList parameter, I guess I can set the email date using this parameter? If yes, how? Thanks.

Print this item

  ISAPI & ComInitialization
Posted by: JalcoJohn - 05-09-2018, 01:58 PM - Forum: IntraWeb General Discussion - Replies (2)

I've an app that has ComInitialization set to ciMultiThreaded and it all works fine on my installation of IIS (Version 8). however, when I deploy it to my Client's server running the same version of IIS I get the error 'Cannot change thread mode after it is set'.  If I change it to ciNormal it seems to work OK.

So the question is, has IIS got some setting somewhere that controls COM on the face of it both systems look the same and is there any harm in leaving it at ciNormal?

Any help much appreciated.

Regards
John

Print this item

  IS it possible to Stop Full render page
Posted by: morhous - 05-09-2018, 09:38 AM - Forum: IntraWeb General Discussion - Replies (4)

Greetings first time "forum"-ing in Atozed feels great tho. I am not delphi developer but i have to be because of job requirements. Ah forget this somehow excited hyped af. 
In a last week i searching through atozed a-z to find documentation to how to prevent full page render hmm actually not prevent another method to get my data without full render you know like ajax works on certain div. Right know i got my nice connections with Dataset, Datasource to DBgrid to show data from which is Dataset get from sql result. Also have a button to add my nicely structured table without missing column but i only add to table not to something like full page render. So i am desperate for help i am not good at delphi i'm started to learn week ago. Any advice would be grateful.
Also i already installed my templates javascript css, masterpages tho Heart

Print this item

  Error: Could not load SSL library
Posted by: RaelB - 05-09-2018, 08:49 AM - Forum: Indy - Replies (8)

Hi,

A small number of users report this error when trying to download webpages with my application.

The app includes recent versions of OpenSSL in the same folder as the exe.
I thought when loading a dll, the first place an app looks is in the same folder as the exe, so whether there are other copies of the dlls in other places or not, should not affect my application. However it seems that such things can have an effect. (see https://stackoverflow.com/questions/2504...i-xe2-iw14).

Is it possible for me to rename the dlls and then set a custom name for the dlls in Indy?

(Delphi XE4; Indy 5438)

Thanks
Rael

Print this item

  IWGrid.Clear Frees objects in control field?
Posted by: luis.j.gutierrez@inn2.cl - 05-08-2018, 09:31 PM - Forum: IntraWeb General Discussion - Replies (3)

I am using Intraweb 14.2.7 and I have a question. When I use IWGrid, I create some buttons using the control field. When I use IWGrid.Clear, ir frees the object assigned to Control?

Print this item

  CGS is not working
Posted by: charl - 05-08-2018, 02:14 PM - Forum: COSMOS - Replies (1)

Hello. I am using the newest userkit of Cosmos and my code compiles but the canvas never shows up on the screen. It stays in text mode. There are no exceptions or anything. I used my own OS and the CGS example code and the issue wasn't resolved.

Print this item

  Start javascript on opening page
Posted by: mrhappy - 05-08-2018, 01:22 PM - Forum: IntraWeb General Discussion - Replies (2)

Hi,

How can a javascript function (from a file) automatically be started when opening a webpage?

I have already added the Javascript filename to Contentfiles and executed a function but got no result.

Greetz

Print this item