| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 886 online users. » 1 Member(s) | 881 Guest(s) Applebot, Bing, Facebook, Google, attuworldnl
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
Yesterday, 03:02 AM
» Replies: 0
» Views: 74
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 70
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 83
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 345
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 173
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 527
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 172
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,070
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 305
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 868
|
|
|
| How to prevent a clickable cell in a grid refreshing the whole grid |
|
Posted by: Ian_F1 - 09-10-2018, 04:15 PM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Hi,
It would seem that clicking on a clickable cell in a TIWGrid causes the whole Grid to get refreshed. How do I stop this occurring?
Here's how to see my issue:
- Create a standalone Intraweb applicattion
- Drop a TIWGrid onto the form
- Add this to the OnCreate of the Form
Code: procedure TIWForm1.IWAppFormCreate(Sender: TObject);
var
i : Integer;
begin
IWGrid1.RowCount := 100;
for i := 0 to IWGrid1.RowCount-1 do
begin
iwgrid1.Cell[ i, 0 ].Text := i.ToString;
iwgrid1.Cell[ i, 0 ].Clickable := TRUE;
end; { for i := Low to IWGrid1.RowCount-1 do }
end;
(NOTE: The only reason to add so many rows is so you get a scrollbar)
Now run the application and open the browser and scroll down to the bottom of the grid and then click on a cell. The grid will scroll back to the first row which to me makes me think it's been completely refreshed? I'd like for the grid to just stay where it was before I clicked on it.
Many thanks in anticipation.
Ian.
|
|
|
| 15.0.11+ releases regarding security |
|
Posted by: magosk - 09-10-2018, 07:43 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
@Alexandre:
Hi, I just wanted to check that my e-mails have not ended up in spam filter or similar as I have not received your replies as usual. I need to get back to customer rather urgent with at least some information on time schedule.
Best regards
Magnus Oskarsson
|
|
|
| Strange time lag with Intraweb ISAPI |
|
Posted by: rkossow - 09-07-2018, 06:52 PM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Hi guys,
I have an Intraweb web database that is generally working well.
The only problem is that users experience a few seconds delay if they request after some time of inactivity.
E.g.... a user works with the web DB and it is blazingly fast, then he does for some minutes nothing with the web DB and when he then starts to work with the web DB again it takes
approx. 10 seconds before the web DB answers (like as if it was waking up again), then everything is blazingly fast again till the next time of inactivity of the user...
I have set KeepAlive to true for all forms and the server controller, I setup the ISAPI application pool so that it should be awake always ...
StartMode: AlwaysRunning
IdleTimeout is set way higher than the time of user inactivity ...
The deployment is done on an Azure VM ...
all Energy settings are set, so that no idle timeouts of CPU or something should happen.
Had anybody ever such issues? How would you go about circleing in in the problem?
|
|
|
| Inconsistent behaviour between overloaded versions of NewWindow |
|
Posted by: Ian_F1 - 09-07-2018, 09:59 AM - Forum: IntraWeb General Discussion
- Replies (5)
|
 |
Hi,
I'm using Intraweb 14.2.7 to display a text file in a new tab and it works fine using this command (if the user does not have pop-ups blocked obviously):
Code: WebApplication.NewWindow( webapplication.ApplicationURL + '/mytextfile.txt', '', -1, -1 );
If pop-ups are blocked then it's not very obvious to the user why the text file didn't open and so I would like to display a helpful message. If I change my command to the following I do get a helpful message but then it will display the text file in a new window not in a new tab
Code: WebApplication.NewWindow( webapplication.ApplicationURL + '/mytextfile.txt', '', -1, -1, [ woDetectBlock ] );
So, how can I add pop-up detection and display the text file in a new tab and not in a separate window?
Or, to put it another way:
Why does the following display a file in a new tab
Code: WebApplication.NewWindow( webapplication.ApplicationURL + '/mytextfile.txt', '', -1, -1 );
But this one displays it in a window?
Code: WebApplication.NewWindow( webapplication.ApplicationURL + '/mytextfile.txt', '', -1, -1, [] );
Many thanks in anticipation
Ian.
|
|
|
| Fatal Error Message |
|
Posted by: tultalk - 09-06-2018, 05:24 PM - Forum: Indy
- Replies (6)
|
 |
Error Message when I opened an old project D5
Indy Unit IdThreadMgr was compiled with a different version of IdException.EIdException
How do i determine the nature of this problem and how ro fix it?
Different Indy version?
Thanks
|
|
|
| Running external applicati from inside Delphi+Intraweb + Bootstrap code |
|
Posted by: SergioFeitoza - 09-06-2018, 10:35 AM - Forum: IntraWeb General Discussion
- Replies (8)
|
 |
I need help. In this link there is a code (working) that I did and possibly can be useful to people testing solutions http://www.cognitor.com.br/SWWWtest.zip (delphi + html / bootstrap ***). It has a simple menu and no database.
I made a site to be able to run, from inside my Delphi -IW-Bootstrap site, some electric calculations software that I did for PCs in Delphi. The exe files will stay in the same site. I need to run the EXE because to convert the calculation programs to IW would take about 6 months of work (they are complex and have many screens). I already know that the solution works because I tested here at home using Notepad, the Windows calculator and others.
It works but the problem is that I cannot make the Notepad screen to stay within the form of my application. They run but appears outside the form. I know that the problem is in the RunExternalSoft procedure that is in the NotepadT form. That's why I commented the line Winapi.Windows.SetParent line (fAppHandle, ????. Handle);
The help I need is for someone to correct the procedure so that the executable appears inside the form (blue part in figure http://www.cognitor.com.br/telasWWWtest.png )
If anyone can help me use the following sequence:
a) Download and unzip the SWWWtest.zip file. On my PC the directory is in C: \ SWWWtest
b) Compile the file TestingSite.dproj (I did it with Delphi Seattle)
c) When the screen appears there will be the left side menu with (Home, NotepadT and CalcT)
d) Click NotepadT and will appear a screen with an "open Software" button
e) Click on it and the Notepad will appear, but it will be running outside the form.
f) I want to correct this so that it appears in the blue area
g) Then click on the menu in CalcT. I need also help to know how to close NotepadT before opening CalcT. I do not know how to do this
h) Then CalcT will open but also out of the form. I need to correct
(***) to look better just copy the bower_components directory (from the course) into the wwwroot subdirectory. I retired so that this zipped file was light
thanks in advance
|
|
|
| java array of byte and array of shorts to delphi |
|
Posted by: Madammar - 09-05-2018, 06:54 PM - Forum: Indy
- Replies (3)
|
 |
i have this array of byte variable in java
Code: Private stable() As Byte = Array As Byte _
( 1, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 )
how to write the same in delphi ?
also array of shorts
Code: Private btable() As Short = Array As Short ( -5504, -5248, -6016, -5760, -4480, -4224, -4992, -4736, -7552, -7296, -8064, -7808, -6528, -6272, -7040, -6784, -2752, -2624, -3008, -2880, -2240, -2112, -2496, -2368, -3776, -3648, -4032, -3904, -3264, -3136, -3520, -3392, -22016, -20992, -24064, -23040, -17920, -16896, -19968, -18944, -30208, -29184, -32256, -31232, -26112, -25088, -28160, -27136, -11008, -10496, -12032, -11520, -8960, -8448, -9984, -9472, -15104, -14592, -16128, -15616, -13056, -12544, -14080, -13568, -344, -328, -376, _
-360, -280, -264, -312, -296, -472, -456, -504, -488, -408, -392, -440, -424, -88, -72, -120, -104, -24, -8, -56, -40, -216, -200, -248, -232, -152, -136, -184, -168, -1376, -1312, -1504, -1440, -1120, -1056, -1248, -1184, -1888, -1824, -2016, -1952, -1632, -1568, -1760, -1696, -688, -656, -752, -720, -560, -528, -624, -592, -944, -912, -1008, -976, -816, -784, -880, -848, 5504, 5248, 6016, 5760, 4480, 4224, 4992, 4736, 7552, 7296, 8064, 7808, 6528, 6272, 7040, 6784, 2752, 2624, _
3008, 2880, 2240, 2112, 2496, 2368, 3776, 3648, 4032, 3904, 3264, 3136, 3520, 3392, 22016, 20992, 24064, 23040, 17920, 16896, 19968, 18944, 30208, 29184, 32256, 31232, 26112, 25088, 28160, 27136, 11008, 10496, 12032, 11520, 8960, 8448, 9984, 9472, 15104, 14592, 16128, 15616, 13056, 12544, 14080, 13568, 344, 328, 376, 360, 280, 264, 312, 296, 472, 456, 504, 488, 408, 392, 440, 424, 88, 72, 120, 104, 24, 8, 56, 40, 216, 200, 248, 232, 152, 136, 184, 168, 1376, 1312, 1504, 1440, 1120, _
1056, 1248, 1184, 1888, 1824, 2016, 1952, 1632, 1568, 1760, 1696, 688, 656, 752, 720, 560, 528, 624, 592, 944, 912, 1008, 976, 816, 784, 880, 848 )
how to make the same variables in delphi ?
|
|
|
| IW Library deployment like aspx is working? |
|
Posted by: sergey@txtmobiz.com - 09-05-2018, 12:42 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Hi,
IW Library deployment like aspx is working normally?
Just my experience. After tries with Azure I made a decision to deploy using IW Library like ASPX. I created Azure VM with 2012 server, installed everything according these instructions - http://docs.atozed.com/docs.dll/deployme...yment.html
Finally I got main main page, opened in the browser, but that's all:
- After F5 - page is refreshing infinite time. I can make the app working only after restarting IIS!
- If I'm opening the app in other browser - the same situation - page is loading infinite time;
- Naigation between forms (like create and show other form) - dosn't work... But maybe this issue correlated with the first one;
Maybe I selected wrong deployment again?
|
|
|
|