| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 92,086
» Latest member: rryybrcom
» Forum threads: 2,418
» Forum posts: 11,356
Full Statistics
|
| Latest Threads |
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 349
|
VCL conversion
Forum: Delphi General Discussion
Last Post: marktuan
08-07-2026, 01:20 PM
» Replies: 0
» Views: 377
|
Looking for UI Design Tip...
Forum: Delphi General Discussion
Last Post: chrisjordon232
08-06-2026, 05:17 AM
» Replies: 0
» Views: 97
|
Simply convert PeerIp to ...
Forum: Indy
Last Post: DidierMenant
08-04-2026, 03:50 PM
» Replies: 2
» Views: 262
|
New CGDevTools build is a...
Forum: CGDevTools
Last Post: lfeliz
08-04-2026, 12:03 AM
» Replies: 2
» Views: 1,419
|
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: JuergenS
07-31-2026, 09:44 AM
» Replies: 6
» Views: 1,351
|
Datatables question
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-28-2026, 04:34 AM
» Replies: 2
» Views: 325
|
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: CharlieDunn
07-27-2026, 08:27 PM
» Replies: 1
» Views: 507
|
Intraweb components missi...
Forum: IntraWeb General Discussion
Last Post: valmeras
07-27-2026, 03:18 PM
» Replies: 3
» Views: 451
|
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,954
|
|
|
| TIWAudio: Play and Pause functions |
|
Posted by: valmeras - 11-22-2020, 06:36 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
I am using Intraweb 14.2.7 with Rad Studio (C++ Builder) 10.2.3
How can I access the Play() and Pause(), and if possible Stop(), functions of TIWAudio component in C++ Builder at runtime ?
I mean playing the audio file in my code without the user having to click on the play button.
Example: TIWAudio1.play()
|
|
|
| Attach event parameters to functions like ShowConfirm |
|
Posted by: jeroen.rottink - 11-19-2020, 10:08 AM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Sometimes I use WebApplication.ShowConfirm() to get a confirmation from the user. For example the user wants to delete a record from a grid and clicks on a icon to delete a row. The row index is sent to the server where additional information is gathered based on the row index. A message is crafted to display to the user and ask for a confirmation. For this step ShowConfirm(msg, callback, etc) is used. Can I pass additional event parameters to this callback? Now I keep state information in the object serverside but I would like to pass these parameters from the browser to the callback if possible.
|
|
|
| Thread update IWLabel |
|
Posted by: matija - 11-13-2020, 09:20 AM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
In have (VCL version) thread for update statusbar
How update code for IW with update IWLabel? IWLabel1.Caption .... Access Error!
VCL code:
procedure TMyThread.Execute;
begin
while not Terminated do
begin
if Terminated then
begin
Synchronize(
procedure
begin
MainForm.StatusBar1.Panels.Items[0].Text := 'Load Ending! ';
end
);
Break;
end; // if terminated
Synchronize(
procedure
begin
MainForm.StatusBar1.Panels.Items[0].Text := 'Loading... ';
end
);
end; // while
end;
|
|
|
| Get Url |
|
Posted by: ozelaya - 11-13-2020, 06:28 AM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hi,
Is there a way to get the url that has been used to access the IWApp?
My IW App handles params something like this "http://MyApp?Action=5&form=6" and can be also accesed without params "http://MyApp"
What I want to achieve is that on Sessionexpired redirect to the same url used to access my app.
on Exipred session redirect again to "http://MyApp?Action=5&form=6" or to "http://MyApp"
Is this possible, any hints?
Thanks in advance,
Omar Zelaya
|
|
|
| Loading and saving image |
|
Posted by: Landon - 11-12-2020, 11:55 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
I am very new to IntraWeb and web development for that matter. I am trying to allow a user to take a pic from their phone and save it to a database through a browser.
I have figured out how to allow the user to take a pic and display it through the TemplateProcessorHTML and javscript. However, I am not sure how to get the loaded image from there, to a point where I can save it.
I figured there has to be an IW component I can use for this, but I do not know where to start. I have other forms that I have text fields saving just fine, but I am not using the TemplateProcessor for them.
Any help would be appreciated.
|
|
|
|