472,354 Members | 2,087 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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

URGENT HELP! SQL+VB.NET for New Application

Hi,
I am developing small insurance application using VB.NET and SQL server 2000.
My tables in SQL server are:

tbl_Customer (stores the custmer information)
tbl_CustImage (stores the customer picture and signature)
tbl_InsuranceCompanies (stores the Insurance companies information)
tbl_InsuranceType (stores the insurance type)
tbl_LifeInsurance (stores the LifeInsurance information)
tbl_FireQuakeInsurance (stores the FireQuakeInsuranceinformation)
tbl_CarInsurance (stores the LifeInsurance information)
tbl_BLOBCustomer (store with CustomerID for Document)
tbl_BLOBLIFEInsurance (store with LIFEInsuranceID for Document)
tbl_BLOBFIREQUAKEInsurance (store with FQInsuranceID for Document)
tbl_BLOBCARInsurance (store with CARInsuranceID for Document)

--------------------------------------------------------------------------------

If the Insurance is going to renewed move old data into below table

tbl_OLDLIFEInsurance (store with new ID)
tbl_OLDFIREInsurance (store with new ID)
tbl_OLDCARInsurance (store with new ID)

----------------------------------------------------------------------------------

My question is that when the Insurance going to be renew I need to move old
data in old.... tables and replace the data for the Insurance that going to
be renewed using InsurancePolicyID as ID.

Doing things like in above are correct or not?
And secondly how do I store Word Document or Excel file into SQL server 2000
and later retrive for editinig and restore the documents or excel files?

Thank you very much for your kind understanding for reading my post.

Rgds
Niyazi
Apr 26 '06 #1
7 1686
I am not quite sure I am following the first question.

For saving the data into the SqlServer you could store it into a binary
field .. I will however not recommend this method if you can avoid it.
Instead store the documents on a network shared and stored a string path to
the document. This example reads/writes images to a SqlServer ... the
methodology is the same.

"Niyazi" <Ni****@discussions.microsoft.com> wrote in message
news:E3**********************************@microsof t.com...
Hi,
I am developing small insurance application using VB.NET and SQL server
2000.
My tables in SQL server are:

tbl_Customer (stores the custmer information)
tbl_CustImage (stores the customer picture and signature)
tbl_InsuranceCompanies (stores the Insurance companies information)
tbl_InsuranceType (stores the insurance type)
tbl_LifeInsurance (stores the LifeInsurance information)
tbl_FireQuakeInsurance (stores the FireQuakeInsuranceinformation)
tbl_CarInsurance (stores the LifeInsurance information)
tbl_BLOBCustomer (store with CustomerID for Document)
tbl_BLOBLIFEInsurance (store with LIFEInsuranceID for Document)
tbl_BLOBFIREQUAKEInsurance (store with FQInsuranceID for Document)
tbl_BLOBCARInsurance (store with CARInsuranceID for Document)

--------------------------------------------------------------------------------

If the Insurance is going to renewed move old data into below table

tbl_OLDLIFEInsurance (store with new ID)
tbl_OLDFIREInsurance (store with new ID)
tbl_OLDCARInsurance (store with new ID)

----------------------------------------------------------------------------------

My question is that when the Insurance going to be renew I need to move
old
data in old.... tables and replace the data for the Insurance that going
to
be renewed using InsurancePolicyID as ID.

Doing things like in above are correct or not?
And secondly how do I store Word Document or Excel file into SQL server
2000
and later retrive for editinig and restore the documents or excel files?

Thank you very much for your kind understanding for reading my post.

Rgds
Niyazi

Apr 26 '06 #2
this example even!
http://www.c-sharpcorner.com/UploadF...f-5addf5b77ca4

Cheers,

Greg
"Greg Young [MVP]" <Dr*************@hotmail.com> wrote in message
news:Oi**************@TK2MSFTNGP02.phx.gbl...
I am not quite sure I am following the first question.

For saving the data into the SqlServer you could store it into a binary
field .. I will however not recommend this method if you can avoid it.
Instead store the documents on a network shared and stored a string path
to the document. This example reads/writes images to a SqlServer ... the
methodology is the same.

"Niyazi" <Ni****@discussions.microsoft.com> wrote in message
news:E3**********************************@microsof t.com...
Hi,
I am developing small insurance application using VB.NET and SQL server
2000.
My tables in SQL server are:

tbl_Customer (stores the custmer information)
tbl_CustImage (stores the customer picture and
signature)
tbl_InsuranceCompanies (stores the Insurance companies information)
tbl_InsuranceType (stores the insurance type)
tbl_LifeInsurance (stores the LifeInsurance information)
tbl_FireQuakeInsurance (stores the FireQuakeInsuranceinformation)
tbl_CarInsurance (stores the LifeInsurance information)
tbl_BLOBCustomer (store with CustomerID for Document)
tbl_BLOBLIFEInsurance (store with LIFEInsuranceID for Document)
tbl_BLOBFIREQUAKEInsurance (store with FQInsuranceID for Document)
tbl_BLOBCARInsurance (store with CARInsuranceID for Document)

--------------------------------------------------------------------------------

If the Insurance is going to renewed move old data into below table

tbl_OLDLIFEInsurance (store with new ID)
tbl_OLDFIREInsurance (store with new ID)
tbl_OLDCARInsurance (store with new ID)

----------------------------------------------------------------------------------

My question is that when the Insurance going to be renew I need to move
old
data in old.... tables and replace the data for the Insurance that going
to
be renewed using InsurancePolicyID as ID.

Doing things like in above are correct or not?
And secondly how do I store Word Document or Excel file into SQL server
2000
and later retrive for editinig and restore the documents or excel files?

Thank you very much for your kind understanding for reading my post.

Rgds
Niyazi


Apr 26 '06 #3
Hi Greg,

I understand. But what is your reason that you not recommend saving Word
Document in SQL Server 2000.

The document for each customer is one page and for each insurance it will be
4 to 6 page.

My reason is to save and retrive Word Document from SQL server comes from
security issues that the company is having now. Plus I want to retrive word
document in VB.NET form and edit it and when user clicks tho save it will
going to save it in SQL Server plus the form also contains the print
functionality.

Sorry to say that I am first time going to use Word document in VB.NET
application and I am bit confused after reading many post in www. So here is
more question to you if you don't mind.

- How can I save Word Document in SQL Server 2000 SP4 as binary data without
losing the formating and
- How can I receive the Word Documemnt from SQL Server 2000 into VB.NET form
for editing, re-saving into
SQL Server as well as print functionlity.

If as you say, the way saving Word Document into SQL Server is not
advasiable and your reason if you explain to me is clear, I might consider to
goto your way and accomplish my task. But I will be need further your
assitant for:

- How can I save and retrive the Word Document using VB.NET in Shared folder
on Network or local Harddisk using
VB.NET
- How can I use the link to open word document into VB.NET form
- How can I use save and print functionlity to edit and save back into
original destination the Word Document or use the
print button to prin the Word Document.

I thank you for your kind understanding.

Rgds,
GC

"Greg Young [MVP]" wrote:
this example even!
http://www.c-sharpcorner.com/UploadF...f-5addf5b77ca4

Cheers,

Greg
"Greg Young [MVP]" <Dr*************@hotmail.com> wrote in message
news:Oi**************@TK2MSFTNGP02.phx.gbl...
I am not quite sure I am following the first question.

For saving the data into the SqlServer you could store it into a binary
field .. I will however not recommend this method if you can avoid it.
Instead store the documents on a network shared and stored a string path
to the document. This example reads/writes images to a SqlServer ... the
methodology is the same.

"Niyazi" <Ni****@discussions.microsoft.com> wrote in message
news:E3**********************************@microsof t.com...
Hi,
I am developing small insurance application using VB.NET and SQL server
2000.
My tables in SQL server are:

tbl_Customer (stores the custmer information)
tbl_CustImage (stores the customer picture and
signature)
tbl_InsuranceCompanies (stores the Insurance companies information)
tbl_InsuranceType (stores the insurance type)
tbl_LifeInsurance (stores the LifeInsurance information)
tbl_FireQuakeInsurance (stores the FireQuakeInsuranceinformation)
tbl_CarInsurance (stores the LifeInsurance information)
tbl_BLOBCustomer (store with CustomerID for Document)
tbl_BLOBLIFEInsurance (store with LIFEInsuranceID for Document)
tbl_BLOBFIREQUAKEInsurance (store with FQInsuranceID for Document)
tbl_BLOBCARInsurance (store with CARInsuranceID for Document)

--------------------------------------------------------------------------------

If the Insurance is going to renewed move old data into below table

tbl_OLDLIFEInsurance (store with new ID)
tbl_OLDFIREInsurance (store with new ID)
tbl_OLDCARInsurance (store with new ID)

----------------------------------------------------------------------------------

My question is that when the Insurance going to be renew I need to move
old
data in old.... tables and replace the data for the Insurance that going
to
be renewed using InsurancePolicyID as ID.

Doing things like in above are correct or not?
And secondly how do I store Word Document or Excel file into SQL server
2000
and later retrive for editinig and restore the documents or excel files?

Thank you very much for your kind understanding for reading my post.

Rgds
Niyazi



Apr 26 '06 #4
From what I am told ... SqlServer does not like it performance wise when you
store lots of large binary fields in it. I would be the wrong person to ask
for the details on that though, the SqlServer newsgroup could probably give
you a very complete answer as to why that happens ... I have always based
upon the recommendation of people who know alot more about SQL server than I
kept my files outside of the database with path links.

If you were to store it in the database though, the access would work
exactly like the image example I gave you earlier (you could in fact use the
..doc file and save it, thus when you reconstitute it it is the same exact
doc file). The only difference between the article is that its binary data
is images, yours would be word docs :)

As for the word automation that you mention you can do this relatively
easily; if you google on "VB.NET WORD AUTOMATION" there are many examples
out there. Another option would be to use a control that supports the same
formats http://www.textcontrol.com/ has a control that does this (commercial
product) which would also allow tighter integration with your software.

Cheers,

Greg
"Niyazi" <Ni****@discussions.microsoft.com> wrote in message
news:D0**********************************@microsof t.com...
Hi Greg,

I understand. But what is your reason that you not recommend saving Word
Document in SQL Server 2000.

The document for each customer is one page and for each insurance it will
be
4 to 6 page.

My reason is to save and retrive Word Document from SQL server comes from
security issues that the company is having now. Plus I want to retrive
word
document in VB.NET form and edit it and when user clicks tho save it will
going to save it in SQL Server plus the form also contains the print
functionality.

Sorry to say that I am first time going to use Word document in VB.NET
application and I am bit confused after reading many post in www. So here
is
more question to you if you don't mind.

- How can I save Word Document in SQL Server 2000 SP4 as binary data
without
losing the formating and
- How can I receive the Word Documemnt from SQL Server 2000 into VB.NET
form
for editing, re-saving into
SQL Server as well as print functionlity.

If as you say, the way saving Word Document into SQL Server is not
advasiable and your reason if you explain to me is clear, I might consider
to
goto your way and accomplish my task. But I will be need further your
assitant for:

- How can I save and retrive the Word Document using VB.NET in Shared
folder
on Network or local Harddisk using
VB.NET
- How can I use the link to open word document into VB.NET form
- How can I use save and print functionlity to edit and save back into
original destination the Word Document or use the
print button to prin the Word Document.

I thank you for your kind understanding.

Rgds,
GC

"Greg Young [MVP]" wrote:
this example even!
http://www.c-sharpcorner.com/UploadF...f-5addf5b77ca4

Cheers,

Greg
"Greg Young [MVP]" <Dr*************@hotmail.com> wrote in message
news:Oi**************@TK2MSFTNGP02.phx.gbl...
>I am not quite sure I am following the first question.
>
> For saving the data into the SqlServer you could store it into a binary
> field .. I will however not recommend this method if you can avoid it.
> Instead store the documents on a network shared and stored a string
> path
> to the document. This example reads/writes images to a SqlServer ...
> the
> methodology is the same.
>
>
>
> "Niyazi" <Ni****@discussions.microsoft.com> wrote in message
> news:E3**********************************@microsof t.com...
>> Hi,
>> I am developing small insurance application using VB.NET and SQL
>> server
>> 2000.
>> My tables in SQL server are:
>>
>> tbl_Customer (stores the custmer information)
>> tbl_CustImage (stores the customer picture and
>> signature)
>> tbl_InsuranceCompanies (stores the Insurance companies information)
>> tbl_InsuranceType (stores the insurance type)
>>
>>
>> tbl_LifeInsurance (stores the LifeInsurance information)
>> tbl_FireQuakeInsurance (stores the FireQuakeInsuranceinformation)
>> tbl_CarInsurance (stores the LifeInsurance information)
>>
>>
>> tbl_BLOBCustomer (store with CustomerID for Document)
>> tbl_BLOBLIFEInsurance (store with LIFEInsuranceID for Document)
>> tbl_BLOBFIREQUAKEInsurance (store with FQInsuranceID for Document)
>> tbl_BLOBCARInsurance (store with CARInsuranceID for Document)
>>
>> --------------------------------------------------------------------------------
>>
>> If the Insurance is going to renewed move old data into below table
>>
>> tbl_OLDLIFEInsurance (store with new ID)
>> tbl_OLDFIREInsurance (store with new ID)
>> tbl_OLDCARInsurance (store with new ID)
>>
>> ----------------------------------------------------------------------------------
>>
>> My question is that when the Insurance going to be renew I need to
>> move
>> old
>> data in old.... tables and replace the data for the Insurance that
>> going
>> to
>> be renewed using InsurancePolicyID as ID.
>>
>> Doing things like in above are correct or not?
>> And secondly how do I store Word Document or Excel file into SQL
>> server
>> 2000
>> and later retrive for editinig and restore the documents or excel
>> files?
>>
>> Thank you very much for your kind understanding for reading my post.
>>
>> Rgds
>> Niyazi
>>
>>
>
>


Apr 26 '06 #5
Hi Greg
I will goto SqlServer newsgroup.

Thank you.

Rgds,
Niyazi

"Greg Young [MVP]" wrote:
From what I am told ... SqlServer does not like it performance wise when you
store lots of large binary fields in it. I would be the wrong person to ask
for the details on that though, the SqlServer newsgroup could probably give
you a very complete answer as to why that happens ... I have always based
upon the recommendation of people who know alot more about SQL server than I
kept my files outside of the database with path links.

If you were to store it in the database though, the access would work
exactly like the image example I gave you earlier (you could in fact use the
..doc file and save it, thus when you reconstitute it it is the same exact
doc file). The only difference between the article is that its binary data
is images, yours would be word docs :)

As for the word automation that you mention you can do this relatively
easily; if you google on "VB.NET WORD AUTOMATION" there are many examples
out there. Another option would be to use a control that supports the same
formats http://www.textcontrol.com/ has a control that does this (commercial
product) which would also allow tighter integration with your software.

Cheers,

Greg
"Niyazi" <Ni****@discussions.microsoft.com> wrote in message
news:D0**********************************@microsof t.com...
Hi Greg,

I understand. But what is your reason that you not recommend saving Word
Document in SQL Server 2000.

The document for each customer is one page and for each insurance it will
be
4 to 6 page.

My reason is to save and retrive Word Document from SQL server comes from
security issues that the company is having now. Plus I want to retrive
word
document in VB.NET form and edit it and when user clicks tho save it will
going to save it in SQL Server plus the form also contains the print
functionality.

Sorry to say that I am first time going to use Word document in VB.NET
application and I am bit confused after reading many post in www. So here
is
more question to you if you don't mind.

- How can I save Word Document in SQL Server 2000 SP4 as binary data
without
losing the formating and
- How can I receive the Word Documemnt from SQL Server 2000 into VB.NET
form
for editing, re-saving into
SQL Server as well as print functionlity.

If as you say, the way saving Word Document into SQL Server is not
advasiable and your reason if you explain to me is clear, I might consider
to
goto your way and accomplish my task. But I will be need further your
assitant for:

- How can I save and retrive the Word Document using VB.NET in Shared
folder
on Network or local Harddisk using
VB.NET
- How can I use the link to open word document into VB.NET form
- How can I use save and print functionlity to edit and save back into
original destination the Word Document or use the
print button to prin the Word Document.

I thank you for your kind understanding.

Rgds,
GC

"Greg Young [MVP]" wrote:
this example even!
http://www.c-sharpcorner.com/UploadF...f-5addf5b77ca4

Cheers,

Greg
"Greg Young [MVP]" <Dr*************@hotmail.com> wrote in message
news:Oi**************@TK2MSFTNGP02.phx.gbl...
>I am not quite sure I am following the first question.
>
> For saving the data into the SqlServer you could store it into a binary
> field .. I will however not recommend this method if you can avoid it.
> Instead store the documents on a network shared and stored a string
> path
> to the document. This example reads/writes images to a SqlServer ...
> the
> methodology is the same.
>
>
>
> "Niyazi" <Ni****@discussions.microsoft.com> wrote in message
> news:E3**********************************@microsof t.com...
>> Hi,
>> I am developing small insurance application using VB.NET and SQL
>> server
>> 2000.
>> My tables in SQL server are:
>>
>> tbl_Customer (stores the custmer information)
>> tbl_CustImage (stores the customer picture and
>> signature)
>> tbl_InsuranceCompanies (stores the Insurance companies information)
>> tbl_InsuranceType (stores the insurance type)
>>
>>
>> tbl_LifeInsurance (stores the LifeInsurance information)
>> tbl_FireQuakeInsurance (stores the FireQuakeInsuranceinformation)
>> tbl_CarInsurance (stores the LifeInsurance information)
>>
>>
>> tbl_BLOBCustomer (store with CustomerID for Document)
>> tbl_BLOBLIFEInsurance (store with LIFEInsuranceID for Document)
>> tbl_BLOBFIREQUAKEInsurance (store with FQInsuranceID for Document)
>> tbl_BLOBCARInsurance (store with CARInsuranceID for Document)
>>
>> --------------------------------------------------------------------------------
>>
>> If the Insurance is going to renewed move old data into below table
>>
>> tbl_OLDLIFEInsurance (store with new ID)
>> tbl_OLDFIREInsurance (store with new ID)
>> tbl_OLDCARInsurance (store with new ID)
>>
>> ----------------------------------------------------------------------------------
>>
>> My question is that when the Insurance going to be renew I need to
>> move
>> old
>> data in old.... tables and replace the data for the Insurance that
>> going
>> to
>> be renewed using InsurancePolicyID as ID.
>>
>> Doing things like in above are correct or not?
>> And secondly how do I store Word Document or Excel file into SQL
>> server
>> 2000
>> and later retrive for editinig and restore the documents or excel
>> files?
>>
>> Thank you very much for your kind understanding for reading my post.
>>
>> Rgds
>> Niyazi
>>
>>
>
>


Apr 27 '06 #6
This report gives a full analysis on storing files in your DB.

Cheers,

Greg
"Greg Young [MVP]" <Dr*************@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
From what I am told ... SqlServer does not like it performance wise when
you store lots of large binary fields in it. I would be the wrong person
to ask for the details on that though, the SqlServer newsgroup could
probably give you a very complete answer as to why that happens ... I have
always based upon the recommendation of people who know alot more about
SQL server than I kept my files outside of the database with path links.

If you were to store it in the database though, the access would work
exactly like the image example I gave you earlier (you could in fact use
the .doc file and save it, thus when you reconstitute it it is the same
exact doc file). The only difference between the article is that its
binary data is images, yours would be word docs :)

As for the word automation that you mention you can do this relatively
easily; if you google on "VB.NET WORD AUTOMATION" there are many examples
out there. Another option would be to use a control that supports the same
formats http://www.textcontrol.com/ has a control that does this
(commercial product) which would also allow tighter integration with your
software.

Cheers,

Greg
"Niyazi" <Ni****@discussions.microsoft.com> wrote in message
news:D0**********************************@microsof t.com...
Hi Greg,

I understand. But what is your reason that you not recommend saving Word
Document in SQL Server 2000.

The document for each customer is one page and for each insurance it will
be
4 to 6 page.

My reason is to save and retrive Word Document from SQL server comes from
security issues that the company is having now. Plus I want to retrive
word
document in VB.NET form and edit it and when user clicks tho save it will
going to save it in SQL Server plus the form also contains the print
functionality.

Sorry to say that I am first time going to use Word document in VB.NET
application and I am bit confused after reading many post in www. So here
is
more question to you if you don't mind.

- How can I save Word Document in SQL Server 2000 SP4 as binary data
without
losing the formating and
- How can I receive the Word Documemnt from SQL Server 2000 into VB.NET
form
for editing, re-saving into
SQL Server as well as print functionlity.

If as you say, the way saving Word Document into SQL Server is not
advasiable and your reason if you explain to me is clear, I might
consider to
goto your way and accomplish my task. But I will be need further your
assitant for:

- How can I save and retrive the Word Document using VB.NET in Shared
folder
on Network or local Harddisk using
VB.NET
- How can I use the link to open word document into VB.NET form
- How can I use save and print functionlity to edit and save back into
original destination the Word Document or use the
print button to prin the Word Document.

I thank you for your kind understanding.

Rgds,
GC

"Greg Young [MVP]" wrote:
this example even!
http://www.c-sharpcorner.com/UploadF...f-5addf5b77ca4

Cheers,

Greg
"Greg Young [MVP]" <Dr*************@hotmail.com> wrote in message
news:Oi**************@TK2MSFTNGP02.phx.gbl...
>I am not quite sure I am following the first question.
>
> For saving the data into the SqlServer you could store it into a
> binary
> field .. I will however not recommend this method if you can avoid it.
> Instead store the documents on a network shared and stored a string
> path
> to the document. This example reads/writes images to a SqlServer ...
> the
> methodology is the same.
>
>
>
> "Niyazi" <Ni****@discussions.microsoft.com> wrote in message
> news:E3**********************************@microsof t.com...
>> Hi,
>> I am developing small insurance application using VB.NET and SQL
>> server
>> 2000.
>> My tables in SQL server are:
>>
>> tbl_Customer (stores the custmer information)
>> tbl_CustImage (stores the customer picture and
>> signature)
>> tbl_InsuranceCompanies (stores the Insurance companies information)
>> tbl_InsuranceType (stores the insurance type)
>>
>>
>> tbl_LifeInsurance (stores the LifeInsurance information)
>> tbl_FireQuakeInsurance (stores the FireQuakeInsuranceinformation)
>> tbl_CarInsurance (stores the LifeInsurance information)
>>
>>
>> tbl_BLOBCustomer (store with CustomerID for Document)
>> tbl_BLOBLIFEInsurance (store with LIFEInsuranceID for Document)
>> tbl_BLOBFIREQUAKEInsurance (store with FQInsuranceID for Document)
>> tbl_BLOBCARInsurance (store with CARInsuranceID for Document)
>>
>> --------------------------------------------------------------------------------
>>
>> If the Insurance is going to renewed move old data into below table
>>
>> tbl_OLDLIFEInsurance (store with new ID)
>> tbl_OLDFIREInsurance (store with new ID)
>> tbl_OLDCARInsurance (store with new ID)
>>
>> ----------------------------------------------------------------------------------
>>
>> My question is that when the Insurance going to be renew I need to
>> move
>> old
>> data in old.... tables and replace the data for the Insurance that
>> going
>> to
>> be renewed using InsurancePolicyID as ID.
>>
>> Doing things like in above are correct or not?
>> And secondly how do I store Word Document or Excel file into SQL
>> server
>> 2000
>> and later retrive for editinig and restore the documents or excel
>> files?
>>
>> Thank you very much for your kind understanding for reading my post.
>>
>> Rgds
>> Niyazi
>>
>>
>
>


May 1 '06 #7
forgot the link it seems
http://research.microsoft.com/resear...report&id=1089
"Greg Young" <Dr*************@hotmail.com> wrote in message
news:ep**************@TK2MSFTNGP04.phx.gbl...
This report gives a full analysis on storing files in your DB.

Cheers,

Greg
"Greg Young [MVP]" <Dr*************@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
From what I am told ... SqlServer does not like it performance wise when
you store lots of large binary fields in it. I would be the wrong person
to ask for the details on that though, the SqlServer newsgroup could
probably give you a very complete answer as to why that happens ... I
have always based upon the recommendation of people who know alot more
about SQL server than I kept my files outside of the database with path
links.

If you were to store it in the database though, the access would work
exactly like the image example I gave you earlier (you could in fact use
the .doc file and save it, thus when you reconstitute it it is the same
exact doc file). The only difference between the article is that its
binary data is images, yours would be word docs :)

As for the word automation that you mention you can do this relatively
easily; if you google on "VB.NET WORD AUTOMATION" there are many examples
out there. Another option would be to use a control that supports the
same formats http://www.textcontrol.com/ has a control that does this
(commercial product) which would also allow tighter integration with your
software.

Cheers,

Greg
"Niyazi" <Ni****@discussions.microsoft.com> wrote in message
news:D0**********************************@microsof t.com...
Hi Greg,

I understand. But what is your reason that you not recommend saving
Word
Document in SQL Server 2000.

The document for each customer is one page and for each insurance it
will be
4 to 6 page.

My reason is to save and retrive Word Document from SQL server comes
from
security issues that the company is having now. Plus I want to retrive
word
document in VB.NET form and edit it and when user clicks tho save it
will
going to save it in SQL Server plus the form also contains the print
functionality.

Sorry to say that I am first time going to use Word document in VB.NET
application and I am bit confused after reading many post in www. So
here is
more question to you if you don't mind.

- How can I save Word Document in SQL Server 2000 SP4 as binary data
without
losing the formating and
- How can I receive the Word Documemnt from SQL Server 2000 into VB.NET
form
for editing, re-saving into
SQL Server as well as print functionlity.

If as you say, the way saving Word Document into SQL Server is not
advasiable and your reason if you explain to me is clear, I might
consider to
goto your way and accomplish my task. But I will be need further your
assitant for:

- How can I save and retrive the Word Document using VB.NET in Shared
folder
on Network or local Harddisk using
VB.NET
- How can I use the link to open word document into VB.NET form
- How can I use save and print functionlity to edit and save back into
original destination the Word Document or use the
print button to prin the Word Document.

I thank you for your kind understanding.

Rgds,
GC

"Greg Young [MVP]" wrote:

this example even!
http://www.c-sharpcorner.com/UploadF...f-5addf5b77ca4

Cheers,

Greg
"Greg Young [MVP]" <Dr*************@hotmail.com> wrote in message
news:Oi**************@TK2MSFTNGP02.phx.gbl...
>I am not quite sure I am following the first question.
>
> For saving the data into the SqlServer you could store it into a
> binary
> field .. I will however not recommend this method if you can avoid
> it.
> Instead store the documents on a network shared and stored a string
> path
> to the document. This example reads/writes images to a SqlServer ...
> the
> methodology is the same.
>
>
>
> "Niyazi" <Ni****@discussions.microsoft.com> wrote in message
> news:E3**********************************@microsof t.com...
>> Hi,
>> I am developing small insurance application using VB.NET and SQL
>> server
>> 2000.
>> My tables in SQL server are:
>>
>> tbl_Customer (stores the custmer information)
>> tbl_CustImage (stores the customer picture and
>> signature)
>> tbl_InsuranceCompanies (stores the Insurance companies
>> information)
>> tbl_InsuranceType (stores the insurance type)
>>
>>
>> tbl_LifeInsurance (stores the LifeInsurance information)
>> tbl_FireQuakeInsurance (stores the
>> FireQuakeInsuranceinformation)
>> tbl_CarInsurance (stores the LifeInsurance information)
>>
>>
>> tbl_BLOBCustomer (store with CustomerID for Document)
>> tbl_BLOBLIFEInsurance (store with LIFEInsuranceID for Document)
>> tbl_BLOBFIREQUAKEInsurance (store with FQInsuranceID for Document)
>> tbl_BLOBCARInsurance (store with CARInsuranceID for Document)
>>
>> --------------------------------------------------------------------------------
>>
>> If the Insurance is going to renewed move old data into below table
>>
>> tbl_OLDLIFEInsurance (store with new ID)
>> tbl_OLDFIREInsurance (store with new ID)
>> tbl_OLDCARInsurance (store with new ID)
>>
>> ----------------------------------------------------------------------------------
>>
>> My question is that when the Insurance going to be renew I need to
>> move
>> old
>> data in old.... tables and replace the data for the Insurance that
>> going
>> to
>> be renewed using InsurancePolicyID as ID.
>>
>> Doing things like in above are correct or not?
>> And secondly how do I store Word Document or Excel file into SQL
>> server
>> 2000
>> and later retrive for editinig and restore the documents or excel
>> files?
>>
>> Thank you very much for your kind understanding for reading my post.
>>
>> Rgds
>> Niyazi
>>
>>
>
>



May 2 '06 #8

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

Similar topics

2
by: serge calderara | last post by:
Dear all, I have build a setup project for my VB.NET application, I need to know the installation path of an application in order to add file in it. How can do that inside my setup project ?...
2
by: Nick | last post by:
Hey, I'm facing a very strange problem. We have a windows application being maintained in CVS (not VSS!!!! and i hate it! but nevertheless....) Within this application, we are connecting to an...
3
by: Freebeerboy | last post by:
Hi, it would be fantastic if anyone could suggest a solution to this problem. I've written an ASP.Net (VB) application which uses stored procedures in Oracle. All seems fine, except occasionally...
8
by: ChrisK | last post by:
Hi, I'm beginner with VB.net and i have a trouble... At work, they decided to program with tabcontrol...and i'mm in charge of this ! There is my problem. I've a form with one tabcontrol (TBC1...
5
by: Andrew | last post by:
Hey all, Requesting help from the VB.Net gurus in here. I was given a task to write a Windows Service (VB.Net) that would run an external program, and if that program closed for any reason...
0
by: Amjath | last post by:
I put all my application updater block dll to GAC, to avoid keeping this dll's in my bin folder. After doing this all i build my project, it works fine, now i run my project it give me an error...
0
by: BrianDH | last post by:
Hi I have a VB.Net windows application that’s running on 30 PCs. All in the same network. All PCs run XP Pro. All PCs have Framework 1.1 2 of the PC throw an error when they try to send mail...
1
by: r_tirumalasetty | last post by:
Hi All, I need to develop an application that accepts users of a company and i want to develop a code for sending messages to all the users of that company provided that all the names of users are...
5
by: Elena | last post by:
I need the VB.NET code to change the header/footer of an Excel spread sheet, ASAP. I am doing it through a VB application. I can change the ranges/cell values using code, but I do not know how to...
0
by: DavideR | last post by:
I have developed in vs2005 an application shipped from vb6 in a machine with w2000 professional then i make with the setup wizard a setup project for my exe (all reference are added) and then...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made but the http to https rule only works for...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. header("Location:".$urlback); Is this the right layout the...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it so the python app could use a http request to get...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...

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.