Menu

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.

Show posts Menu

Messages - Jeffrey Ferreira

#1
Programming / Re: Max Characters per Line on Multi-Line
January 15, 2025, 11:17:23 AM
James - it is so funny you said that. I did something like this in our billing software (and i forgot about that). the one difference here is that our user wants it to honor their seps/line breaks. I did not do that in the billing software. I might use this as a last resort. Thank you. but i think you are confirming my thought that there is not a really easy way.

right now what i'm doing is using a mixture of : a fixed font , and controlling the width of the control and that seems to be doing it but i'm not sure if it will work with all monitors.
#2
Programming / Max Characters per Line on Multi-Line
January 15, 2025, 10:49:44 AM
We have descriptions that print in 30 character blocks.
is there a way on a multi-line (that has a height > 1 / i.e. multiple lines)
that i can control it so that if they type 30 characters on a line that it rolls to the next line.
i'm open to any solution.
#3
Language / Re: SQL Database Error after version change
January 02, 2025, 11:53:08 AM
Hi Devon,

both the 16.2 and the 19.1 are querying
      the same SQL database
      using the same dsn
      on the same server


We are in the process of upgrading there pxplus software
the only thing that i can see that has changed is their pxplus version.

do you think i should open a ticket with pxplus?

#4
Language / SQL Database Error after version change
January 02, 2025, 10:42:30 AM
Hello,

We have a client that is migrating from pxplus 16.20 to 19.10.
We have a Pxplus write record of a native sql command that reads from an Infor SQL Database.
In 16.20 it works but in 19.10 i get this error

HY000: [Microsoft][ODBC SQL Server Driver]Connection is busy with results for another hstmt

the command is just a "SELECT *" statement.

does anyone have any thoughts/insights.

jeff
#5
ODBC / File Does Not Exist
December 09, 2024, 09:08:57 AM
I have a client using odbc client/server 5.20 - they migrated their app to a 64 bit version. On 2 files they are getting the following error:

Exception from HRESULT: 0xC0014020
Error at Purchasing Ledger Summary [ODBC Source [123]]: SQLSTATE: S0000, Message: [PxPlus][ODBC Driver][PXPIO]File does not exist;

they can query every other file fine. The file seems to be in the .ddf - has anyone ever seen anything like this?
thanks
jeff
#6
ODBC / Re: INI File and Data Dictionary
October 16, 2024, 02:06:57 PM
Hi Deven

Windows Server 2016
when i use excel to try and file that is when i get the error.
you know in msquery when you can slide fields from left to right.

jeff

#7
ODBC / INI File and Data Dictionary
October 16, 2024, 10:14:04 AM
I have a catalog.
If I just use The Data Dictionary - it works fine
If I just use the INI File - it works fine
If i use the Data Dictionary and INI File - it throws error on ini file files-> No Data Dictionary

can this be done?
#8
Nomads / Re: Mimic Ctrl + Scroll
September 27, 2024, 04:20:18 PM
Deven the html image link worked. i had to change the control size but it still looks good. thank you
#9
Nomads / Mimic Ctrl + Scroll
September 27, 2024, 02:21:55 PM
Hi All,

I'm working on a program to display Delivery Pictures for a customer. I'm displaying the pics using Shell.Explorer. It is working nice except the pictures are really large. I found if I do a ctrl + scroll zoom in and zoom out. Is there a way i can do this with negative ctl's?

or maybe there is a way to fit the picture to the screen. We used shell explorer because it gives a preview of multiple docs (xml, pdf, any image, text)

thanks

jeff
#10
ODBC / Re: ODBC ini file config
August 29, 2024, 03:53:53 PM
Hi Deven, my field contains hexadecimal characters and i think that is causing problem.  than you for clarifying for me.
#11
ODBC / Re: ODBC ini file config
August 29, 2024, 03:19:56 PM
thank you Deven - so it doesn't seem to be working for me.
i'll try again ...thank you.
#12
ODBC / Re: ODBC ini file config
August 29, 2024, 01:53:14 PM
I would consider Offset to be where we start in string like in a mid function
let if string is
JEFFREY-JONES
Offset = 4
Length = 3
and i say offset is 4 (assuming 0 based then) i would expect it to return
"REY"
where the "R" is in the 4th position (0 based) and then go over 3 characters...
is that what the Offset is?
#13
ODBC / ODBC ini file config
August 27, 2024, 02:56:12 PM
I'm struggling with something that works but I don't understand why?

[*tables*]
Unit_Completion=p:\custom_data\CFUNIT
[Unit_Completion]
ORDER_NUMBER=STRING,LEN=9,FIELD=1,OFFSET=6
UTC_MTIME=STRING,LEN=10,FIELD=2,OFFSET=0

Can someone tell me what ORDER_NUMBER=STRING,LEN=9,FIELD=1,OFFSET=6 what this is doing?
it does what i want but intuitively i feel like it should not be working.
#14
Nomads / Re: Drag and Drop a File
July 16, 2024, 04:23:32 PM
Hi Mike - thank you. this worked for me.
#15
Nomads / Re: Drag and Drop a File
July 10, 2024, 02:47:26 PM
thank you Mike - i will give it a try.