Search found 1198 matches

by skiman
Wed Feb 28, 2024 1:13 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 9335

Re: Excel remove duplicates

Hi Victorio, I was wondering what you want to do? It can't be that problem with Xbase++. There are 34 colums/fields which you want to test if they are duplicated? Do you want to check if all fields are the same, or if ONE of these fields is the same? An indexkey can't be that long, but you could use...
by skiman
Mon Feb 26, 2024 12:53 am
Forum: eXpress++ Support
Topic: DCBROWSECOL ... HIDE
Replies: 8
Views: 6855

Re: DCBROWSECOL ... HIDE

Hi,

Your code is working fine.
by skiman
Wed Feb 14, 2024 9:59 am
Forum: eXpress++ Support
Topic: DCBROWSECOL ... HIDE
Replies: 8
Views: 6855

Re: DCBROWSECOL ... HIDE

Hi SlavcoDam,

Thanks for the sample code. I will try it.
by skiman
Mon Feb 05, 2024 1:51 am
Forum: eXpress++ Support
Topic: DCBROWSECOL ... HIDE
Replies: 8
Views: 6855

Re: DCBROWSECOL ... HIDE

Hi, Thanks for the response. With Solution A the column is not really hidden. It gets a blank column, but it still remains in the browse. Solution be can also be accomplished with a do while. I was hoping on a more efficient solution. I will see, or I use solution B or I create multiple browses on a...
by skiman
Thu Feb 01, 2024 9:00 am
Forum: eXpress++ Support
Topic: DCBROWSECOL ... HIDE
Replies: 8
Views: 6855

DCBROWSECOL ... HIDE

Hi, I'm trying to hide/show a column in a browse. I don't succeed to get this working as it should. I can hide, but when I want to show it again, it looks as another column is overwritten. I tried refreshall, forcestable() but it doens't work as expected. Below is my sample code which demonstrates t...
by skiman
Thu Feb 01, 2024 1:17 am
Forum: eXpress++ Support
Topic: ARTIFICIAL INTELLIGENCE (AI)
Replies: 9
Views: 7007

Re: ARTIFICIAL INTELLIGENCE (AI)

Hi all,

@Jimmy: The purpose of a forum is to get help. This means that users are responding to questions with SOLUTIONS! If you don't have an answer to the question, then don't answer. Thanks in advance.
by skiman
Thu Feb 01, 2024 1:15 am
Forum: eXpress++ Support
Topic: ARTIFICIAL INTELLIGENCE (AI)
Replies: 9
Views: 7007

Re: ARTIFICIAL INTELLIGENCE (AI)

Hi,

It's available right now: https://platform.openai.com/docs/api-reference.
by skiman
Thu Jan 18, 2024 1:00 am
Forum: eXpress++ Support
Topic: TOOLTIPCOLOR and TOOLTIPFONT problem
Replies: 12
Views: 10519

Re: TOOLTIPCOLOR and TOOLTIPFONT problem

Hi, I'm using the tooltips troughout my application and I never saw this problem. I also have a different color and font. I have this at the start of my application: DCGETOPTIONS ; ... TOOLTIPCOLOR ABO_DARKGRAY, ABO_IVORY ; TOOLTIPFONT '9.Arial' ; ... DC_GetOptDefault(GetOptions)
by skiman
Mon Jan 15, 2024 1:47 am
Forum: eXpress++ Support
Topic: Char2UTF8() in XML
Replies: 5
Views: 4882

Re: Char2UTF8() in XML

Hi, In attachment a sample. In de tag <deliveryaddress><street> I placed the following in my Xbase app: street é à test . In my source code I have: ... oXml:newchild2("orderHeader|deliveryAddress|street",ConvCpToUtf(alltrim(cAdres))) ... The function ConvCpToUtf is as follows: function ConvCpToUtf(c...
by skiman
Fri Jan 12, 2024 10:04 am
Forum: eXpress++ Support
Topic: Char2UTF8() in XML
Replies: 5
Views: 4882

Re: Char2UTF8() in XML

Hi Pedro, Thanks for the suggestion but it seems as it isn't working. I changed the encoding and I removed the char2utf8. Now I can open the XML with Edge without a problem, but the signs as é à è aren't correctly shown. I'm using Chilkat to create the XML. I don't know if that could be the cause of...