Search found 1191 matches

by skiman
Tue Dec 19, 2023 2:31 am
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4086

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...
by skiman
Tue Dec 19, 2023 1:20 am
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4086

Re: Opening A Website

Hi Tom,

Yes, that's exactly the problem.
by skiman
Mon Dec 18, 2023 8:49 am
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4086

Re: Opening A Website

Hi Roger, Don't bother. There is a difference in the xbphtmlviewer and xbphtmlviewer2 which makes it useless for me. I'm using the htmlviewer to view PDF files and to copy content from it. In the old version you can double click on a word and drag it immediately. In the htmlviewer2 this isn't workin...
by skiman
Mon Dec 18, 2023 7:35 am
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4086

Re: Opening A Website

Hi Roger,

Is this already available or is this on your todo list?
by skiman
Mon Dec 18, 2023 1:47 am
Forum: eXpress++ Support
Topic: Problem with MemoWirit
Replies: 5
Views: 1463

Re: Problem with MemoWirit

Hi,

You can use this as a replacement:

Code: Select all

function abomemowrite(cTargetFile,cBuffer)
******************************************
Local nTarget := FCreate( cTargetFile, FC_NORMAL )

if nTarget == -1
    return .F.
  else
    FWrite( nTarget, cBuffer)
    FClose(ntarget)
endif

return .T.
by skiman
Thu Nov 30, 2023 12:44 am
Forum: eXpress++ Support
Topic: rm chart
Replies: 4
Views: 1324

Re: rm chart

Hi BOb,

I have send you a link to download it.
by skiman
Wed Nov 29, 2023 2:13 am
Forum: eXpress++ Support
Topic: A few minutes of your valuable time, for help please - Unos minutos de su valioso tiempo, para una ayuda por favor
Replies: 2
Views: 1082

Re: A few minutes of your valuable time, for help please - Unos minutos de su valioso tiempo, para una ayuda por favor

Hi, You can search in the NTX file on file level. This means it is working super fast. Just make sure you have an NTX file with the description as key. Then use the following function which will return an array. This array can be used with dc_setscopearray(). You will see that the speed is amazing e...
by skiman
Tue Nov 28, 2023 5:45 am
Forum: eXpress++ Support
Topic: rm chart
Replies: 4
Views: 1324

Re: rm chart

Hi Bob, We have it installed on almost all client systems and never had any problem with it up to now. We install the complete rmchart setup. During the setup you can disable any icons on the desktop. I even didn't knew there is a separate OCX for it. If you need it, I can send you the setup we alwa...
by skiman
Mon Oct 30, 2023 6:13 am
Forum: Xbase++ 2.0
Topic: SMTPclient() - access Sent items
Replies: 4
Views: 1360

Re: SMTPclient() - access Sent items

Hi,

Seems as I was too fast.
It should be possible with IMAP, but I think this isn't available/possible without third party software.

It is possible with Chilkat.
https://www.example-code.com/vbscript/i ... ailbox.asp
by skiman
Mon Oct 30, 2023 4:35 am
Forum: Xbase++ 2.0
Topic: SMTPclient() - access Sent items
Replies: 4
Views: 1360

Re: SMTPclient() - access Sent items

Hi,

Check te POP3Client class. This way you can read messages from a mailbox.