Search found 4881 matches
- Fri May 16, 2025 8:31 am
- Forum: eXpress++ Support
- Topic: PDF in tooltip?
- Replies: 5
- Views: 191
Re: PDF in tooltip?
I will create a htmlviewer on my screen where the PDF is shown as a kind of preview. On the left I will have a browse and on the right I can show the PDF in a viewer. Yes, this is a good solution. We have been doing it this way for years in Bobby Drakos Medallion application which manages many docu...
- Fri May 16, 2025 6:12 am
- Forum: eXpress++ Support
- Topic: PDF in tooltip?
- Replies: 5
- Views: 191
Re: PDF in tooltip?
First, I would need to add the ability to display an image in a tooltip in eXpress++.
Then, I you would need to use XbpHtmlViewer to display the PDF in a WebBrowser and capture the screen to an image.
I will look into this and see if it is feasible.
Then, I you would need to use XbpHtmlViewer to display the PDF in a WebBrowser and capture the screen to an image.
I will look into this and see if it is feasible.
- Thu May 15, 2025 8:29 am
- Forum: Zen and the art of Software Maintenance
- Topic: Happy Birthday
- Replies: 4
- Views: 451
Re: Happy Birthday
Thank you all for the birthday greeting.
I have been struggling with performance issue with this forum the past few days and haven't kept up with messages.
It seems that I needed to increase memory allocated to mySql.
It hope this works.
I have been struggling with performance issue with this forum the past few days and haven't kept up with messages.
It seems that I needed to increase memory allocated to mySql.
It hope this works.
- Mon May 05, 2025 9:09 am
- Forum: eXpress++ Support
- Topic: Function for a sensitive search
- Replies: 3
- Views: 705
Re: Function for a sensitive search
I recommend looking at \exp20\samples\browsequery\browsequery.prg.
This uses wildcards and DC_SetScopeArray().
This uses wildcards and DC_SetScopeArray().
- Sat May 03, 2025 8:05 am
- Forum: PostGreSQL
- Topic: ADS vs PG
- Replies: 42
- Views: 11515
Re: ADS vs PG
I wrote an ERP system in Clipper back in the early 1990's. It required so much custom configuration that I had to make the screens and other stuff fully data-driven. One of the users was Annheiser-Busch. When I was taken out to dinner I was required to drink Budweiser beer. That was the last program...
- Thu May 01, 2025 1:44 pm
- Forum: eXpress++ Support
- Topic: STRUCTURE ... ENDSTRUCTURE
- Replies: 1
- Views: 909
Re: STRUCTURE ... ENDSTRUCTURE
If you look at the sample program \exp19\samples\printer\printerforms.prg, you will see how the BAP (Binary Access Package) is used to pass structures to windows API.
- Wed Apr 30, 2025 5:49 am
- Forum: PostGreSQL
- Topic: ADS vs PG
- Replies: 42
- Views: 11515
Re: ADS vs PG
You both forgot discussions on these topics: Those discussions were not intended to post reasons for my customer's project to fail. They were intended to find support and solutions for the project to succeed. And it worked! I followed advice from those who have had success with PGDBE, and I also se...
- Tue Apr 29, 2025 2:06 pm
- Forum: eXpress++ Support
- Topic: DC_Achoice() and DC_GuiAchoice() and Win11
- Replies: 4
- Views: 4920
Re: DC_Achoice() and DC_GuiAchoice() and Win11
Try this: #INCLUDE "dcdialog.CH" FUNCTION Main() LOCAL aMenuItems, cTitle, lCenter, cFontName, nn aMenuItems := {"title1","title2","title3","title4"} cTitle := "LIST" lCenter := .T. cFontName := "11.Consolas" nn := My_GuiAchoice( 5,10,20,30,aMenuItems,cTitle,cFontName,lCenter) WTF nn pause RETURN ni...
- Tue Apr 29, 2025 12:59 pm
- Forum: PostGreSQL
- Topic: ADS vs PG
- Replies: 42
- Views: 11515
Re: ADS vs PG
This is not church. If you came to America and listened to what politicians are selling these days, you would think America was church. We shouldn't be having discussions about what is the solution until first we discuss what is the problem. PGDBE was developed to solve the problem of applications ...
- Tue Apr 29, 2025 12:32 pm
- Forum: eXpress++ Support
- Topic: DC_Achoice() and DC_GuiAchoice() and Win11
- Replies: 4
- Views: 4920
Re: DC_Achoice() and DC_GuiAchoice() and Win11
Some of these functions were written as GUI replacements for my old Clipper product, dCLIP. They were Clipper code that was converted to Xbase++ back when I first started iwth Xbase++ in 1999. The code doesn't use any of the eXpress++ DC* commands which is very much better. I don't use Windows 11, s...