Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

dbf plugin no longer works after updating to 30.00.20

Aug
1,941
71
My dbf plugin no longer works after updating to 30.00.20

The plugin loads, but executing any function closes tcc.

It works with 30.00.18, TCC29, and TCC28.

I looked at tcmdupdate.aiu but saw nothing that might affect plugins.

I'm also having a problem with the ruler plugin.

Joe
 
I added;
Code:
Procedure ExistFILE(file$) : Static r : If FileSize(file$)>-1 : r=#True : Else : r=#False : EndIf : ProcedureReturn r : EndProcedure
...to my plugin, replacing QueryIsFile;
Code:
  ; If QueryIsFile_(DBFName)
  If ExistFILE(DBFName)
The plugin works again.

I will wait and see what @rconn finds out about QueryIsFile

Thanks for the tip, @Charles Dye

Joe
 
I only use QueryIsFile once in any plugin (not in InitializePlugin). When I try to use my TODROP command I get an access violation (and since TODROP has opened the clipboard and not had a chance to close it, the clipboard is locked until TCC exits!).
 
Thanks @rconn.

I switched back to QueryIsFile_, and my plugin works in 30.00.21

Joe
 

Similar threads

Back
Top