PC Review


Reply
Thread Tools Rate Thread

another access/vb ?

 
 
rigamonk
Guest
Posts: n/a
 
      23rd Feb 2005
Thanks for the help on my last question...no another one....
im using rsa encryption in my vb.net app, and i want to store a encrypted
value in a access db field. i have the field set to memo, but it comes with
an oversize error. the value is only 1024...whats up?

thanks
patrick
 
Reply With Quote
 
 
 
 
Mohamoss
Guest
Posts: n/a
 
      23rd Feb 2005
Hi Patrick
DO you get this error as an exception form within your code or is it
deligated from access? . try debugging to view the size of your encrypted
value
Mohamed M .Mahfouz
Developer Support Engineer
ITWorx on behalf of Microsoft EMEA GTSC


 
Reply With Quote
 
Paul Clement
Guest
Posts: n/a
 
      23rd Feb 2005
On Wed, 23 Feb 2005 08:45:18 -0600, rigamonk <(E-Mail Removed)> wrote:

¤ Thanks for the help on my last question...no another one....
¤ im using rsa encryption in my vb.net app, and i want to store a encrypted
¤ value in a access db field. i have the field set to memo, but it comes with
¤ an oversize error. the value is only 1024...whats up?

I don't believe you can directly update a memo column if you need to surpass the 255 character
limit. You might want to post your code so we can see how you are updating this column.


Paul ~~~ (E-Mail Removed)
Microsoft MVP (Visual Basic)
 
Reply With Quote
 
rigamonk
Guest
Posts: n/a
 
      25th Feb 2005
Paul Clement <(E-Mail Removed)> wrote in
news:(E-Mail Removed):

> On Wed, 23 Feb 2005 08:45:18 -0600, rigamonk
> <(E-Mail Removed)> wrote:
>
> ¤ Thanks for the help on my last question...no another one....
> ¤ im using rsa encryption in my vb.net app, and i want to store a
> encrypted ¤ value in a access db field. i have the field set to memo,
> but it comes with ¤ an oversize error. the value is only 1024...whats
> up?
>
> I don't believe you can directly update a memo column if you need to
> surpass the 255 character limit. You might want to post your code so
> we can see how you are updating this column.
>
>
> Paul ~~~ (E-Mail Removed)
> Microsoft MVP (Visual Basic)


the error was coming from within the try block in my app.I believe youre
right....once i switched to sh SHA1 (64 bit) i got no complaints.
the access help, however, indicated that long and/or formatted text could
be stored using ole object...but that didnt work either.

thanks again,
patrick
 
Reply With Quote
 
Thomas Wenning
Guest
Posts: n/a
 
      1st Mar 2005

"rigamonk" <(E-Mail Removed)> schrieb im Newsbeitrag
news:fPidnRROEZupHYPfRVn-(E-Mail Removed)...
> Paul Clement <(E-Mail Removed)> wrote in
> news:(E-Mail Removed):
>
> > On Wed, 23 Feb 2005 08:45:18 -0600, rigamonk
> > <(E-Mail Removed)> wrote:
> >
> > ¤ Thanks for the help on my last question...no another one....
> > ¤ im using rsa encryption in my vb.net app, and i want to store a
> > encrypted ¤ value in a access db field. i have the field set to memo,
> > but it comes with ¤ an oversize error. the value is only 1024...whats
> > up?
> >
> > I don't believe you can directly update a memo column if you need to
> > surpass the 255 character limit. You might want to post your code so
> > we can see how you are updating this column.
> >
> >
> > Paul ~~~ (E-Mail Removed)
> > Microsoft MVP (Visual Basic)

>
> the error was coming from within the try block in my app.I believe youre
> right....once i switched to sh SHA1 (64 bit) i got no complaints.
> the access help, however, indicated that long and/or formatted text could
> be stored using ole object...but that didnt work either.
>
> thanks again,
> patrick


Hi Patrick,

http://support.microsoft.com/default...b;en-us;308042

Greeting

Thomas


 
Reply With Quote
 
Thomas Wenning
Guest
Posts: n/a
 
      1st Mar 2005

"rigamonk" <(E-Mail Removed)> schrieb im Newsbeitrag
news:fPidnRROEZupHYPfRVn-(E-Mail Removed)...
> Paul Clement <(E-Mail Removed)> wrote in
> news:(E-Mail Removed):
>
> > On Wed, 23 Feb 2005 08:45:18 -0600, rigamonk
> > <(E-Mail Removed)> wrote:
> >
> > ¤ Thanks for the help on my last question...no another one....
> > ¤ im using rsa encryption in my vb.net app, and i want to store a
> > encrypted ¤ value in a access db field. i have the field set to memo,
> > but it comes with ¤ an oversize error. the value is only 1024...whats
> > up?
> >
> > I don't believe you can directly update a memo column if you need to
> > surpass the 255 character limit. You might want to post your code so
> > we can see how you are updating this column.
> >
> >
> > Paul ~~~ (E-Mail Removed)
> > Microsoft MVP (Visual Basic)

>
> the error was coming from within the try block in my app.I believe youre
> right....once i switched to sh SHA1 (64 bit) i got no complaints.
> the access help, however, indicated that long and/or formatted text could
> be stored using ole object...but that didnt work either.
>
> thanks again,
> patrick


Hi Patrick,

use my example for a access solution with the NET Framework Class Library
namespaces: system.data.oleclient.
Define the type of the field in the access database as ole.

Greeting

Thomas


 
Reply With Quote
 
Thomas Wenning
Guest
Posts: n/a
 
      1st Mar 2005

"rigamonk" <(E-Mail Removed)> schrieb im Newsbeitrag
news:fPidnRROEZupHYPfRVn-(E-Mail Removed)...
> Paul Clement <(E-Mail Removed)> wrote in
> news:(E-Mail Removed):
>
> > On Wed, 23 Feb 2005 08:45:18 -0600, rigamonk
> > <(E-Mail Removed)> wrote:
> >
> > ¤ Thanks for the help on my last question...no another one....
> > ¤ im using rsa encryption in my vb.net app, and i want to store a
> > encrypted ¤ value in a access db field. i have the field set to memo,
> > but it comes with ¤ an oversize error. the value is only 1024...whats
> > up?
> >
> > I don't believe you can directly update a memo column if you need to
> > surpass the 255 character limit. You might want to post your code so
> > we can see how you are updating this column.
> >
> >
> > Paul ~~~ (E-Mail Removed)
> > Microsoft MVP (Visual Basic)

>
> the error was coming from within the try block in my app.I believe youre
> right....once i switched to sh SHA1 (64 bit) i got no complaints.
> the access help, however, indicated that long and/or formatted text could
> be stored using ole object...but that didnt work either.
>
> thanks again,
> patrick


Hi,

read this:
http://www.vbdotnetheaven.com/Code/Sept2003/2175.asp

Greeting

Thomas


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't open my Access files after conversion from Access 97 to Access 2003 M Shafaat Microsoft Access 5 10th Apr 2010 09:04 PM
Saving Access 2007 database in Access 2003 format fails in Access =?Utf-8?B?U3Bpcm8=?= Microsoft Access External Data 0 13th Aug 2006 08:37 AM
W2K3 Service w/ UNC Access, Local Disk Access, and DB Access Rob Microsoft C# .NET 6 2nd Aug 2004 01:44 PM
Access "showing images on first page only of very wide Access report. Windows XP, Access XP Jack Microsoft Access Reports 4 18th Nov 2003 03:01 PM
Re: Allowing users (w/o MS Access) to access an Access 2000 database Wayne Morgan Microsoft Access 0 29th Sep 2003 11:46 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:58 AM.