| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 1504 online users. » 1 Member(s) | 1499 Guest(s) Applebot, Bing, Google, Yandex, keobongda360net
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 238
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 194
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 203
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 509
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 259
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 679
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 243
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,295
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 381
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,016
|
|
|
| IWGrid proposals wanted.... |
|
Posted by: SorenJensen - 08-07-2019, 04:25 AM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Hi All,
I'm working on a general search function where users are creating a kind of SQL statement by a visual selection of tables and field names, and putting in limitation criteria's. The idea is to start with no, or just a few limitations, almost showing all of the table in the grid, and then limit the contents by adding limitations to eventually nail down the information being searched for.
Due to the number of rows, I would like to use some kind of paging but don't seem to have that as part of the standard IWGrid.
As I'm not likely to be the first person to need that, I would like to know what others have done to solve that need and / or what you will propose me to look at ?
Regards
Soren
|
|
|
| TIWCheckBox click |
|
Posted by: msgopala - 08-06-2019, 07:06 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Our users are accidentally hitting the space bar when they are on a TIWCheckBox and the checkbox is checked (which they are not intending to). Is there a way to turn this off.
User should be only able to check the checkbox with the enter key or by clicking the checkbox.
Thank You!
|
|
|
| IW 14 and 15 on the same machine ? |
|
Posted by: SorenJensen - 08-06-2019, 11:56 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Hi,
I have Delphi 2010 and Rio 10.3.2 installed on the same machine and have IW15.1.2 installed under Rio.
Can I install 14.2.10 under Delphi 2010 as well ?
Will there be any conflicting, or shared, directories used by the two IW versions ? (i'm thinking c:\users\public maybe).
Regards
Soren
|
|
|
| Mainform update on return from subform ? |
|
Posted by: SorenJensen - 08-03-2019, 07:19 AM - Forum: IntraWeb General Discussion
- Replies (10)
|
 |
Hi,
I have an iwlabel on my mainform, showing contents from a usersession var, which is modified during the life of a subform called from mainform. When releasing the subform and returning to the mainform, I would like to see the new value in the label.
Is it possible to update just the label (like iwlabel.update) or is the only solution to reload the mainform ? And if mainform has to be reloaded, what is the best way to do that ? Clicking a hidden button with DoSubmitValidation set to true ?
Regards
Soren
|
|
|
| Content path for SA HTTPSYS service |
|
Posted by: SorenJensen - 08-02-2019, 12:56 PM - Forum: IntraWeb General Discussion
- Replies (6)
|
 |
Hi,
I would want to use an imagebuttom on my form, and as far as I understand, the images shown on the button, depending on the button's state, are to be placed in the contents path.
When installing a SA as a service, is the contents path then the same path as the executable ?
Regards
Soren
|
|
|
| IW 15.1.2 download issue |
|
Posted by: SorenJensen - 08-02-2019, 04:21 AM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Hi Alexandre,
I see from the tread about IW 15.1.2 is out, that you have a number of issues to solve, so this might not be the most urgent:
When installing the IW 15.1.2, and selecting the "Install IWBootstrap Demos and Resources", the installer downloads 1,91mb out of 9,15mb and then halts with the message "Sorry, the files could not be downloaded. Click Retry.... or cancel...."
Retry do not solve it.
NB! I am running the install as administrator and my viruscheck is off.
Regards
Soren
|
|
|
| IW 15.1.x+ gSessions.Execute Q&A |
|
Posted by: DanBarclay - 08-01-2019, 07:45 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Finally upgrading to 15.1.2, I've got some questions (based on some assumptions) about dealing with session lists.
One thing I do occasionally is rip through the sessions to gather status information, including some app specific data from UserSession.
Questions regarding gSessions.Execute():
1. Is it safe to read data from UserSession? (form xx:=TIWUserSession(LSession.Data).MyValue)
2. Is it safe to write data to UserSession? (form TIWUserSession(LSession.Data).MyFlag:=true)
3. Do I need to lock the session, or does the gSessions.Execute() lock before calling the procedure?
I do know that this kind of procedure works (see snip below), just converting from the SessionList demo, but:
Code: gSessions.Execute(LSessionList[i],
procedure(aSession: TObject)
var
LSession: TIWApplication absolute aSession;
begin
LSession.Lock;
try
xx:=TIWUserSession(LSession.Data).MyValue;
// etc
finally
LSession.Unlock;
end;
end;);
Is this kind of cross session (UserSession access) safe?
Is the session.lock redundant?
I finally got back to work on some IW stuff so am upgrading, but my source access isn't turned on yet so I don't know what's behind the .execute curtain.
Thanks,
Dan
|
|
|
| WebApplication.SendFile question |
|
Posted by: Toni Santa - 07-31-2019, 03:50 PM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Hi,
putting the code in a buttons AsyncClick-event the 4 parameter with the filename is ignored. This can be reproduced with the DownloadFromCache sample project.
Code: procedure TIWForm23.btnDownloadAsyncClick(Sender: TObject;
EventParams: TStringList);
begin
WebApplication.SendFile(gSC.CacheDir + FFileName, True, FContentType, 'SampleFile.txt');
end;
In mine real time app I've code where after a SendFile in the browser appears the hourglass and hangs when the same code is executed from the click-event, but works fine from the AsyncClick-event. But the AsyncClick has above problem ignoring the filename.
IW15.1.0 Evaluation, Delphi Rio 10.3.1
Thx
Toni
|
|
|
|