问题标签 [intraweb-10]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
1250 浏览

delphi - 将 IntraWeb IWTreeView 聚焦在选定项目上

我在 IWRegion (ClipRegion:= True) 中有一个相当长的树视图 (IWTreeView),其中一个节点被选中。如何聚焦该节点,使其在渲染后对用户可见?这

到目前为止我所做的:

在德尔福

这会在我的网站上生成(由 Atozed 的 IWTreeView.pas 完成):

渲染后的树仍然会显示最上面的项目。这适用于我测试过的所有浏览器(IE8、Firefox、Chrome)。

0 投票
3 回答
1652 浏览

delphi - IntraWeb / VCL for Web 的资源

我知道 atozed.intraweb.* 上的新闻组以及在线手册pdf 手册Bob Swart 的 IntraWeb 书籍spellbook

其中一些资源已经过时,有些则相当简约。是否有其他可用资源?

这似乎更加普遍,因为由于最新 Skype 版本中缺少公共聊天,聊天室不再可用。(不过,我不知道聊天室的帮助质量如何。)

0 投票
1 回答
982 浏览

delphi - 从父级而不是直接从 TIWAppForm 派生 IntraWeb 表单 - IDE 中的错误

我的应用程序中有来自共同祖先的表单,例如:

TAtFormBaseIW = 类(TIWAppForm)和 TAtFormExplorerIW = 类(TAtFormBaseIW)

这适用于某些形式,但不适用于其他形式。

让我做一个大胆的猜测:它似乎适用于在 IW 10 之前在 Delphi 中创建的所有表单,但不适用于我使用 IW 10 创建的表单。新表单会发生什么情况:HWenever 我想将它们加载到 IDE 中,它们被解释为 win32 表单,一些属性被忽略(所有典型的 win32 属性,例如 ClientWidth),并且我被告知我不能将 IW 组件放在这些表单上。

使它们成为 TIWAppForm 的直接后代,保存它们并使用普通文本编辑器将它们改回工作。重新编译后,它们在浏览器中显示良好,但在 IDE 中却没有。

知道发生了什么吗?

0 投票
2 回答
658 浏览

delphi - Intraweb question about improperly working (radiobutton)?

HI,

I created 4 radiobuttons in a intraweb application. One is checked by default, the rest is not. The belong to the same group called group. (I set the group properly of each TIWradiobutton)

There is twiimage image which has click event. In that click event, I tried to set the radiobuttons. E.g. radiobutton1.checked:=true;

The problem is that this sometimes set the radiobutton and sometimes it does not.

I found a fix by setting the rest of radiobuttons.checked to false. That fixed the problem.

I wonder what I did wrong in the first place when I just used one assignment.

Can you tell me if it is a bug in intraweb or I used radiobutton improperly?

Thanks.

0 投票
1 回答
56 浏览

delphi - 无法从作为服务运行的 appl 访问 SQL 表

我有一个小型测试应用程序,使用 Delphi 10.3.1 作为独立HTTPSYS Intraweb服务制作。它有一个ADOConnection和一个单元1的ADOTableFormShow,我打开连接和表格并读取前10行并将它们添加到列表框中。只是为了看看它是否有效并且是可能的。

当应用程序作为独立运行时HTTPSYS,带有可视化 GUI,它运行良好,但是当我将它编译为服务并将其安装在 sql 服务器或开发机器上时,它会因访问冲突而失败,试图打开桌子。我想这是一个身份验证问题。

我尝试打开与两者的连接Windows Auth,并使用特定的 SQL 登录名,我尝试使用本地系统(默认)和特定的 SQL 帐户运行该服务。

我错过了什么?

特定 SQL 登录,适用于 SSMS。我可以使用它来登录和访问我的表格。

另外,如果我将应用程序创建为 aDLL并将其放在我的 上IIS10,它可以正常工作。