473,416 Members | 1,743 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

Detached Event Procedures

I am using Access 2003, and have an ongoing problem of every once in a while
losing an event procedure
for a form or control. The procedure's still in the code module, but the
form or control's property sheet does not show "[Event Procedure]". I have
to manually put it back, and then everything's fine.

Does anyone know what causes this phenomenon, or, at the very least, how to
tell if there are any of these "detached" event procedures? It's extremely
disconcerting to not have a procedure run that you assume is in place simply
because "[Event Procedure]" is missing from the property sheet. Is there a
way to tell if there are any of these in the db?

Thanks!

Neil
Apr 15 '07 #1
16 3551
Neil wrote:
I am using Access 2003, and have an ongoing problem of every once in
a while losing an event procedure
for a form or control. The procedure's still in the code module, but
the form or control's property sheet does not show "[Event
Procedure]". I have to manually put it back, and then everything's
fine.
Does anyone know what causes this phenomenon, or, at the very least,
how to tell if there are any of these "detached" event procedures?
It's extremely disconcerting to not have a procedure run that you
assume is in place simply because "[Event Procedure]" is missing from
the property sheet. Is there a way to tell if there are any of these
in the db?
Thanks!

Neil
If you rename the control or cut and paste the control you lose that setting. I
have never encountered anything else that caused it.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Apr 15 '07 #2
Rick's given you the "when". For how to correct the problem, take a look at
my March, 2004 "Access Answers" column in Pinnacle Publication's "Smart
Access". You can download the column (and sample database) for free at
http://www.accessmvp.com/DJSteele/SmartAccess.html

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
"Neil" <no****@nospam.netwrote in message
news:u2**************@newssvr22.news.prodigy.net.. .
>I am using Access 2003, and have an ongoing problem of every once in a
while losing an event procedure
for a form or control. The procedure's still in the code module, but the
form or control's property sheet does not show "[Event Procedure]". I have
to manually put it back, and then everything's fine.

Does anyone know what causes this phenomenon, or, at the very least, how
to
tell if there are any of these "detached" event procedures? It's extremely
disconcerting to not have a procedure run that you assume is in place
simply
because "[Event Procedure]" is missing from the property sheet. Is there a
way to tell if there are any of these in the db?

Thanks!

Neil


Apr 15 '07 #3
in the on open event,

put something like:

Me.OnTimer = "[Event Procedure]"

this is possible if the on open does not loose it's "[Event
Procedure]". if you want to check that, then you must write a code and
put it in the startup of your database to check and see if all desired
forms have the "[Event Procedure]" in their on open event.
On Apr 15, 10:09 pm, "Douglas J. Steele"
<NOSPAM_djsteele@NOSPAM_canada.comwrote:
Rick's given you the "when". For how to correct the problem, take a look at
my March, 2004 "Access Answers" column in Pinnacle Publication's "Smart
Access". You can download the column (and sample database) for free athttp://www.accessmvp.com/DJSteele/SmartAccess.html

--
Doug Steele, Microsoft Access MVPhttp://I.Am/DougSteele
(no private e-mails, please)

"Neil" <nos...@nospam.netwrote in message

news:u2**************@newssvr22.news.prodigy.net.. .
I am using Access 2003, and have an ongoing problem of every once in a
while losing an event procedure
for a form or control. The procedure's still in the code module, but the
form or control's property sheet does not show "[Event Procedure]". I have
to manually put it back, and then everything's fine.
Does anyone know what causes this phenomenon, or, at the very least, how
to
tell if there are any of these "detached" event procedures? It's extremely
disconcerting to not have a procedure run that you assume is in place
simply
because "[Event Procedure]" is missing from the property sheet. Is there a
way to tell if there are any of these in the db?
Thanks!
Neil

Apr 16 '07 #4
Did you bother checking the reference I gave? It automates the process
you're describing.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
"Naeem Azizian" <na**********@gmail.comwrote in message
news:11**********************@p77g2000hsh.googlegr oups.com...
in the on open event,

put something like:

Me.OnTimer = "[Event Procedure]"

this is possible if the on open does not loose it's "[Event
Procedure]". if you want to check that, then you must write a code and
put it in the startup of your database to check and see if all desired
forms have the "[Event Procedure]" in their on open event.
On Apr 15, 10:09 pm, "Douglas J. Steele"
<NOSPAM_djsteele@NOSPAM_canada.comwrote:
>Rick's given you the "when". For how to correct the problem, take a look
at
my March, 2004 "Access Answers" column in Pinnacle Publication's "Smart
Access". You can download the column (and sample database) for free
athttp://www.accessmvp.com/DJSteele/SmartAccess.html

--
Doug Steele, Microsoft Access MVPhttp://I.Am/DougSteele
(no private e-mails, please)

"Neil" <nos...@nospam.netwrote in message

news:u2**************@newssvr22.news.prodigy.net. ..
>I am using Access 2003, and have an ongoing problem of every once in a
while losing an event procedure
for a form or control. The procedure's still in the code module, but
the
form or control's property sheet does not show "[Event Procedure]". I
have
to manually put it back, and then everything's fine.
Does anyone know what causes this phenomenon, or, at the very least,
how
to
tell if there are any of these "detached" event procedures? It's
extremely
disconcerting to not have a procedure run that you assume is in place
simply
because "[Event Procedure]" is missing from the property sheet. Is
there a
way to tell if there are any of these in the db?
Thanks!
Neil


Apr 16 '07 #5
The problem with that is that I'd then have to put that code in the on open
event for each form for every form, control, and section event procedure.
That could get in the hundreds, and managing that would be a pain. Thanks,
though.

"Naeem Azizian" <na**********@gmail.comwrote in message
news:11**********************@p77g2000hsh.googlegr oups.com...
in the on open event,

put something like:

Me.OnTimer = "[Event Procedure]"

this is possible if the on open does not loose it's "[Event
Procedure]". if you want to check that, then you must write a code and
put it in the startup of your database to check and see if all desired
forms have the "[Event Procedure]" in their on open event.
On Apr 15, 10:09 pm, "Douglas J. Steele"
<NOSPAM_djsteele@NOSPAM_canada.comwrote:
>Rick's given you the "when". For how to correct the problem, take a look
at
my March, 2004 "Access Answers" column in Pinnacle Publication's "Smart
Access". You can download the column (and sample database) for free
athttp://www.accessmvp.com/DJSteele/SmartAccess.html

--
Doug Steele, Microsoft Access MVPhttp://I.Am/DougSteele
(no private e-mails, please)

"Neil" <nos...@nospam.netwrote in message

news:u2**************@newssvr22.news.prodigy.net. ..
>I am using Access 2003, and have an ongoing problem of every once in a
while losing an event procedure
for a form or control. The procedure's still in the code module, but
the
form or control's property sheet does not show "[Event Procedure]". I
have
to manually put it back, and then everything's fine.
Does anyone know what causes this phenomenon, or, at the very least,
how
to
tell if there are any of these "detached" event procedures? It's
extremely
disconcerting to not have a procedure run that you assume is in place
simply
because "[Event Procedure]" is missing from the property sheet. Is
there a
way to tell if there are any of these in the db?
Thanks!
Neil


Apr 16 '07 #6
Great! Thanks! Looks like that will work great.

You know, it would be a lot simpler if Access had an option: Always Use
Existing Event Procedure, such that, if selected, Access will always use the
event procedure if one exists in the code module. For those of use who only
use event procedures, and who experience this problem, it sure would make
things easier! It would also allow us to create the procedure directly in
the module, instead of through the property sheet (I know, we can do that
now, and sometimes the property sheet gets set, but sometimes it doesn't).
It's such a future, ridiculous thing to have to select "Event Procedure" in
the property sheet if you never use macros. At least give us that option,
Microsoft!

(OK, I'm done griping. Thanks again!)
"Douglas J. Steele" <NOSPAM_djsteele@NOSPAM_canada.comwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
Rick's given you the "when". For how to correct the problem, take a look
at my March, 2004 "Access Answers" column in Pinnacle Publication's "Smart
Access". You can download the column (and sample database) for free at
http://www.accessmvp.com/DJSteele/SmartAccess.html

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
"Neil" <no****@nospam.netwrote in message
news:u2**************@newssvr22.news.prodigy.net.. .
>>I am using Access 2003, and have an ongoing problem of every once in a
while losing an event procedure
for a form or control. The procedure's still in the code module, but the
form or control's property sheet does not show "[Event Procedure]". I
have
to manually put it back, and then everything's fine.

Does anyone know what causes this phenomenon, or, at the very least, how
to
tell if there are any of these "detached" event procedures? It's
extremely
disconcerting to not have a procedure run that you assume is in place
simply
because "[Event Procedure]" is missing from the property sheet. Is there
a
way to tell if there are any of these in the db?

Thanks!

Neil



Apr 16 '07 #7
You might be right. I *seem* to recall it happening randomly, without
cutting and pasting the control. But you might be right. I'll have to keep a
closer eye on it.

Thanks!
"Rick Brandt" <ri*********@hotmail.comwrote in message
news:Lm***************@newssvr19.news.prodigy.net. ..
Neil wrote:
>I am using Access 2003, and have an ongoing problem of every once in
a while losing an event procedure
for a form or control. The procedure's still in the code module, but
the form or control's property sheet does not show "[Event
Procedure]". I have to manually put it back, and then everything's
fine.
Does anyone know what causes this phenomenon, or, at the very least,
how to tell if there are any of these "detached" event procedures?
It's extremely disconcerting to not have a procedure run that you
assume is in place simply because "[Event Procedure]" is missing from
the property sheet. Is there a way to tell if there are any of these
in the db?
Thanks!

Neil

If you rename the control or cut and paste the control you lose that
setting. I have never encountered anything else that caused it.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com

Apr 16 '07 #8
"Neil" <no****@nospam.netwrote:
>You know, it would be a lot simpler if Access had an option: Always Use
Existing Event Procedure, such that, if selected, Access will always use the
event procedure if one exists in the code module. For those of use who only
use event procedures, and who experience this problem, it sure would make
things easier! It would also allow us to create the procedure directly in
the module, instead of through the property sheet (I know, we can do that
now, and sometimes the property sheet gets set, but sometimes it doesn't).
It's such a future, ridiculous thing to have to select "Event Procedure" in
the property sheet if you never use macros. At least give us that option,
Microsoft!
I can never remember where this option is so I had to do some Groups Google
searching. So thanks to a posting by Albert Kallal here's part of your gripe
solved.

tools->options->forms/reports tab
[x] - Always use Event procedures.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Apr 16 '07 #9
Yes, that's a helpful option for not having to select Event Procedure in the
property sheet when you double-click on a control. And perhaps that would
resolve the issue of not being able to create the procedure directly in the
code module. So that would be great. But, as you say, it's only part of the
gripe. I want an option where I don't even have to deal with the property
sheet -- where Access always uses the event procedure if one exists in the
code module, and just manages the property sheet itself (or makes the Event
tab invisible if the option is checked). Damn it, I DEMAND it, Microsoft!
Give me that feature or I'll take my business elsewhere! (OK, now I've got
them scared.....)
"Tony Toews [MVP]" <tt****@telusplanet.netwrote in message
news:sp********************************@4ax.com...
"Neil" <no****@nospam.netwrote:
>>You know, it would be a lot simpler if Access had an option: Always Use
Existing Event Procedure, such that, if selected, Access will always use
the
event procedure if one exists in the code module. For those of use who
only
use event procedures, and who experience this problem, it sure would make
things easier! It would also allow us to create the procedure directly in
the module, instead of through the property sheet (I know, we can do that
now, and sometimes the property sheet gets set, but sometimes it doesn't).
It's such a future, ridiculous thing to have to select "Event Procedure"
in
the property sheet if you never use macros. At least give us that option,
Microsoft!

I can never remember where this option is so I had to do some Groups
Google
searching. So thanks to a posting by Albert Kallal here's part of your
gripe
solved.

tools->options->forms/reports tab
[x] - Always use Event procedures.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm

Apr 17 '07 #10
Neil wrote:
Great! Thanks! Looks like that will work great.
I've downloaded Doug's article but haven't gone over it in detail, yet,
though it sounds very useful.

In my own personal experience I lose procedures exactly as how Rick
described. For me, it's usually when I'm designing a form, and later
run out of real estate and decide to introduce a tab control - moving
existing controls to the tab control (cutting and pasting) always
results in a "lost" procedure.

What I have found easiest to do (again, I haven't gone through Doug's
paper in detail) is, after pasting the controls into the tab control (or
where ever) is to simply open each control's properties and just double
click on the events I know have event procedures with them. The "[Event
Procedure]" appears and the connection to the code in the form's module
is refreshed.

--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Be Careful, Big Bird!" - Ditto "TIM-MAY!!" - Me
Apr 17 '07 #11
My article isn't rocket science, Tim. All I'm doing is going through the
module, looking at all the names of all the Subs and ensuring that those
that correspond to Event Procedures have the appropriate Event property set
to [Event Procedure]. (At least, I think that's all it does: it was quite
some time ago that I wrote it)

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
"Tim Marshall" <TI****@PurplePandaChasers.Moertheriumwrote in message
news:f0**********@coranto.ucs.mun.ca...
Neil wrote:
>Great! Thanks! Looks like that will work great.

I've downloaded Doug's article but haven't gone over it in detail, yet,
though it sounds very useful.

In my own personal experience I lose procedures exactly as how Rick
described. For me, it's usually when I'm designing a form, and later run
out of real estate and decide to introduce a tab control - moving existing
controls to the tab control (cutting and pasting) always results in a
"lost" procedure.

What I have found easiest to do (again, I haven't gone through Doug's
paper in detail) is, after pasting the controls into the tab control (or
where ever) is to simply open each control's properties and just double
click on the events I know have event procedures with them. The "[Event
Procedure]" appears and the connection to the code in the form's module is
refreshed.

--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Be Careful, Big Bird!" - Ditto "TIM-MAY!!" - Me

Apr 17 '07 #12

"Tim Marshall" <TI****@PurplePandaChasers.Moertheriumschreef in bericht news:f0**********@coranto.ucs.mun.ca...

What I have found easiest to do (again, I haven't gone through Doug's
paper in detail) is, after pasting the controls into the tab control (or
where ever) is to simply open each control's properties and just double
click on the events I know have event procedures with them. The "[Event
Procedure]" appears and the connection to the code in the form's module
is refreshed.
Even more easy:
Select all the code, Cut and paste (Ctrl-X, Ctrl-V)

Still possible that there is code that is 'not attached' with that approach but that's because the control is not there.
Doug's utility checks for both kinds of errors.

Arno R
Apr 17 '07 #13
Arno R wrote:
Even more easy:
Select all the code, Cut and paste (Ctrl-X, Ctrl-V)
Ahhhh, good tip, I'll remember that one.
Still possible that there is code that is 'not attached' with that approach but that's because the control is not there.
Doug's utility checks for both kinds of errors.
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Be Careful, Big Bird!" - Ditto "TIM-MAY!!" - Me
Apr 17 '07 #14
Yes, double-clicking in the property sheet would be the easiest thing to
do -- if you remember all the events that are defined. I'd be sure to miss
one or two. Probably the best thing to do, if one were to do it manually,
would be to rename the control, make a copy of it, then paste the copy and
rename it to the original name. Then use the original one to get all the
procedures off the property sheet. At least, that's what I'd need to do.
But, as you say, Doug's solution would probably be the way to go.

About this situation in general, I'm relieved to hear that no one else
experiences this. I was really expecting a bunch of people to say, "Oh yeah,
this is a known glitch in Access, and Microsoft has been saying for some
time that they'd fix it." So I'm glad that's the not the case.

When these things started appearing for apparently no reason (since I hadn't
moved any controls), I just assumed it was a glitch. But I have a client who
likes to "play" with the formatting of the forms, and I passed on Rick's
note to him. And he said, "Oh yeah, it was probably me then. I was playing
around with the controls and moving them to different tabs." So the culprit
is found out! :-)

Thanks!

Neil
"Tim Marshall" <TI****@PurplePandaChasers.Moertheriumwrote in message
news:f0**********@coranto.ucs.mun.ca...
Neil wrote:
>Great! Thanks! Looks like that will work great.

I've downloaded Doug's article but haven't gone over it in detail, yet,
though it sounds very useful.

In my own personal experience I lose procedures exactly as how Rick
described. For me, it's usually when I'm designing a form, and later run
out of real estate and decide to introduce a tab control - moving existing
controls to the tab control (cutting and pasting) always results in a
"lost" procedure.

What I have found easiest to do (again, I haven't gone through Doug's
paper in detail) is, after pasting the controls into the tab control (or
where ever) is to simply open each control's properties and just double
click on the events I know have event procedures with them. The "[Event
Procedure]" appears and the connection to the code in the form's module is
refreshed.

--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Be Careful, Big Bird!" - Ditto "TIM-MAY!!" - Me

Apr 18 '07 #15
Yeah, but it's a lot of coding. For those of us who are lazy, you've done us
a big favor! :-)

"Douglas J. Steele" <NOSPAM_djsteele@NOSPAM_canada.comwrote in message
news:e7**************@TK2MSFTNGP03.phx.gbl...
My article isn't rocket science, Tim. All I'm doing is going through the
module, looking at all the names of all the Subs and ensuring that those
that correspond to Event Procedures have the appropriate Event property
set to [Event Procedure]. (At least, I think that's all it does: it was
quite some time ago that I wrote it)

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
"Tim Marshall" <TI****@PurplePandaChasers.Moertheriumwrote in message
news:f0**********@coranto.ucs.mun.ca...
>Neil wrote:
>>Great! Thanks! Looks like that will work great.

I've downloaded Doug's article but haven't gone over it in detail, yet,
though it sounds very useful.

In my own personal experience I lose procedures exactly as how Rick
described. For me, it's usually when I'm designing a form, and later run
out of real estate and decide to introduce a tab control - moving
existing controls to the tab control (cutting and pasting) always results
in a "lost" procedure.

What I have found easiest to do (again, I haven't gone through Doug's
paper in detail) is, after pasting the controls into the tab control (or
where ever) is to simply open each control's properties and just double
click on the events I know have event procedures with them. The "[Event
Procedure]" appears and the connection to the code in the form's module
is refreshed.

--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Be Careful, Big Bird!" - Ditto "TIM-MAY!!" - Me


Apr 18 '07 #16
Really? I've never trusted Access to register the event procedure on the
property sheet. Even when I paste in a procedure, I still go to the property
sheet to double-check. But if you do this and have found it to reliably put
[Event Procedure] in the property sheet, then that's great! Thanks for the
tip!
"Arno R" <ar****************@planet.nlwrote in message
news:46*********************@text.nova.planet.nl.. .

"Tim Marshall" <TI****@PurplePandaChasers.Moertheriumschreef in bericht
news:f0**********@coranto.ucs.mun.ca...
>
What I have found easiest to do (again, I haven't gone through Doug's
paper in detail) is, after pasting the controls into the tab control (or
where ever) is to simply open each control's properties and just double
click on the events I know have event procedures with them. The "[Event
Procedure]" appears and the connection to the code in the form's module
is refreshed.
Even more easy:
Select all the code, Cut and paste (Ctrl-X, Ctrl-V)

Still possible that there is code that is 'not attached' with that approach
but that's because the control is not there.
Doug's utility checks for both kinds of errors.

Arno R
Apr 18 '07 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Dee | last post by:
I have 11 numeric fields on a form which are all inter related. When any field changes after update, all need recalculation. Each field has an after update event procedure. Each of which runs...
4
by: Jared | last post by:
Radio Button or Check Box and Event Procedures I need to insert either radio buttons or check boxes onto my form. I'm not sure which to use, or if there are other options. I am using the buttons...
3
by: R Millman | last post by:
under ASP.NET, single stepping in debug mode appears not to stop within event procedures. i.e. 1) Create web page with submit button and event procedure for the click event in the code behind...
2
by: Fred | last post by:
I'm combining the functionality of two existing aspx pages into one new page. One of the existing pages has a server-side Page_Load event procedure. The other has <body onload="Init();"> (and...
2
by: Kuldeep | last post by:
Hi All, Could anybody give me some ideas on the advantages and disadvantages when it comes to having Event Procedures and Methods in .aspx page rather than having them in .aspx.cs/.aspx.vb ...
4
by: Denis | last post by:
Hi, Looking at the template "Order Entry" in Ms Access, how do you get the following to work? In the customer form there is a sub-form giving a summary of orders by customers. After entering...
1
by: Neil | last post by:
I have an ongoing problem of every once in a while losing an event procedure for a form or control. The procedure's still in the code module, but the form or control's property sheet does not show...
2
by: Jim Roddy | last post by:
I am converting from Office 97 to Office 2007. Operating system XP pro. All but one of my databases have converted w/o problems. In the one that did not, none of the event procedures for...
1
by: bhrosey via AccessMonster.com | last post by:
Is there somewhere I can go to find out exactly what all the "event" names do? For example, when exactly does the "on dirty" event happen or "on focus", etc. .. Is ther a list out there somewhere?...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.