Search found 1220 matches

by skiman
Mon Jan 15, 2024 1:47 am
Forum: eXpress++ Support
Topic: Char2UTF8() in XML
Replies: 5
Views: 16667

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: 16667

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...
by skiman
Fri Jan 12, 2024 3:27 am
Forum: eXpress++ Support
Topic: Char2UTF8() in XML
Replies: 5
Views: 16667

Char2UTF8() in XML

Ho, I'm using the Char2UTF8() to add data to an XML. I need this for French characters as é è à and so on. Now this seems to be wrong interpreted by Microsoft Edge when you open the XML. Anyone who is using french characters in an XML? Or special characters as are used in German, Spanish, Romanian, ...
by skiman
Thu Jan 11, 2024 8:32 am
Forum: eXpress++ Support
Topic: Error with eXpress (DCBROWSE) and Xbase 2.0
Replies: 11
Views: 26579

Re: Error with eXpress (DCBROWSE) and Xbase 2.0

{ XBP_PP_COL_FA_HEIGHT, 10 } , /* Footer Height */ ;

10 seems rather small??? I have 26 as default in my code.
by skiman
Thu Jan 11, 2024 6:54 am
Forum: eXpress++ Support
Topic: Error with eXpress (DCBROWSE) and Xbase 2.0
Replies: 11
Views: 26579

Re: Error with eXpress (DCBROWSE) and Xbase 2.0

Code: Select all

@ 02.7,0.4 DCBROWSE oDetalleDocumento DATA aDetalleDocumento SIZE 133.80,10.5 PRESENTATION DC_BrowPres( 19 ) ;
DC_BrowPres( 19 ) ??? What is this? You can give an array as parameter, but not a numeric value?

Have you tried without the PRESENTATION?
by skiman
Thu Jan 11, 2024 1:02 am
Forum: eXpress++ Support
Topic: Error with eXpress (DCBROWSE) and Xbase 2.0
Replies: 11
Views: 26579

Re: Error with eXpress (DCBROWSE) and Xbase 2.0

Hi, What happens if you change the following: DCBROWSECOL ELEMENT 02 HEADER "DESCRIPCION;DEL PRODUCTO" WIDTH 17 PARENT oDetalleDocumento PROTECT {|o| .T. } eval {|oB|oB:dataArea:lbClick := {|a,b,o| CargaArrelgos( aApp, GetList ) } } OWNERDRAW FOOTER "" //{|| "Costo Liquidación: "+TRANSFORM( CostoLiq...
by skiman
Wed Jan 10, 2024 1:25 am
Forum: eXpress++ Support
Topic: Error with eXpress (DCBROWSE) and Xbase 2.0
Replies: 11
Views: 26579

Re: Error with eXpress (DCBROWSE) and Xbase 2.0

Hi,

What happens if you change the height of your browse to 8 instead of 10.5? Just wondering if your browse fits in the tabpage or if it is really a footer problem?
by skiman
Fri Dec 29, 2023 1:05 am
Forum: eXpress++ Support
Topic: the + XML symbol disappears
Replies: 3
Views: 9524

Re: the + XML symbol disappears

Hi,

Maybe you can use the CDATA?

<![CDATA[your_email ]] >
by skiman
Wed Dec 20, 2023 1:12 am
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 75690

Re: Opening A Website

Hi Jimmy, Microsoft Edge, including its PDF Viewer, is built on a different technology (Chromium) and does not support the same OLE drag and drop functionality as Internet Explorer It looks as Edge doesn't support it? And in this case I want to drag/drop text from a pdf. I'm using it to get content ...
by skiman
Tue Dec 19, 2023 2:31 am
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 75690

Re: Opening A Website

it is IMHO not a Problem of EDGE itself, it is while EDGE internal PDF Viewer does support OLE Drag_Source Xbase++ App can not receive OLE Drop as Drop_Target, only CF_TEXT or CF_BITMAP work with DragAccept() Hi Jimmy, If you open a PDF with Edge, you will see that you can't drag a selected word. I...