ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   CAN ANYONE SOVLE THIS PROBLEM!!! (https://www.excelbanter.com/excel-programming/325647-can-anyone-sovle-problem.html)

Jim Warren

CAN ANYONE SOVLE THIS PROBLEM!!!
 
HERE'S THE CODE:
Dim NDXcode As String, StartLine As Long
NDXcode = ActiveSheet.CodeName
With ActiveWorkbook.VBProject.VBComponents(NDXcode).Cod eModule
StartLine = .CreateEventProc("SelectionChange", "Worksheet")
.InsertLines StartLine, _
<TEXT IS INSERTED HERE
HERE'S THE ERROR:
" the object invoked has disconnected from its client" and Excel crashes
THE ERROR OCCURS AT .InsertLine StartLine,...BUT IT ALSO HAPPENS IF I SINGLE
STEP TO THE PREVIOUS LINE AND TYPE IN THE IMMEDIATE WINDOW "Print StartLine"

Myrna Larson

CAN ANYONE SOVLE THIS PROBLEM!!!
 
What happens if you turn off Event trapping before you try to insert the
procedure?


On Thu, 17 Mar 2005 10:31:04 -0800, "Jim Warren"
wrote:

HERE'S THE CODE:
Dim NDXcode As String, StartLine As Long
NDXcode = ActiveSheet.CodeName
With ActiveWorkbook.VBProject.VBComponents(NDXcode).Cod eModule
StartLine = .CreateEventProc("SelectionChange", "Worksheet")
.InsertLines StartLine, _
<TEXT IS INSERTED HERE
HERE'S THE ERROR:
" the object invoked has disconnected from its client" and Excel crashes
THE ERROR OCCURS AT .InsertLine StartLine,...BUT IT ALSO HAPPENS IF I SINGLE
STEP TO THE PREVIOUS LINE AND TYPE IN THE IMMEDIATE WINDOW "Print StartLine"



Jim Warren

CAN ANYONE SOVLE THIS PROBLEM!!!
 
I haven't tried that. But I will and let you know.

"Myrna Larson" wrote:

What happens if you turn off Event trapping before you try to insert the
procedure?


On Thu, 17 Mar 2005 10:31:04 -0800, "Jim Warren"
wrote:

HERE'S THE CODE:
Dim NDXcode As String, StartLine As Long
NDXcode = ActiveSheet.CodeName
With ActiveWorkbook.VBProject.VBComponents(NDXcode).Cod eModule
StartLine = .CreateEventProc("SelectionChange", "Worksheet")
.InsertLines StartLine, _
<TEXT IS INSERTED HERE
HERE'S THE ERROR:
" the object invoked has disconnected from its client" and Excel crashes
THE ERROR OCCURS AT .InsertLine StartLine,...BUT IT ALSO HAPPENS IF I SINGLE
STEP TO THE PREVIOUS LINE AND TYPE IN THE IMMEDIATE WINDOW "Print StartLine"




Jim Warren

CAN ANYONE SOVLE THIS PROBLEM!!!
 
How do you turn off Event trapping?


"Jim Warren" wrote:

I haven't tried that. But I will and let you know.

"Myrna Larson" wrote:

What happens if you turn off Event trapping before you try to insert the
procedure?


On Thu, 17 Mar 2005 10:31:04 -0800, "Jim Warren"
wrote:

HERE'S THE CODE:
Dim NDXcode As String, StartLine As Long
NDXcode = ActiveSheet.CodeName
With ActiveWorkbook.VBProject.VBComponents(NDXcode).Cod eModule
StartLine = .CreateEventProc("SelectionChange", "Worksheet")
.InsertLines StartLine, _
<TEXT IS INSERTED HERE
HERE'S THE ERROR:
" the object invoked has disconnected from its client" and Excel crashes
THE ERROR OCCURS AT .InsertLine StartLine,...BUT IT ALSO HAPPENS IF I SINGLE
STEP TO THE PREVIOUS LINE AND TYPE IN THE IMMEDIATE WINDOW "Print StartLine"




Tom Ogilvy

CAN ANYONE SOVLE THIS PROBLEM!!!
 
I think she mean's

Application.EnableEvents = False

--
Regards,
Tom Ogilvy


"Jim Warren" wrote in message
...
How do you turn off Event trapping?


"Jim Warren" wrote:

I haven't tried that. But I will and let you know.

"Myrna Larson" wrote:

What happens if you turn off Event trapping before you try to insert

the
procedure?


On Thu, 17 Mar 2005 10:31:04 -0800, "Jim Warren"
wrote:

HERE'S THE CODE:
Dim NDXcode As String, StartLine As Long
NDXcode = ActiveSheet.CodeName
With ActiveWorkbook.VBProject.VBComponents(NDXcode).Cod eModule
StartLine = .CreateEventProc("SelectionChange", "Worksheet")
.InsertLines StartLine, _
<TEXT IS INSERTED HERE
HERE'S THE ERROR:
" the object invoked has disconnected from its client" and Excel

crashes
THE ERROR OCCURS AT .InsertLine StartLine,...BUT IT ALSO HAPPENS IF I

SINGLE
STEP TO THE PREVIOUS LINE AND TYPE IN THE IMMEDIATE WINDOW "Print

StartLine"





Jim Warren

CAN ANYONE SOVLE THIS PROBLEM!!!
 
Thanks Tom. I tried that and it didn't make any difference. Do you have any
ideas?

Jim

"Tom Ogilvy" wrote:

I think she mean's

Application.EnableEvents = False

--
Regards,
Tom Ogilvy


"Jim Warren" wrote in message
...
How do you turn off Event trapping?


"Jim Warren" wrote:

I haven't tried that. But I will and let you know.

"Myrna Larson" wrote:

What happens if you turn off Event trapping before you try to insert

the
procedure?


On Thu, 17 Mar 2005 10:31:04 -0800, "Jim Warren"
wrote:

HERE'S THE CODE:
Dim NDXcode As String, StartLine As Long
NDXcode = ActiveSheet.CodeName
With ActiveWorkbook.VBProject.VBComponents(NDXcode).Cod eModule
StartLine = .CreateEventProc("SelectionChange", "Worksheet")
.InsertLines StartLine, _
<TEXT IS INSERTED HERE
HERE'S THE ERROR:
" the object invoked has disconnected from its client" and Excel

crashes
THE ERROR OCCURS AT .InsertLine StartLine,...BUT IT ALSO HAPPENS IF I

SINGLE
STEP TO THE PREVIOUS LINE AND TYPE IN THE IMMEDIATE WINDOW "Print

StartLine"






Tom Ogilvy

CAN ANYONE SOVLE THIS PROBLEM!!!
 
If I did, I wouldn't make you beg for them, I would have posted them.
Sorry.

--
Regards,
Tom Ogilvy

"Jim Warren" wrote in message
...
Thanks Tom. I tried that and it didn't make any difference. Do you have

any
ideas?

Jim

"Tom Ogilvy" wrote:

I think she mean's

Application.EnableEvents = False

--
Regards,
Tom Ogilvy


"Jim Warren" wrote in message
...
How do you turn off Event trapping?


"Jim Warren" wrote:

I haven't tried that. But I will and let you know.

"Myrna Larson" wrote:

What happens if you turn off Event trapping before you try to

insert
the
procedure?


On Thu, 17 Mar 2005 10:31:04 -0800, "Jim Warren"
wrote:

HERE'S THE CODE:
Dim NDXcode As String, StartLine As Long
NDXcode = ActiveSheet.CodeName
With ActiveWorkbook.VBProject.VBComponents(NDXcode).Cod eModule
StartLine = .CreateEventProc("SelectionChange", "Worksheet")
.InsertLines StartLine, _
<TEXT IS INSERTED HERE
HERE'S THE ERROR:
" the object invoked has disconnected from its client" and Excel

crashes
THE ERROR OCCURS AT .InsertLine StartLine,...BUT IT ALSO HAPPENS

IF I
SINGLE
STEP TO THE PREVIOUS LINE AND TYPE IN THE IMMEDIATE WINDOW "Print

StartLine"








Tom Ogilvy

CAN ANYONE SOVLE THIS PROBLEM!!!
 
If you just want a work around and then get on with it.
I think if you use the normal way to create a sub in a module and not use
CreateEventProc you might be more successful. I rarely played with
CreateEventProc, but I don't recall every being successful with it (mostly
in xl97).

http://www.cpearson.com/excel/vbe.htm

if you want to see sample code on just writing code in a module (although
Chip has examples of CreateEventProc there also as I recall).

--
Regards,
Tom Ogilvy


"Jim Warren" wrote in message
...
Thanks Tom. I tried that and it didn't make any difference. Do you have

any
ideas?

Jim

"Tom Ogilvy" wrote:

I think she mean's

Application.EnableEvents = False

--
Regards,
Tom Ogilvy


"Jim Warren" wrote in message
...
How do you turn off Event trapping?


"Jim Warren" wrote:

I haven't tried that. But I will and let you know.

"Myrna Larson" wrote:

What happens if you turn off Event trapping before you try to

insert
the
procedure?


On Thu, 17 Mar 2005 10:31:04 -0800, "Jim Warren"
wrote:

HERE'S THE CODE:
Dim NDXcode As String, StartLine As Long
NDXcode = ActiveSheet.CodeName
With ActiveWorkbook.VBProject.VBComponents(NDXcode).Cod eModule
StartLine = .CreateEventProc("SelectionChange", "Worksheet")
.InsertLines StartLine, _
<TEXT IS INSERTED HERE
HERE'S THE ERROR:
" the object invoked has disconnected from its client" and Excel

crashes
THE ERROR OCCURS AT .InsertLine StartLine,...BUT IT ALSO HAPPENS

IF I
SINGLE
STEP TO THE PREVIOUS LINE AND TYPE IN THE IMMEDIATE WINDOW "Print

StartLine"








Tushar Mehta

CAN ANYONE SOVLE THIS PROBLEM!!!
 
Obviously, you know your app better than I do but in the 20+ years I've
been developing systems I have never come across a case where I had to
code a program to add code to another file -- well, other than when
writing a compiler or a system generator {g}.

IMO, propagating code through workbooks is a sure-fire way to create a
maintenance, security, and integrity nightmare. Doing so through code
simply compounds the problem.

If you want to handle worksheet events, use an application level event
handler within your own program. See the XL VBA help topic 'Using
Events with the Application Object' for more.

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions

In article ,
says...
Thanks Tom. I tried that and it didn't make any difference. Do you have any
ideas?

Jim

"Tom Ogilvy" wrote:

I think she mean's

Application.EnableEvents = False

--
Regards,
Tom Ogilvy


"Jim Warren" wrote in message
...
How do you turn off Event trapping?


"Jim Warren" wrote:

I haven't tried that. But I will and let you know.

"Myrna Larson" wrote:

What happens if you turn off Event trapping before you try to insert

the
procedure?


On Thu, 17 Mar 2005 10:31:04 -0800, "Jim Warren"
wrote:

HERE'S THE CODE:
Dim NDXcode As String, StartLine As Long
NDXcode = ActiveSheet.CodeName
With ActiveWorkbook.VBProject.VBComponents(NDXcode).Cod eModule
StartLine = .CreateEventProc("SelectionChange", "Worksheet")
.InsertLines StartLine, _
<TEXT IS INSERTED HERE
HERE'S THE ERROR:
" the object invoked has disconnected from its client" and Excel

crashes
THE ERROR OCCURS AT .InsertLine StartLine,...BUT IT ALSO HAPPENS IF I

SINGLE
STEP TO THE PREVIOUS LINE AND TYPE IN THE IMMEDIATE WINDOW "Print

StartLine"








All times are GMT +1. The time now is 12:25 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com