- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hello!
Does anyone know if it is possible to change the color of the text in a dialogbox? I am using a Windows-projecttype. I would like to change the color of the text depending on the calculationresult.
Does anyone know if it is possible to change the color of the text in a dialogbox? I am using a Windows-projecttype. I would like to change the color of the text depending on the calculationresult.
コピーされたリンク
6 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Is it created with DialogBox(Param) or with DLGMODAL?
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hi Jugoslav,
and thank you very much for helping me. I downloaded your testfile, and I tried to include your XFLOGM-file in my project, but I got a linking error. Have I done anything wrong?
error LNK2001: unresolved external symbol _DLGSETTITLE@12
and thank you very much for helping me. I downloaded your testfile, and I tried to include your XFLOGM-file in my project, but I got a linking error. Have I done anything wrong?
error LNK2001: unresolved external symbol _DLGSETTITLE@12
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
No you didn't. XFLOGM is based on DFLOGM from CVF 6.0; I didn't manage to keep it up to date with Compaq's additions in the meantime (there aren't many, but DlgSetTitle and ActiveX support are the most important). Thus, the versions "diverged".
Guess I'll add DlgSetTitle support soon; in the meantime, the workaround is to use a dialog-initialization callback:
Sorry for the inconvenience.
Jugoslav
Guess I'll add DlgSetTitle support soon; in the meantime, the workaround is to use a dialog-initialization callback:
i = DlgSetSub(dlg, IDD_DIALOG1, SetDlgTitle) ... subroutine SetDlgTitle(Dlg,ID,iEvent) use dflogm use dfwin, only: SetWindowText type(Dialog):: Dlg integer:: id, iEvent, i i = SetWindowText(Dlg%hWnd, "Your Dialog Title"C) end subroutine SetDlgTitle
Sorry for the inconvenience.
Jugoslav
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Dear Jugoslav,
Thank you very much for your help. It is now working perfectly.
// Jenny
Thank you very much for your help. It is now working perfectly.
// Jenny
