Search found 4599 matches
- Sat May 07, 2022 7:38 pm
- Forum: Xbase++ 2.0
- Topic: Problem sending data using HttpEndpoint
- Replies: 9
- Views: 1527
Re: Problem sending data using HttpEndpoint
Have you found the cause of this problem? Hi Chris. I haven't really found the cause but I found a few workarounds. I changed the content-type to "application/x-www-form-urlencoded". That caused all of the BASE64 characters to be sent correctly except for the "+" characters which were replaced by S...
- Sat May 07, 2022 7:04 am
- Forum: Xbase++ 2.0
- Topic: XML file attached in Gmail appears open in message body
- Replies: 8
- Views: 1318
Re: XML file attached in Gmail appears open in message body
Try changing the content-type.
oMail:setContentType('multipart/form-data')
oMail:setContentType('multipart/form-data')
- Thu May 05, 2022 5:49 am
- Forum: eXpress++ Support
- Topic: When I can control DC_HtmlBrowse I will try to develop a DC_FINDBROWSE().
- Replies: 2
- Views: 666
Re: When I can control DC_HtmlBrowse I will try to develop a DC_FINDBROWSE().
I think you are the only person who uses the DCHTML stuff.
This was only an experiment before the development of Javascript and other methods to create statefulness in web apps.
If you will give me a small sample program that shows the error, I will try to help.
This was only an experiment before the development of Javascript and other methods to create statefulness in web apps.
If you will give me a small sample program that shows the error, I will try to help.
- Mon May 02, 2022 11:06 am
- Forum: Xbase++ 2.0
- Topic: Problem sending data using HttpEndpoint
- Replies: 9
- Views: 1527
Problem sending data using HttpEndpoint
The below snippet of code shows how I have been sending BASE64 data to our Web Service. This has been working fine until today. There have been no code changes on either end. The Base64 string that gets sent is the correct length but some characters have been changed from upper case to lower case. I...
- Fri Apr 29, 2022 2:46 pm
- Forum: phpBB Board Support
- Topic: Post attachments
- Replies: 20
- Views: 11431
Re: Post attachments
could it be a phpbb directory setting ?? Not likely, because these attachments exist for awhile until suddenly the PHP program can't see them. Nothing at all changes. The files are still in the correct folder, but something happens so Windows doesn't see them. They are also still referenced in the ...
- Fri Apr 29, 2022 10:21 am
- Forum: phpBB Board Support
- Topic: Post attachments
- Replies: 20
- Views: 11431
Re: Post attachments
I don't want to risk having to spend many hours of time possibly breaking the forum completely with an update that I'm not sure will even work. I still have a heavy workload on a project that never seems to give me any free time. Those files DO exist but the PHP code or Windows 10 are failing someho...
- Tue Apr 26, 2022 11:41 am
- Forum: eXpress++ Support
- Topic: Browsing dataobjects (solved)
- Replies: 9
- Views: 1734
Re: Browsing dataobjects
I will need a sample program.
- Tue Apr 26, 2022 6:04 am
- Forum: eXpress++ Support
- Topic: Browsing dataobjects (solved)
- Replies: 9
- Views: 1734
Re: Browsing dataobjects
Cell editing is not supported in Multi-line browsing.
- Mon Apr 25, 2022 7:30 am
- Forum: eXpress++ Support
- Topic: Browsing dataobjects (solved)
- Replies: 9
- Views: 1734
Re: Browsing dataobjects
Here is how to use the DCBROWSE Multirow capability with an array of DataObjects. #INCLUDE "dcdialog.CH" #INCLUDE "appevent.CH" FUNCTION Main() LOCAL GetList[0], GetOptions, oBrowse, aDir, aPres, aColPres, ; aColPresLeft, aColPresRight, aObjects[0], i, oDir aDir := Directory() aPres := ; { { XBP_PP_...
- Mon Apr 25, 2022 5:34 am
- Forum: eXpress++ Support
- Topic: Browsing dataobjects (solved)
- Replies: 9
- Views: 1734
Re: Browsing dataobjects
I guess that I forgot that Cell Editing already works with an array of Record Objects. #INCLUDE "dcdialog.CH" #INCLUDE "appevent.CH" FUNCTION Main() LOCAL GetList[0], oBrowse, oParts, aParts[0], aStru, i DbeLoad("FOXDBE") DbeLoad("CDXDBE") DbeBuild("FOXCDX","FOXDBE","CDXDBE") USE parts VIA 'FOXCDX' ...