| Welcome, Guest |
You have to register before you can post on our site.
|
|
|
| Calling a C++ Builder function and passing parameters from a Javascript function |
|
Posted by: amine1980 - 03-27-2019, 07:29 PM - Forum: IntraWeb General Discussion
- Replies (8)
|
 |
Hi people,
I need to call a c++ builder function from a HTML button.
My HTML is something like this:
Code: <button id="WHATEVER" onClick="add(2,2);">ADD 2 + 2</button>
I know that i can call some functions using the button events (async or not) but i need to call a function with parameters like that:
Javascript Code:
Code: function add(a,b)
{
var result = a + b;
DisplayNumber(result);
}
C++ Builder Code:
Code: void __fastcall TForm1::DisplayNumber(int number)
{
ShowMessage(number);
}
Is this possible?
Thanks to all
|
|
|
| Embedd SSRS |
|
Posted by: PaulWeem - 03-25-2019, 04:20 PM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Hi All,
Did anyone ever manage to embedd SSRS in an Intraweb Web Application?
If so, please enlighten me on how to get this done (or at least getting started)!
Thanks in advance.
Using Delphi 10.2.2 and IW 15.0.18
Regards, Paul
|
|
|
| HTTP DELETE request with body |
|
Posted by: Maarten de Vries - 03-21-2019, 04:40 PM - Forum: Indy
- Replies (2)
|
 |
Hi
I have tries to sent a TIdHTTP.Delete request with a stream body the same as like a TIdHTTP.Post. Unfortunately there is no overload function for Delete what accept this (Delphi 10.2).
On Internet I found "The latest update to the HTTP 1.1 specification (RFC 7231) explicitly permits an entity body in a DELETE request:"
Is there a workaround so I can send a DELETE request with a body?
Thank you for your answer
|
|
|
| IMAP Attachment Filename |
|
Posted by: Pascal - 03-16-2019, 02:50 PM - Forum: Indy
- Replies (2)
|
 |
Hi,
Is it possible the get the filename(s) of attchements without actually downloading them. I tried the 'RetrieveStructure' function but the filename(s) are empty in this case.
Regards,
Pascal
|
|
|
|