Search found 51 matches
- Tue Nov 08, 2022 7:22 am
- Forum: Product
- Topic: Gradient Fill on VOGUI ShellWindow
- Replies: 3
- Views: 1488
Gradient Fill on VOGUI ShellWindow
<r>Same behaviour here in my x#-application. Vo-application works fine for many, many years.<br/> <br/> This should help:<br/> <CODE><s>[code]</s>METHOD dispatch(uEvent) // class StandardShellWindow LOCAL liRt AS INT LOCAL oEvent AS @@Event oEvent := uEvent DO CASE CASE oEvent:message = WM_PAINT ...
- Mon Nov 07, 2022 7:44 am
- Forum: Product
- Topic: Gradient Fill on VOGUI ShellWindow
- Replies: 3
- Views: 1488
Gradient Fill on VOGUI ShellWindow
Hi Chris,
things are not so easy with the VO-GUI... You can't simply call your drawing stuff from the expose-method. I attach a simple example how this can be done. Hope this helps a little...
Karl
things are not so easy with the VO-GUI... You can't simply call your drawing stuff from the expose-method. I attach a simple example how this can be done. Hope this helps a little...
Karl
- Tue Sep 06, 2022 7:25 am
- Forum: Deutsches Forum
- Topic: Menü Eintrag ändern
- Replies: 6
- Views: 2149
Menü Eintrag ändern
<t>Hallo Frank,<br/> <br/> so ganz grob zusammengenagelt und total ungetestet (in VO, nicht x#):<br/> <br/> CLASS MyBrowser INHERIT bBrowser<br/> <br/> METHOD GetContextMenu(iContextMenu AS INT) AS OBJECT PASCAL CLASS MyBrowser<br/> LOCAL omnuContext AS OBJECT<br/> LOCAL nItems AS DWORD<br/> LOCAL ...
- Wed Jan 19, 2022 8:30 am
- Forum: Product
- Topic: Data conversion array->Object for excel
- Replies: 14
- Views: 3225
Data conversion array->Object for excel
Robert,
that is what I tried first, but thus oRange:Value := o crashes.
Anyway I only asked to learn how to do things better. Everything works fine now so no need to change anything.
that is what I tried first, but thus oRange:Value := o crashes.
Anyway I only asked to learn how to do things better. Everything works fine now so no need to change anything.
- Wed Jan 19, 2022 7:47 am
- Forum: Product
- Topic: Data conversion array->Object for excel
- Replies: 14
- Views: 3225
Data conversion array->Object for excel
meanwhile I saw that you do the same in _ArrayToObjectArray(). So I was not completely wrong...
- Tue Jan 18, 2022 10:37 am
- Forum: Product
- Topic: Data conversion array->Object for excel
- Replies: 14
- Views: 3225
Data conversion array->Object for excel
<t>Hi all,<br/> in VO we could assign a 2-dimensional array to excel.range.value. x# does not like that.<br/> I found a solution to make it work:<br/> <br/> // aData is a 2-dimensional array<br/> nDimX := ALen(aData[1])<br/> nDimY := ALen(aData)<br/> <br/> cOL := "A1"<br/> cUR:= CHR(64+nDimX)+ntrim ...
- Wed Nov 24, 2021 6:38 am
- Forum: Product
- Topic: Resource Compiler
- Replies: 5
- Views: 1839
Resource Compiler
Thanks for the hint, I think I can see what you mean in the ReportPro-source. I'll change my source accordingly
Karl
Karl
- Tue Nov 23, 2021 1:49 pm
- Forum: Product
- Topic: Resource Compiler
- Replies: 5
- Views: 1839
Resource Compiler
<t>Hello Dick,<br/> <br/> I always get<br/> <br/> Fehler RC2104 undefined keyword or key name: MAINVERSION 12-proMOTM D:ProjekteproMO12-proMOTM___Version___.VS_VERSION_INFO.rc 2 <br/> <br/> no matter how I define MAINVERSION.<br/> <br/> #define inside the rc-file seems to work, but I can't refer to ...
- Tue Nov 23, 2021 1:19 pm
- Forum: Product
- Topic: Resource Compiler
- Replies: 5
- Views: 1839
Resource Compiler
<t>Hi all,<br/> in VO we could do something like<br/> <br/> DEFINE MAINVERSION := "4"<br/> DEFINE SUBVERSION := "0"<br/> DEFINE MAINBUILD := "21"<br/> DEFINE SUBBUILD := "12"<br/> <br/> RESOURCE VS_VERSION_INFO VERSIONINFO<br/> FILEVERSION MAINVERSION,SUBVERSION,MAINBUILD,SUBBUILD<br/> ......<br ...
- Thu Sep 09, 2021 7:21 am
- Forum: VO & Vulcan
- Topic: DragDrop from Outlook
- Replies: 7
- Views: 2214
DragDrop from Outlook
I'll have a look at this. But I don't think it will be possible with VOGUI-classes even in x#. Switchin to winforms is no option...