| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Fabrizio Conti
07-14-2026, 06:27 AM
» Replies: 6
» Views: 768
|
Need Help Integrating Mic...
Forum: IntraWeb General Discussion
Last Post: capheny
07-07-2026, 06:43 AM
» Replies: 0
» Views: 130
|
OpenSSL and concurrent re...
Forum: Indy
Last Post: kbriggs
07-05-2026, 02:41 PM
» Replies: 5
» Views: 442
|
Projeto Intraweb
Forum: IntraWeb General Discussion
Last Post: vonirpereira
07-03-2026, 06:51 PM
» Replies: 0
» Views: 179
|
Intraweb + Lazarus
Forum: IntraWeb Dúvidas Gerais
Last Post: vonirpereira
07-03-2026, 06:35 PM
» Replies: 0
» Views: 113
|
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
07-01-2026, 12:19 AM
» Replies: 4
» Views: 4,374
|
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: Gustave
06-30-2026, 09:00 PM
» Replies: 0
» Views: 152
|
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: Gregory_Twedt
06-24-2026, 04:40 AM
» Replies: 5
» Views: 921
|
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 170
|
TIWjQDBGrid changing UI
Forum: IntraWeb General Discussion
Last Post: BoostedCruiser
06-08-2026, 02:02 AM
» Replies: 36
» Views: 71,333
|
|
|
Delphi 7 and Indy 9.0 Error Connecting SSL |
|
Posted by: jerltlim - 02-24-2020, 05:00 AM - Forum: Indy
- Replies (1)
|
 |
I'm using TIdHTTP component to execute GET command, resulting in above error message:
Code: Request.ContentType := 'text/html';
Request.CustomHeader.Values['Authorization'] := 'Basic '+ TIdEncoderMIME.EncodeString(SPIAKey)+':'TIdEncoderMIME.EncodeString(SAPISecret);
TIdSSLIOHHandlerSocket
Method - sslvSSLv2
Can someone help me on this?
I try to upgraded to Indy version 10 but I cannot find TIdHTTP, what should I do?
|
|
|
| TIWGrid.cell[0,0] disappears in OnAsyncTimer |
|
Posted by: MrSpock - 02-23-2020, 05:34 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
I can only one time assign
TIWGrid1.Cell[0,0].Control:= TIWImage1;
in form OnCreate
Another assignment to
TIWGrid1.Cell[0,0].Control
or even to any other cell
makes the cell [0,0] disappear
The bug is only in OnAsyncTimer
but it is all right (does not disappear) in OnTimer
|
|
|
| Using jSignature in Intraweb and storing the signature data in an async event |
|
Posted by: jeroen.rottink - 02-19-2020, 10:42 AM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
I am integrating https://github.com/brinley/jSignature to make a signature in a html page.
It's to sign a work order by a customer much like parcel delivery services uses it.
Integrating and using the library works. Now I would like to store the signature data in the database. For this I need to send the signature data to the server. First idea was to use
Code: function sendSignature() {
var $sigdiv = $('#signature');
var signatureData = $sigdiv.jSignature("getData");
ajaxCall("StoreSignature", "&signature="+signatureData, false);
}
The url gets too long this way. Long question short: How do I get the signature data to the server? Can I POST the data? Is there some example for this?
PS I don't mean to get the data in a compressed format like image/jSignature;base30, another export format.
|
|
|
| Help needed with listbox |
|
Posted by: SorenJensen - 02-16-2020, 02:59 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hi All,
I have a problem with an Iwlistbox. I do not seem to react to either of the OnChange events, when I add items to it or delete items from it.
I have two listboxes next to each other and a button in between. When I (async)click the button it moves the selected item in the left list to the right list, by adding the line to the right list and deleting it from the left list.
In that proces I say both lists are changed, but neither OnChange not OnAsyncChange of any of the listboxes are fired.
What am I doing wrong ?
I'm pretty sure I once saw a demo with this functionallity, but can't seem to find it now. Any body know of an example I can chech out ?
Regards
Soren
|
|
|
| TiwEdit component design issue. |
|
Posted by: SorenJensen - 02-16-2020, 01:54 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Hi All,
When I put on a TIwEdit on a form, at design, it is higher than usual. 32 pixels in stead of the usual 21. Is that only on my installation and if, how do I set it back to 21 ?
If it is a general change, I wonder why it has been changed and if that is the future size to get used to. NB! I'm still on 15.1.12.
regards
Soren
|
|
|
| Strange problem: Sync/Async issue ? |
|
Posted by: SorenJensen - 02-13-2020, 09:05 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hi Guys,
I have a strange problems I hope you can help me with. I'm might be looking in the wrong place, but so far I have not been able to pinpoint the actual reason for the behavior:
I have a simple form with 3 IWEdit fields and a button. All three are standard text (not using any of the new options yet), Field 1 has an OnExit event, and field 1 to 3 has one (sharing the same) OnAsyncKeyDown event. NB! In the OnAsyncKeyDown, I check if EventParams['which'] is '9' in which case I exit the event right away. If not, I set the background color of the fields 2 and 3 to ClWebWhite. Taborder is one-two-three downwards.
Field 1: Item number: Onexit event: Check table for item. If item found present name and price in the fields. If not found, show empty fields.
Field 2: Item name
Field 3: Price
Button 1: Check contents of fields: if Ok, try to save (Insert or Update) Item. If not ok, report an error and set background color of the erroneous field to clWebYellow.
AND I have JavaScript on the form looking for certain Keykombinations. If F10, do the same as clicking the button with the mouse. It works pretty well.
Simple in a way, yet with problems:
When I tab though the fields, clicking the button with the mouse everything is working as expected. Errors are reported with a WebYellow color and next keydown, typically in the same field, resets the color to WebWhite.
When pressing F10 on the other hand, everything is being tested as if I clicked the button with the mouse, and if an error, the erroneous field is turned WebYellow. This time however, the keydown event, setting the color to WebWhite, is no longer working. Test shows the event is being handled and it is setting the background color of the field to webwhite, but regardless, the Yellow color stays. It's being told to change from Yellow to white, and act as if it do, but refuses to comply. When leaving the form and returning everything is again working as expected, until I press F10.....
How can I be, that the program is able to set the color to yellow, in the Async state, and to reset it to White, still in the Async state, and as soon as I use the F10, it can set the color to Yellow, but other events cannot change color back to white. Both the Mouse Click on the Button and the F10 makes a round trip to the server to try to save the contents, but it is as if the program looses it's ability to commit actual changes to colors in the async events, after the F10.
NB! If I deliberately perform an OnClick event after return form the F10 event, it appears to work again, so something tells me it an Sync/Async issue but I can't seem to put my finger on where or what. I hope some of you have had similar problems and have found a workaound, or workable solution.
Regards
Soren
After post edit: I forgot to mention I'm using Delphi 10.3.2 with upgrades and IW 15.1.12
|
|
|
| iwfileuploader Drag-Drop count of files |
|
Posted by: PDSBILL - 02-12-2020, 03:22 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Can the IwFileUploader be modfied to capture the number of files that are DRAGGED & DROPPED so that the OnFileUploadSuccess event can
extract from the event params which file number it is processing. Even better would be something like
TotalFileCount=6
CurrentFileNumber=3
This way the program knows when the last file has been uploaded.
Bill B
|
|
|
|