Hi,
Is there a way to have a memo field keep the same format that the data is copied as? I am copying data from .doc or .html files and would like it to save in the field without loosing the format. Is this possible?
Thanks!
Hi,
I am trying to display an image based off the value that is stored in a database field. I put the following code in the Forms On Current event and I have the forms data source set to the proper table.
Dim Path
Path = CStr(Me![ImagePath])
Me!Image7.Picture = Path
ImagePath is a text box...
Hi,
I am attempting to use the LIKE search function but it only works in certain cases. For example: If I search for Garcia it displays all results with the last name of Garcia, but if I type Judge Garcia it displays nothing. The first name in the DB is not judge but is there a way to...
Finally Success! Thank you sooooo much for your help. Below is how I finally got it to work.
<%
Dim fees
fees = Settlements("Atty Fees")
If VarType(fees) = 1 Then fees = "-" else
If VarType(fees) = 6 Then fees = FormatCurrency(Settlements("Atty Fees"),2)
%>
Then...
Thanks for the VarType tip, that's good to know. I did as you said and I am getting a VarType of 6, which I believe is currency. I also tried changing the code to
<%=FormatCurrency(CInt(Settlements("Atty Fees")),2)%> and it's giving me a Overflow: 'CInt' error. Any other ideas...
Hi,
The fields format is set to Currency in the Access DB but it's displaying on the page as a string. I have tried using the formatcurrency and formatnumber functions and both are giving me a Type mismatch error. Below is the code for all three ways I have tried...
I tried taking out the underscores from the code and the tables and I am still getting the syntax error. Below is more code:
<%
Dim objConn
Dim connStr
Dim Firms
Set objConn = Server.CreateObject("ADODB.Connection")
connStr = "DSN=moosensquirrel;uid=;pwd="...
Hi,
Can someone tell me why the following SQL statement is giving this error?
Error:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression 'Atty_2_CaseNew.Atty_ID = Tbl_Unique_Attorneys.Atty ID'...
This statement updates the cart with the next available order #. I looked at the database and the order numbers are all being updated without a loop statement. Here is something that might help also, the part that writes out the html receipt prints out everything fine, but only the email is the...
The code that sends the email, only list the first item in the cart, the cart items are pulled from an access database. The items are all in the database but only the first item shows in the email that is sent. Below is the code, can someome please help? Thanks..
<% option explicit %>
<%...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.