vb code

G

Guest

can anyone help me figure out why my vb code shows up
whenever i open my application even when there's no
error? when it shows up, i just click continue/play
button and it will run.

thanks.
 
V

Van T. Dinh

It sounds like you have the phantom break-point in your code which happens
occasionally.

* Open any code module in your database, type a few spaces at the end of
any line, move the focus to another line (this simply so that you can use
the Compile command).

* Use the Menu Debug / Clear All Break Points ... (hopefully including the
phantom one)

* Use the Menu Debug / Compile to re-compile the code.

* Use the Menu File / Save {your database}

* Close the VBE and try your database and see if the phantom break-point
dissapears.
 
G

Guest

thank you, i'll try that.
-----Original Message-----
It sounds like you have the phantom break-point in your code which happens
occasionally.

* Open any code module in your database, type a few spaces at the end of
any line, move the focus to another line (this simply so that you can use
the Compile command).

* Use the Menu Debug / Clear All Break Points ... (hopefully including the
phantom one)

* Use the Menu Debug / Compile to re-compile the code.

* Use the Menu File / Save {your database}

* Close the VBE and try your database and see if the phantom break-point
dissapears.

--
HTH
Van T. Dinh
MVP (Access)





.
 
Top