On Feb 1, 5:33 pm, Mousehart <mouseh... (AT) trap (DOT) net> wrote:
Quote:
Whenever I boot my computer and start Pdox11 I get a Welcome screen which I
tell it I don't want. I also get developer preferences set to Beginner and
I reset it to advanced. In addition, if I create an alias in a session, it
only lasts as long as the session no matter what I save or how I do it
unless I create it directly using BDE (I've been writing in Pdox for 15 or
so years, so I know how to save it correctly within Paradox). As long as I
don't reboot, it holds the settings, but once I reboot it's back to square
one. Any thoughts? |
I was the dirst one to ask about this issue. Deleting the problem
file didn't work for me so I aaplied another suggestion from the
forum. Try the following code by writing a new script.
method run(var eventInfo Event)
var
stRegMenuKey,stRegNode string
liRootKey longint
endvar
liRootKey = regKeyLocalMachine
stRegMenuKey = "Software\\Microsoft\\Windows\\CurrentVersion\\Run "
stRegNode = "PdxRegCl"
try
deleteRegistryKey(stRegMenuKey,stRegNode,liRootKey )
msginfo("Info","PdxRegCl removed from registry")
onfail
errorshow("deleteRegistryKey ret false-probaly didnt exist")
endtry
Worked for me. I really appreciated it.
endMethod