473,657 Members | 2,707 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Viewing Bound Old Objects

Thanks for reading my request for help!

I have a Bound Object Frame that I have stored a Word Document. When
I double click to view the document it is very small and unreadable.
If I try to zoom it to 100% it reverts right back to a small image.
Tried to click and drag the edge to resize it that didn't work either.

When I open this form up on another PC it work fine....

What am I missing here... it there an option that I missed or a
tool... I'm beginning to hate Ole Object :(

Please Help!

Thanks

N. Graves
Nov 30 '06 #1
4 1490
I have a Bound Object Frame that I have stored a Word Document.
why oh why would you do such a thing?

....why?

Dec 1 '06 #2
Bill thanks you for reading my question... Your right it is not a
pretty thing at all.

The reason:
I have a SQL Database and Web site that we keep up with On Call
information for many groups and we are a Service Company. I created
this database to immolate the Web but on the web we have Word
Documents too. I need the Access completely stand alone so Management
could download and have all the information incase we lost our
network.

Now can you help me? Oh please this one is kicking my butt.
On 1 Dec 2006 07:59:49 -0800, "BillCo" <co**********@g mail.comwrote:
>
>I have a Bound Object Frame that I have stored a Word Document.

why oh why would you do such a thing?

...why?
Dec 1 '06 #3

I would still advise against it - too many embedded objects will bloat
the database exponentially and you are inviting corruptions. You could
try just storing a link to the location of the document and trigger a
shell event to open it in word. This is the path i would recommend. You
could create a procedure to download the word docs with the database
and links intact.

or you could use the ms word com library to interact with the word docs
and extract the text into a memo field or a series of text fields.
Using the lebans rich text editor you could even read and write
formatted text.

But the ole window was never neant to display word docs.

N. Graves wrote:
Bill thanks you for reading my question... Your right it is not a
pretty thing at all.

The reason:
I have a SQL Database and Web site that we keep up with On Call
information for many groups and we are a Service Company. I created
this database to immolate the Web but on the web we have Word
Documents too. I need the Access completely stand alone so Management
could download and have all the information incase we lost our
network.

Now can you help me? Oh please this one is kicking my butt.
On 1 Dec 2006 07:59:49 -0800, "BillCo" <co**********@g mail.comwrote:
I have a Bound Object Frame that I have stored a Word Document.
why oh why would you do such a thing?

...why?
Dec 4 '06 #4
"I created this database to immolate the Web..." - N. Graves

Hmm... I think this is a rather interesting use for a database...
>From Dictionary.com
immolate \IM-uh-layt\, transitive verb:
1. To sacrifice; to offer in sacrifice; to kill as a sacrificial
victim.
2. To kill or destroy, often by fire.

"... but on the web we have Word Documents too." - N. Graves

Meh, they'll still burn ;)

My $0.02

Cheers,
Jason Lepack

N. Graves wrote:
Bill thanks you for reading my question... Your right it is not a
pretty thing at all.

The reason:
I have a SQL Database and Web site that we keep up with On Call
information for many groups and we are a Service Company. I created
this database to immolate the Web but on the web we have Word
Documents too. I need the Access completely stand alone so Management
could download and have all the information incase we lost our
network.

Now can you help me? Oh please this one is kicking my butt.
On 1 Dec 2006 07:59:49 -0800, "BillCo" <co**********@g mail.comwrote:
I have a Bound Object Frame that I have stored a Word Document.
why oh why would you do such a thing?

...why?
Dec 4 '06 #5

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

Similar topics

6
1503
by: Matthias Kaeppler | last post by:
Hello, during a discussion on a C++ internet forum, some question came up regarding references and the lifetime of the objects they alias. I can't find any clear wording on that in the draft standard. Example 12.2 in the standard document illustrates that temporaries bound to references-to-const live as long as the reference does. But does it e.g. matter if the temporary was created in scope of a function body and has to outlive the...
12
2698
by: Russell E. Owen | last post by:
I have several situations in my code where I want a unique identifier for a method of some object (I think this is called a bound method). I want this id to be both unique to that method and also stable (so I can regenerate it later if necessary). I thought the id function was the obvious choice, but it doesn't seem to work. The id of two different methods of the same object seems to be the same, and it may not be stable either. For...
15
2302
by: pranab_bajpai | last post by:
So I want to define a method that takes a "boolean" in a module, eg. def getDBName(l2): .... Now, in Python variables are bound to types when used, right? Eg. x = 10 # makes it an INT whereas
1
4005
by: Jax | last post by:
I have an arraylist of objects. This arraylist is bound to a repeater. That repeater then creates a set of controls like so <asp:repeater id="garmentRepeater" runat="server" OnItemCommand="Repeater_ButtonClick"><HeaderTemplate><asp:Label id="Label1" style="Z-INDEX: 101; LEFT: 250px; POSITION: absolute; TOP: 80px" runat="server Width="200px" Height="50px" Font-Names="Impact" Font-Size="Large">Garments on...
3
6123
by: Samuel R. Neff | last post by:
We're working on implementing a Command Pattern design with our application in order to help facilitate undo/redo. This is fine four user actions we control which basically means menu actions. However, it's not quite so clear for bound controls. We don't directly interact with the change--the user makes a change in a control, such as a grid, and the dataset stores the update. We haven't interjected any code which we can funnel through...
1
1438
by: Jonathan Taylor | last post by:
I have a large XML file that contains many complex objects. The objects contain a fairly sizeable amount of information and I'm only interested in displaying the name of each item. I don't want to read the whole document into memory, I merely want to go through the document and populate a list view which will list all items in the xml file. When i select an item in the list view I then want to view it. I do this by pressing a button...
0
1683
by: Dave | last post by:
Hi all, I have a listbox that is complex bound by an arraylist. The problem is that when I delete an object from the arraylist, the listbox does not reflect those changes. I tried refreshing the listbox with no luck and, because it is already bound, I can't just delete the item directly from the listbox without an error (because it already has a datasource, you are not allowed to delete/add anything to the listbox directly). The...
2
1663
by: Fred W. | last post by:
I wondering if there is a way to determine which objects are bound to my DataTable. I update my DataTable from a thread. My DataTable is bound to a DataGrid in my main UI. Apparently I will need to perform my table update on the UI Thread or the DataGrid has issues. Ideally I would like the DataTable to tell me who is bound to it and then check if that object implements ISynchronizeInvoke and use that to determine that I need to actually...
1
1246
by: Latha | last post by:
I have bound a array of objects to datagridview in vb.net. If I add new objects to array, that doesn't reflect in datagridview. What I have to do? Thanks, Latha.P
0
8392
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8305
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8825
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8732
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
5632
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4151
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4302
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1611
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.