| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 946 online users. » 0 Member(s) | 943 Guest(s) Applebot, Bing, Google
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
1 hour ago
» Replies: 1
» Views: 100
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 97
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 109
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 388
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 196
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 561
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 189
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,128
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 322
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 920
|
|
|
| AV in 64 bit application if using the debugger |
|
Posted by: JuergenS - 06-26-2024, 11:31 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Hi, i could use some help
C++Builder 12.1
INTRAWEB 15.6.2
I have migrated an INTRAWEB application to 64 bit.
If i start the application with debugger the INTRAWEB debug dialog is shown and i can choose a browser to start.
The website is shown but after some action the following exception message is shown in a message box:
Erste Gelegenheit für Exception bei $0000000001A5C1DC.
Exception-Klasse 0xc0000005 mit Meldung 'Exception 0xc0000005 encountered at address 0x1a5c1dc: Access violation reading location 0xffffffffffffffff'.
Prozess XXX.exe (5740)
Nothing happens anymore in the browser window, the server is locked an needs to be terminated.
Call stack:
:0000000001A5C1DC Inthread::TInThreadWithTask::SetTask(Intask::TInTask*)()
:0000000001A5B134 Inschedulerofthread::TInSchedulerOfThread::StartYarn(Inyarn::TInYarn*, Intask::TInTask*)()
:0000000001A5AFCE Incustomtcpserver::TIdListenerThread::Run()()
:0000000001A5B6AB Inthread::TInThread::Execute()()
:0000000001893203 System::Classes::ThreadProc(System::Classes::TThread*)()
:00000000017EE2BD System::ThreadWrapper(void*)()
:00007FF8B97D7344 BaseThreadInitThunk()
:00007FF8BB35CC91 RtlUserThreadStart()
The debug release is working well if i don't start the application with debugger !!!
Regards
Juergen
|
|
|
| IWEDIT added to IWREGION creates additional DIV |
|
Posted by: Moskwa - 06-17-2024, 05:03 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Hello,
I have a problem with IWEDIT added to IWRegion. Intraweb generates that code :
Code: <div aria-label="Wybierz skonto" class="btn-group" id="IWREGION9_FRAFRAME2" role="group">
<label class="btn btn-outline-primary" for="BUTTON_0_FRAFRAME2" id="IWLABEL_0_FRAFRAME2"><span style="font-size:18px">zgodnie</span><br><span style="font-size:14px">z umową</span></label>
<div>
<input autocomplete="off" class="IWEDIT1_FRAFRAME2CSS" id="IWEDIT1_FRAFRAME2" name="IWEDIT1_FRAFRAME2" spellcheck="false" type="text" value="IWEdit1">
</div>
</div>
where before IWEDIT1 I get additional DIV
In design I have only IWREGION9 and IWEDIT1 in it:
any idea why I get additional DIV ?
Marcin
|
|
|
| WebApplication.Form Size Props |
|
Posted by: pvh855 - 06-11-2024, 02:01 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hello.
IW v15.2.69
SessionOptions.UniqueURL = True
On MainForm.OnCreate event, im reading WebApplication.FormWidth and WebApplication.FormHeight props.
if i start my app by /$/start - all is good, props are filled.
if i start my app by root '/' request - app started, but props are empty (their values is -1)
Any advice how to fix that?
Thanks
|
|
|
| Page position |
|
Posted by: rburton - 06-11-2024, 09:20 AM - Forum: IntraWeb General Discussion
- No Replies
|
 |
I have a two form application, form 1 is a list with each item having a link, when I click the link it opens the second form to show a detail view. This all works fine except if I scroll down the list on form 1 and open the detail view, on hiding the detail form to return to the list it refreshes the page and returns the list back to the top rather than leaving the list in the same position as i originally left it.
Does anyone know way around this. Thank you
Richard
|
|
|
| AddStartHandler - how to bypass to an IWForm without creating a Session |
|
Posted by: medzoom - 06-08-2024, 07:30 AM - Forum: IntraWeb General Discussion
- No Replies
|
 |
I use the code from >Alexandre MAchado> Embrace the backbutton for my program with special Login-funtion, so everyone must take the login-credentials - even if he uses the back/Forwardbutton or just types in the hole URL.
But I want to make one IWForm accessable to everyone - so bypassed by the AddStartHandler?
Quote:The first one THandlers.AddStartHandler(), creates a new content handler for this form and sets it as the application’s Start handler, i.e. every new request that doesn’t have an associated session will be redirected to this handler. In practice, it means that every new request that creates a new session will be redirected to the MainForm, regardless of the URL. This feature is ideal to be used in applications that require a login, for instance.
How do I make an expecption to the function of "AddStartHandler"?
Code: // this doesnt work???
THandlers.Add('weather_info2', TContentForm.Create(TIWForm5));
Here is the code in the main-client-form.
Code: initialization
TIWForm1.SetAsMainForm;
// SetURL creates a content handler for this form and set's the URL for it according to the parameters
// In this case, I want the URL to be http://<domain>/MainForm:
TIWForm1.SetURL('', 'MainForm');
// I'm also creating 2 content handlers that I want to redirect to this same form:
// The StartHandler (i.e. it will catch all requests that create a new session
THandlers.AddStartHandler('', 'MainForm', TContentForm.Create(TIWForm1));
// And the root handler which will catch requests to the root address of your app
THandlers.AddRootHandler('', 'MainForm', TContentForm.Create(TIWForm1));
// this doesnt work???
THandlers.Add('weather_info2', TContentForm.Create(TIWForm5));
end.
|
|
|
| iwSelect and ItemsHaveValues Error |
|
Posted by: joelcc - 06-07-2024, 03:38 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
When I try and setup an iwSelect using soServerSide with ItemsHaveValues, when populating the list I get the following error
"The results could not be loaded"
Can you please fix/enhance this?
This is with iw 15.4.0
|
|
|
|