Search found 624 matches

by Karl-Heinz
Tue Dec 06, 2022 6:25 am
Forum: Forum Italiano
Topic: ReportPro2, English and translation: now ok!
Replies: 61
Views: 19087

INDEX ON, again :-)

<r>Hi Gian,<br/> <br/> in the meantime the <B><s>[b]</s>INDEX ON <key> TAG <order><e>[/b]</e></B> command became part of the include file dbcmd.xh. I don´t know if it´s a bug, but to make e.g. the DESCENDING clause work it seems that the "[" and "]" chars must be removed from the OrdCondSet() result...
by Karl-Heinz
Thu Nov 10, 2022 2:51 pm
Forum: VO & Vulcan
Topic: Bringing a VO window to the top
Replies: 10
Views: 2451

Bringing a VO window to the top

<r>Hi John,<br/> <br/> There must be something else going wrong on your side. As a test i created a Datawindow with two Pushbuttons. Each time i open a new Shell window.the window becomes the Top window - no matter if i´m using VO or X#.<br/> <CODE><s>[code]</s>oWin := CreateInstance(symShell, SELF)...
by Karl-Heinz
Wed Nov 09, 2022 5:34 pm
Forum: VO & Vulcan
Topic: Bringing a VO window to the top
Replies: 10
Views: 2451

Bringing a VO window to the top

<r><QUOTE author="JohnBonnett88 post=24376 userid=6661"><s>[quote="JohnBonnett88 post=24376 userid=6661"]</s> <br/> The relevant code, exported from VO, seems to be<br/> <br/> oWin := CreateInstance(symShell, SELF)<br/> BringWindowToTop(oWin:Handle()) <e>[/quote]</e></QUOTE> I doubt that the window ...
by Karl-Heinz
Tue Oct 25, 2022 8:33 am
Forum: VO & Vulcan
Topic: DateTimePicker change available in EditFocusChange?
Replies: 14
Views: 2625

DateTimePicker change available in EditFocusChange?

<r>Hi Jonathan,<br/> <br/> you may not add my posted "Class control" snippets to your app! I only posted this code, which is part of the VO Gui source code, to describe the message flow. All you need is your already created method: <br/> <CODE><s>[code]</s>METHOD ControlFocusChange(oControlFocusChan...
by Karl-Heinz
Fri Oct 21, 2022 6:08 am
Forum: VO & Vulcan
Topic: DateTimePicker change available in EditFocusChange?
Replies: 14
Views: 2625

DateTimePicker change available in EditFocusChange?

<r>Robert & Jonathan,<br/> <br/> i think there is no need to overwrite ControlNotify(). The Dispatch() in the control.prg handles WM_SETFOCUS / WM_KILLFOCUS and calls SELF:FocusChange(), which finally triggers oParent:ControlFocusChange().<br/> <CODE><s>[code]</s>METHOD Dispatch(oEvent) CLASS Co...
by Karl-Heinz
Mon Sep 05, 2022 3:47 pm
Forum: Deutsches Forum
Topic: Neues Projekt mit ListView und Internet
Replies: 3
Views: 1458

Neues Projekt mit ListView und Internet

<t>Hallo Franz,<br/> <br/> Die Möglichkeit die LV-Spalten einzufrieren hatte ich doch bereits vor einigen Wochen - noch vor dem Header coloring - gepostet ??????<br/> <br/> Egal, zwischenzeitlich habe ich das DLGLVHeaderColors.aef noch etwas erweitert und dort gerade eben noch das Einfrieren der Spa...
by Karl-Heinz
Mon Sep 05, 2022 3:42 pm
Forum: Deutsches Forum
Topic: ListView Spaltenüberschrift färben
Replies: 10
Views: 2569

ListView Spaltenüberschrift färben

<r>Da - wie bereits erwähnt - während der Header Customdraw-Benachrichtigungen nie der status CDIS_HOT übermittelt wird habe ich als workaround die LV-Methode __IsItemHot (dwItem) erstellt. Wie der Name andeutet gibt die Methode nur dann .t. zurück wenn sich die - nicht gedrückte - Maus über einem b...
by Karl-Heinz
Mon Sep 05, 2022 10:46 am
Forum: VO & Vulcan
Topic: German Umlaute üöä ÜÖÄ
Replies: 21
Views: 3857

German Umlaute üöä ÜÖÄ

<t>Hi Robert,<br/> <br/> i created a VO StdMDIApp and added the settings Kai mentioned. Because the VO docs say that setansi(false) doesn t do any automatic conversion i m wondering how its possible that the VO Databrowser shows "1/2 Hähnchen" instead of "1/2 Hõhnchen". I have also tried Ansi2Oem() ...
by Karl-Heinz
Mon Sep 05, 2022 10:14 am
Forum: VO & Vulcan
Topic: German Umlaute üöä ÜÖÄ
Replies: 21
Views: 3857

German Umlaute üöä ÜÖÄ

<r>Hi Kai,<br/> <br/> The codepage of your Artikel.dbf is 850. But Robert wants to know the OEM codepage on your machine. Just add both lines to one of your VO apps and let us know the results.<br/> <CODE><s>[code]</s>? GetOEMCP() // OEM code page 850 ? GetACP() // ANSI code page 1252<e>[/code]</e><...
by Karl-Heinz
Sun Aug 14, 2022 9:29 am
Forum: Deutsches Forum
Topic: ListView Spaltenüberschrift färben
Replies: 10
Views: 2569

ListView Spaltenüberschrift färben

<r>so, nun funktioniert das themed customdraw ( siehe aef im Anhang )<br/> <br/> Das Zeichnen findet in der Dispatch() der LV Klasse statt - wo ich auch noch ein paar zusätzliche Dinge dokumentiert habe. Muss ein HeaderItem gezeichnet werden sieht der Ablauf so aus:<br/> <br/> - OpenThemeData() <br/...