| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
Today, 03:02 AM
» Replies: 0
» Views: 43
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
Yesterday, 09:03 AM
» Replies: 0
» Views: 38
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
Yesterday, 01:48 AM
» Replies: 0
» Views: 57
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 321
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 159
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 507
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 154
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,035
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 284
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 842
|
|
|
| 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!
|
|
|
|