| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 82,319
» Latest member: Arunodaya
» Forum threads: 2,408
» Forum posts: 11,315
Full Statistics
|
| Online Users |
There are currently 591 online users. » 3 Member(s) | 583 Guest(s) Applebot, Bing, DuckDuckGo, Facebook, Google, Arunodaya, capdainlogo, vui89icu
|
| 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: 627
|
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 71
|
TIWjQDBGrid changing UI
Forum: IntraWeb General Discussion
Last Post: BoostedCruiser
06-08-2026, 02:02 AM
» Replies: 36
» Views: 70,359
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Fabrizio Conti
06-04-2026, 09:14 AM
» Replies: 3
» Views: 473
|
Access Violation When Val...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
06-03-2026, 08:47 AM
» Replies: 2
» Views: 517
|
Bootstrap5
Forum: IntraWeb General Discussion
Last Post: geraldtatum
06-02-2026, 06:24 AM
» Replies: 1
» Views: 412
|
weakpackageunit contains ...
Forum: IntraWeb General Discussion
Last Post: rlebeau
05-26-2026, 04:56 PM
» Replies: 4
» Views: 530
|
Custom 404 handler
Forum: IntraWeb General Discussion
Last Post: CfawesDwale
05-21-2026, 08:02 AM
» Replies: 0
» Views: 256
|
PopUp Menu
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
05-13-2026, 04:35 AM
» Replies: 4
» Views: 8,207
|
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,123
|
|
|
| Sending email through Gmail |
|
Posted by: jjeffman - 07-16-2018, 08:19 PM - Forum: Indy
- Replies (3)
|
 |
Hello,
I am using Indy10 on C++Builder 6.0 Professional Edition, which I have already succeeded on sent an email using Gmail some time ago.
Now I have to do it again and it seems that no matter the settings I have choosen to TIdSMTP or TIdSSLIOHandlerSocketOpenSSL, I've been getting the same server answer: "You must issue a STARTTLS first".
I am using Port = 587 and TLS support.
Which are the correct settings to enable Indy10 to send emails using Gmail's SMTP?
Thank you very much.
Jayme Jeffman Filho.
|
|
|
| Graphic Interface |
|
Posted by: SZStore - 07-15-2018, 02:45 PM - Forum: COSMOS
- Replies (1)
|
 |
Hello,
Currently I create an OS and I start to discover Cosmos.
However, I have some questions:
- When creating an OS with Cosmos, does it have to have the .NET Framework to run it on a PC?
- Can we create an OS with design ie with windows?
Regards,
SZStore
|
|
|
| template processor html read question |
|
Posted by: joel - 07-15-2018, 05:23 AM - Forum: IntraWeb General Discussion
- Replies (7)
|
 |
I would like to store templates in a database and then use them with a tiwTemplateProcessHTML.
Does anyone know if it is possible to load a template from a database directly to a stream and have a tiwTemplateProcessorHTML use it without having to first save the file to the template location on the disk?
|
|
|
| Anonymous js function with callback to backend |
|
Posted by: mschumann - 07-13-2018, 08:15 AM - Forum: IntraWeb General Discussion
- Replies (6)
|
 |
Hello,
I am trying to integrate an anonymous function into a js component that calls the backend and returns a value depending on the state of the backend. I am using IW 15 and Delphi 10.2.3 Enterprise and IWBS.
Within the Bootstrap FIle Input I attach an anonymous function:
Code: '$("#{%htmlname%}").on("filebeforedelete", function() {' +
'return !window.confirm("Do you really want to delete the file?");});';
This works well. But in my application I want to go back to the backend, look, whether the file may be deleted at all and in case of yes, display the boostrap dialog instead of the native confirm box.
As everything runs asynchonous, I am a bit lost and have no Idea on how to accomplish this with calls to the backend.
Any help is very appreciated.
Thanks!
|
|
|
| TIdIMAP4.SendCmd |
|
Posted by: Boba TC - 07-11-2018, 04:22 AM - Forum: Indy
- Replies (2)
|
 |
Dear All; here's an easy one:
trying to SearchMailBox like this:
Code: TIdIMAP4SearchRec sr;
::ZeroMemory(&sr, sizeof(sr));
sr.Date = TDateTime::CurrentDate()-2;
sr.SearchKey = skSince;
if(IdIMAP4->SearchMailBox(&sr, 0)){
//...
}
and this is what the log.file shows:
Code: ...
C4 OK [READ-ONLY] Inbox selected. (Success)<EOL>
C5 SEARCH SINCE 8-JUL-2018<EOL>
C5 BAD Could not parse command<EOL>
...
I bet I've seen similar topics back when Borland news groups were alive; so what's wrong with my code?
Should I use IdIMAP4->SendCmd() directly? I would if I knew its proper syntax. Thanks in advance.
|
|
|
| Is it possible to use Session without cookie-ip base? |
|
Posted by: ermesoml - 07-10-2018, 05:59 PM - Forum: Indy
- Replies (1)
|
 |
Hi everyonce,
I have an applications constructed above IdCustomHTTPServer that controls the access with sessions.
But some internet operatitors, mainly mobile (in Brazil), uses at the same request of page many IP's, that ocasion the issue of lose sessions while using the system.
When i search the create session methods of IdCustomHTTPServer i found this:
Code: function TIdHTTPDefaultSessionList.CreateUniqueSession(
const RemoteIP: String): TIdHTTPSession;
var
SessionID: String;
begin
SessionID := GetRandomString(15);
while GetSession(SessionID, RemoteIP) <> nil do
begin
SessionID := GetRandomString(15);
end; // while
Result := CreateSession(RemoteIP, SessionID);
end;
Its possible to modify in some part of component to the RemoteIP came void or to the component IdCustomHTTPServer dont use the ip based session?
Thanks so much!
|
|
|
|