Ask a Question related to Coldfusion Database Access, Design and Development.
-
A_Wilson #1
Problem using CFTextArea
I am attempting to add text from a CFTextArea into an MS Access Database table
field of type Memo and getting an error. The default size for a Text Type field
in Access is 255 so even if I have the field type set to Memo the maximum size
of text I can enter using CFTextArea is still 255. Has anyone got around this
problem before.
Thanks.
A_Wilson Guest
-
How to create linebreaks in cftextarea, format = flash
I'm using <cfform format="flash">, and I can't figure out how to create a linebreak in the cftextarea form control. For example, in the following... -
Can we set anchor style in cftextarea with Flashformat??
Can we set anchor style in cftextarea with Flash format?? Here is a sample source. <cfform format="flash"> <cftextarea id="txaTest"... -
Flash Form cftextarea
Getting following error ?String literal was not properly terminated? when loading a cfform flash. It?s coming from a cftextarea tag. The user is... -
cftextarea control?
Ok this forum is exactly what I want to try to do, but how do i do it? It will allow me to bold and http://www.cnn.com in a text box. But I have... -
How do I ... <cftextarea>
Try this instead, im not sure why you are getting that error. <cftextarea name='emp_about' style='font-family:Arial, Helvetica, sans-serif;... -
CF_Oracle #2
Re: Problem using CFTextArea
Try to use in insert/update queries: tableName.fieldName= <cfqueryparam
cfsqltype="cf_sql_longvarchar" value="#form.FieldName#">. We did it in Oracle
for text areas values. If it would not work try to split textarea in several
smaller ones with max size 255. If this is not appropriate - use a database
other than Access.
CF_Oracle Guest



Reply With Quote

