R
Ryan Lashway
Guest
From my searches I have found the data size max for a field, but I am trying to find the correct solution for the following:
In my vb.net application I am using a MS Access database. I have a RichText field that I want to allow the users to enter an email that will be sent from the application.
With this email there will be hard returns, what is the best format to store this in, as right now with access having a Long Text and VB.net seeing it as a String I am getting errors when displaying it on a form.
Error is:
Unhandled exception has occurred in your application. If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately.
Failed to enable constraints. One or more rows contain values violating non-null, unique or foreign-key contains.
There are 3 fields in the database, an auto#, a title (Short Text 150 characters), emailtext (long text).
Continue reading...
In my vb.net application I am using a MS Access database. I have a RichText field that I want to allow the users to enter an email that will be sent from the application.
With this email there will be hard returns, what is the best format to store this in, as right now with access having a Long Text and VB.net seeing it as a String I am getting errors when displaying it on a form.
Error is:
Unhandled exception has occurred in your application. If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately.
Failed to enable constraints. One or more rows contain values violating non-null, unique or foreign-key contains.
There are 3 fields in the database, an auto#, a title (Short Text 150 characters), emailtext (long text).
Continue reading...