Search found 14 matches

by Luc
Thu May 15, 2025 3:07 pm
Forum: Deutsches Forum
Topic: Windows 11 Drucker auslesen
Replies: 26
Views: 20808

Re: Windows 11 Drucker auslesen

Hi Martin,

I marked my getprinters code (reading from wini.ini) with
// this will actually read in the registry: HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Devices

so you might check and read it from there directly.

I did not check on win11 yet,

Luc
by Luc
Thu Oct 24, 2024 10:42 am
Forum: Product
Topic: SetAnsi(false) not needed in X# with ADS?
Replies: 9
Views: 4699

Re: SetAnsi(false) not needed in X# with ADS?

Hi Dick, Wolfgang,

Just as info:

In the VO program I had:
SetAnsi(FALSE)
SetCollation(#CLIPPER)


in x# I use:
SetAnsi(False)
SetCollation(#ordinal)

Only with the #ordinal the use of accents (and the euro sign) is correct in X#. The same record shows ok in data architect, vo and x#.

I use ADS ...
by Luc
Tue Sep 24, 2024 1:13 pm
Forum: Product
Topic: Session proposals for the X# Summit
Replies: 20
Views: 11634

Re: Session proposals for the X# Summit

Hi Chris,

This is my list, in order of importance,

14. From DBF to SQL
13. From VOGUI to XGUI (VOGUI compatible classes based on Windows.Forms)
10. Git for Dummies
16. Accessing a web service from plain X# and combining it with a VO GUI application (using Hubspot as sample)
15. Using your own ...
by Luc
Thu May 23, 2024 10:52 am
Forum: Product
Topic: Setting the font of selected text in a RichEdit control
Replies: 4
Views: 2218

Re: Setting the font of selected text in a RichEdit control

Jan,


I have a method doSetBold on an inherited RichEdit like:

CLASS LMORichEdit INHERIT RichEdit

METHOD DOSetBold() CLASS LMORichEdit
LOCAL oFont AS font

INSPECTDEBUG "LMORichEdit set bold"

OFont := SELF:Controlfont // LM 28/1/2022
OFont:bold := TRUE
SELF:ControlFont := oFont // LM 28/1 ...
by Luc
Thu Apr 18, 2024 7:57 pm
Forum: Product
Topic: dbserver editor access and assigns
Replies: 3
Views: 1831

Re: dbserver editor access and assigns

Hi Chris,

thanks a lot,

Luc
by Luc
Wed Apr 17, 2024 9:57 am
Forum: Product
Topic: dbserver editor access and assigns
Replies: 3
Views: 1831

dbserver editor access and assigns

Chris,

I noticed that the access and assigns are not created any more from modifications done in the dbserver editor in x#.
The onces from the vo transporter are still there.

Is this intentional or is there a way to enable this ?


it gives a warning

Warning XS9094 Type 'HERSTEL' does not have a ...
by Luc
Mon Apr 15, 2024 1:20 pm
Forum: 3rd party products
Topic: BBrowser OwnerDrawValues BarCharts not working after X# Update 2.17 -> 2.18
Replies: 9
Views: 13607

Re: BBrowser OwnerDrawValues BarCharts not working after X# Update 2.17 -> 2.18

Hallo Frank,

You can avoid it if you can ommit putting a fieldspec to the datacolumn. Maybe not directly possible in the bbrowser sample, but in your own code.

I examined it in the bBrowser sdk and it goes wrong in the drawcell method on

// Spaltenwert zeichnen
if symValueView=#Text .or ...
by Luc
Mon Apr 15, 2024 9:09 am
Forum: 3rd party products
Topic: BBrowser OwnerDrawValues BarCharts not working after X# Update 2.17 -> 2.18
Replies: 9
Views: 13607

Re: BBrowser OwnerDrawValues BarCharts not working after X# Update 2.17 -> 2.18

Frank,

check my post on "fieldspec not returning correct value"
It is the same issue. I raised it with Chris but did not get a reply yet.

grtz,

Luc
by Luc
Fri Mar 29, 2024 10:23 am
Forum: VO & Vulcan
Topic: VO 2740 OLEAutoObject works with Excel 64bit WHY?
Replies: 7
Views: 3676

Re: VO 2740 OLEAutoObject works with Excel 64bit WHY?

Hi Wolfgang,

I struggled with this too in VO, thus limiting the outlook installation for users to the 32bit version.

However, in #x, using the SimpleMapi library (package https://github.com/PandaWood/Simple-MAPI.NET), much to my suprise,
I'm able to send mails using MAPI to outlook 365, 64-bit ...
by Luc
Wed Feb 28, 2024 9:02 am
Forum: Product
Topic: CreateOrder
Replies: 6
Views: 2866

Re: CreateOrder

Horst,
It works as in VO, same code:
It depends on what you want to do and the rdd driver you are using, expecting a single bag (ntx, idx) or multi bag index, cdx or adi.

In this sample, the indexname is either the same as the dbfname for multi bags, or a combination of the dbfname and the tagname ...