Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 86,283
» Latest member: vn888netcom
» Forum threads: 2,413
» Forum posts: 11,335

Full Statistics

Online Users
There are currently 440 online users.
» 3 Member(s) | 434 Guest(s)
Applebot, Bing, Google, 79kingstech, nowgoalbar, vn888netcom

Latest Threads
Bootstrap5
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
31 minutes ago
» Replies: 2
» Views: 515
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
55 minutes ago
» Replies: 1
» Views: 158
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
1 hour ago
» Replies: 5
» Views: 4,382
Need Help Integrating Mic...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
1 hour ago
» Replies: 1
» Views: 141
Projeto Intraweb
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
1 hour ago
» Replies: 1
» Views: 188
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
1 hour ago
» Replies: 7
» Views: 790
OpenSSL and concurrent re...
Forum: Indy
Last Post: kbriggs
07-05-2026, 02:41 PM
» Replies: 5
» Views: 466
Intraweb + Lazarus
Forum: IntraWeb Dúvidas Gerais
Last Post: vonirpereira
07-03-2026, 06:35 PM
» Replies: 0
» Views: 115
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: Gregory_Twedt
06-24-2026, 04:40 AM
» Replies: 5
» Views: 944
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 172

 
  closing browser...
Posted by: Mikey29 - 05-30-2018, 10:15 PM - Forum: IntraWeb General Discussion - Replies (4)

Hello,

How to close user session if the user close the browser…

With best regards,
Mikey

Print this item

  Button Back
Posted by: l.Restif - 05-30-2018, 12:03 PM - Forum: IntraWeb General Discussion - No Replies

Hi,

how is it possible to use the back button in an intraweb application?
Is there a way to tell the serveur controller via an ajax callback which form is the current when the last page is reloaded from the cache?
The current page has to correspond to the current form in the intraweb session.

Print this item

  IW14: Anchored and Invisible components don't get updated positions (left, right)
Posted by: Per Danielsson - 05-30-2018, 11:27 AM - Forum: IntraWeb General Discussion - Replies (1)

Support Date:     2018-May-29

IDE Platform:     Embarcadero RAD Studio 10 Tokyo
IDE Version:      Update 3
Browser Name:     Microsoft Internet Explorer
Browser Version:  11.0
Web API Name:     Atozed Intraweb
Web API Version:  14.2.7
Operating System: Microsoft Windows 10 Pro (64-bit)
Support Type:     MAJOR FAILURE / DESIGN PROBLEM
Support Severity: COMMONLY ENCOUNTERED PROBLEM


IW14: Anchored and Invisible components don't get updated positions (left, right)

If I have a form that contain a control achored to the right (or bottom) side of a form (or container) and that control is invisible, the control will not get updated position when I resize the web browser window.

This is a faulty shift in behaviour from how it worked in IW 14.0.63 (that is the previous version of your product that we used).

I attach a test application where you can see the faulty behaviour:

o Compile and run the test application.
o Shrink the size of the web browser window size.
o Notice that the web browser display scrollbars when the button INVISIBLE does not fit the web browser window.
o Uncheck the check box RENDER INVISIBLE CONTROLS.
o Shrink the size of the web browser window size.
o Now everything works ok (ie. the visible controls honor their anchors.

I would like that the position of invisible controls are updated if they have been rendered in HTML.

Any suggestions on this ?



Attached Files
.zip   Intraweb_Support_60.zip (Size: 7.17 KB / Downloads: 2)
Print this item

  Please solve IW demo pages, its blocked by Google
Posted by: Kristy - 05-30-2018, 06:25 AM - Forum: IntraWeb General Discussion - Replies (2)

https://archive.codeplex.com/?p=iwdemos

Print this item

  Delphi Language Progression Suggestions
Posted by: kudzu - 05-28-2018, 09:14 PM - Forum: Delphi General Discussion - Replies (1)

Since ~Delphi 2010 we have had generics, attributes, iterators, and some other compiler niceties. While many of the features we would like are difficult to implement, I believe that three simple language features are long overdue....

https://www.kudzuworld.com/2018/05/28/de...gfeatures/

Print this item

  IWCanvas
Posted by: UdoBausch - 05-28-2018, 09:23 AM - Forum: IntraWeb General Discussion - Replies (4)

I want to implement some grafic-objects in my IntraWeb-Application
Last year you announced a IWCanvas component in V14 In my distribution of V14.2.7 I am missing this
 
– using this it will be perfect for me ( - I made some handcrafted examples - )
 
But I could not place it in the <Body>-part of the IWForm (extra code I can place in IWForm.JavaScript, but this appears out of HTML-<Body>, but it is usable also)
 
For me IWCanvas only needs to have the following the following properties:
Name:String
FiendlyName:String
Height:String
Width:String
ContextName:String
JavaScript: TStringList
If it is possible to place it in a IWRegion we can use this to define
Left
Top
 
 
IWCanvas.RenderHTML should create
 

<canvas id="RainbowStrokeStyleSample1" width=320px height=120px> </canvas>
<script> //JavaScript
  var context = document.getElementById('RainbowStrokeStyleSample1').getContext('2d');
  // 1. set strokeStyle to a linear gradient value
  var rainbowGradient = context.createLinearGradient (0, 60, 320, 60);
  rainbowGradient.addColorStop (0,    'red');
  rainbowGradient.addColorStop (0.25, 'yellow');
  rainbowGradient.addColorStop (0.5,  'green');
  rainbowGradient.addColorStop (0.75, 'blue');
  rainbowGradient.addColorStop (1,    'violet');
  context.strokeStyle = rainbowGradient;
  // 2. draw a kind of half cirlce on the left           
  context.beginPath();
  context.moveTo (60, 10);
  context.lineTo (60, 110);
  context.bezierCurveTo (0, 110, 0, 10, 60, 10);
  context.stroke();
  context.closePath();
  // 3. draw a rectangle on the right top
  context.strokeRect (80, 10, 230, 30);
  // 4. set the text font and write 'Hello!' on the right bottom of the canvas
  context.font = '60pt sans-serif';
  context.strokeText ('Hello!', 80, 110); 
</script>
 
Currently I need no Events for IWCanvas – but if events are inherited it can be useful too
 
I think it should not be not very complicated for you to implement IWCanvas in IntraWEB.V14
 
Please give me feedback about this proposal to enable me to plan my next steps
  • If you need some tester – I am willing to do this job
  •  
Or do you have an idea to solve this in an alternative way ?
 
Thankyou in advance

Print this item

  Safari: No Cookies Notification
Posted by: AllBars - 05-25-2018, 07:27 PM - Forum: IntraWeb General Discussion - Replies (1)

There is something about web development that makes explaining everything so difficult. 

The problem I have is this:

I have a wix website (allbars.net) which embeds my intraweb app in (presumably) an iFrame - It is just a link to the url of the intraweb app (https://allbarsbooking.net

In general this works well, in Chrome, Firefox and Edge, going to allbars.net/Booking my app shows as expected.

In safari on mac, iPad, iPhone however it just shows the blank wix page.

The reason is that Safari defaults to 'cookies only for pages I visit' and as the intraweb app is embedded, Safari doesn't think I haven't explicitly visited it, hence, no cookies for you.

If I go directly to https://allbarsbooking.net it works and subsequently visiting  allbars.net/Booking also works fine

In the app I am seeing the "Cookies are disabled in your browser" exception, and I can trap and handle this. But Intraweb isn't returning anything to the browser to indicate that there is something wrong, so I can't work out how to advise the safari user of what to do to fix the problem.

I had thought to just put text on the wix page background, but the Intraweb app is mostly transparent, so doesn't hide the text.

Any ideas?

Print this item

  IWJclDebug and an empty stack trace
Posted by: jeroen.rottink - 05-25-2018, 01:26 PM - Forum: IntraWeb General Discussion - Replies (1)

I had an issue where using the integrated IW ExceptionLogger would not print the stack trace. 
To include the debug information I use a Jcl tool called MakeJclDbg.exe (in jcl\examples\windows\debug\tools). 
This tool takes a *.map converts it to *.jdbg format with the option to include this info in the executable. 
Big plus is that the resulting *.exe is a lot smaller than including the debug information from the Delphi compiler (TD32).
When I choose to include this info in the *.exe as a resource, the stack trace is empty.

Origin of this issue is a small error in IWJclDebug.

Code:
const
 JclDbgDataSignature = $4742444A; // JDBG
 JclDbgDataResName   = AnsiString('IWJclDebug'); // do not localize

But this should be kept 'JCLDEBUG' like in the original code. The resname is used to locate the resource holding the debug data.


Using IW14.1.3 with Delphi 10.1 Berlin so maybe its already fixed in the meantime.

Kind regards,
Jeroen Röttink

Print this item

  Any Chance to Use Bitmaps
Posted by: kernel32 - 05-24-2018, 06:34 AM - Forum: COSMOS - Replies (1)

Hello everyone,
Just for hobby I'm working on Cosmos. I couldn't find any tutorial like any kind of document for printing bitmap images on cosmos screen. 
Is there no way to print bitmap *.bmp files or If there is a way to do it please give me some document. 
Thank you,

Print this item

  Print ...
Posted by: Mikey29 - 05-23-2018, 10:00 AM - Forum: IntraWeb General Discussion - Replies (2)

Hello,

Where to found a sample showing me how to place a print button on a form ? Please.

I also want to print only a Iwregion… 

Big thank you for any help.

With best regards,
Mikey

Print this item