PxPlus User Forum

Twitter Twitter Twitter

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Thomas Bock

Pages: 1 2 [3] 4 5 6
31
Programming / how to scan GS1 barcodes
« on: April 09, 2020, 04:55:15 AM »
Does someone know how to scan a GS1 barcode with multiple fields?
The scanner seems to insert some control bytes as field separators which are stripped by a multiline control.

32
Wish List / *plus/jrnl/send and *plus/jrnl/apply
« on: March 25, 2020, 04:56:42 AM »
We would like to configure a cleanup logic for deprecated journal files.
Currently these files are never erased. A journal change is a good point of time to look for outdated journals. The apply process can also clean up when it goes idle the first time each day.

33
Nomads / delete items from a listbox with <DEL>
« on: March 19, 2020, 09:52:04 AM »
I'm looking for a way to support the <DEL> key in listboxes.
Many users want to delete items from a list by pressing <DEL> as they can do it in a mail client and explorer.
Is there a way to do this?

34
ODBC / pathnames in SQL selects
« on: February 27, 2020, 09:11:40 AM »
Is there a way to use pathnames in SQL select statements when using the PxPlus ODBC driver and if not, can you add this to the wishlist please?
We use pseudo definitions in the DD, which serve as creation patterns for hundreds of files. Each of them has an iol, but none of them has an own name in the DD.

35
Programming / strange error 11 with KEC
« on: February 20, 2020, 10:02:52 AM »
Today we received an error 11 with the KEC function two times. *ufac reported no errors and after these two crashes everthing worked fine again.
The code below shows what the program basically does. Does someone has an idea what causes this?

Code: [Select]
begin
KEYED "demofile",["PLAN":1:1:24]+[2:1:2]+[3:1:10],["QSKRITERIUM":3:1:10]+[1:1:24]+[2:1:2],["WERKZEUG":20:1:7:"+U"],0,-640,BSZ=3,OPT="X0",SEP=$8A$
open (1)"demofile"
dim rec$:IOLIST QPLAN_NR$:[LEN(SEP,SIZ=24)],SEQUENZ$:[LEN(SEP,SIZ=2)],QSK_NR$:[LEN(SEP,SIZ=10)],BEZ$,TYP$,ZUSTEXT$,SOLL,M_TOLERANZ,P_TOLERANZ,ME_NR$:[LEN(2)],DURCHSCHNITT,PUNKTE,ANL_DAT,ANL_BEN$,AEND_DAT,AEND_BEN$,LOE_DAT,LOE_BEN$,DOK_PFLICHT,PASSIV,WKZ_ID$:[LEN(7)],FEHLERKLASSE$,FESTMENGE,MEDIA_DATEI$,NENNWERT$
rec.qplan_nr$ = "123"
rec.qsk_nr$ = "987"
for i = 1 to 10
      rec.sequenz$ = str(i:"00")
      write record (1, dom = *next) rec$
      if not(tcb(2)) {
            print kec(1,kno="WERKZEUG"); ! <--- error 11
      }
next
close(1)
end

36
Wish List / passing parameters to a panel
« on: January 17, 2020, 10:15:03 AM »
For a dynamic panel invocation it would be very useful to pass the parameters in form of a data structure.

--- suggestion #1 ---
params$["ARG_1"] = "A"
params$["ARG_2"] = "B"
params$["ARG_3"] = "C"
process panel$, lib$, params$[all]

--- suggestion #2 ---
params$ += "ARG_1=A" + sep
params$ += "ARG_2=B" + sep
params$ += "ARG_3=C" + sep
process panel$, lib$, params$

37
Wish List / *dict/dd_updt
« on: January 14, 2020, 06:58:20 AM »
Currently "*dict/dd_updt;UPDATE_PHYSICAL" locks a file just for analyzing.
We think it is better to lock a file only in case of a required conversion.

38
Wish List / paste text only with AutoSpellCheck=YES
« on: December 17, 2019, 10:28:45 AM »
Pasting texts into a multilined multiline control keeps the source font, though that control doesn't support multiple fonts.
This will confuse users, because after saving and re-reading that data the font is gone.
We would like to have a text only paste operation together with AutoSpellCheck = YES.

39
Programming / using XChange online 365
« on: December 04, 2019, 09:38:40 AM »
Currently we use def object ol,"Outlook.Application" for creating and sending mails. That works pretty good.
Now a customer wants to use XChange online 365. There is no OCX any more.

Does someone know how to use that service with PxPlus?

40
Programming / add counter bubble to button image
« on: November 29, 2019, 06:17:52 AM »
We want to display the number of new items in the way mobile devices to it.
Is there a way to add a "counter bubble" to a button image?

41
Wish List / visible property for *browser
« on: November 04, 2019, 07:23:23 AM »
The browser control seems to issue a "look at me" event on each change. Windows puts a yellow background on the task button or brings the container window to top.
We do col=0 and width=0, because there is no visibility porperty. This fires such an event. The same thing happens after loading a web page has taken some time.

We'd like to use a *browser'visible=0 in order to prevent such events.

42
Programming / incorrect evaluation
« on: October 16, 2019, 09:45:34 AM »
In my opinion the following condition should print a star
Code: [Select]
if 1 or 0 and 0 then print "*"It is the same as
Code: [Select]
if 1 or (0 and 0) then print "*"or
Code: [Select]
1+0*0For better understanding we will add the brackets.
PxPlus doesn't print a star. I'm curious, what am I missing?

43
Programming / tiny font in *browser
« on: October 11, 2019, 10:01:56 AM »
We create simple HTML-files and let them display in the *browser control.
The contents are as simple as: <html><p>Test Test Test</p></html>
The control uses a very very tiny font, which makes text unreadable.
Is it necessary to use <font> or is it possible to adjust the standard font size for the control somehow?

44
Programming / locale settings in chromium browser
« on: August 29, 2019, 10:34:57 AM »
We use "parseFloat(value).toLocaleString();" in order to display decimal values with german formatting.
On my V14 WindX client I see english formatting.
On my V16 WindX client I see german formatting.
On our TS with a V14 WindX client I see german formatting.
On my colleague's V14 WindX client I see german formatting.

The OS settings for decimal formatting are all set correctly for both of us.
What else may have an effect on the formatting?

Marginalia: None of us sees options in the popup menu due to installation issues.

45
Programming / disable chromium nrowser popup
« on: August 15, 2019, 07:52:29 AM »
The chromium browser object displays an empty popup menu.
Is there a way to disable that popup or to display the menu texts?

Pages: 1 2 [3] 4 5 6