Is there any way I can define a different Style Sheet for Input tags with different types?
(Example: <input type=text> <input type=button> )
I have standards on my web site that say the background should be one color, textboxes another color, and buttons another color.
Is there an easy way to...
That is what I have eventually done, Carl.
Here is my code if anyone else has the same problem.
<CFOUTPUT>
<CFSelect NAME="lstName"
query="queryName"
value="valueColumn"
display="displayColumn"
size=14
multiple...
Hi,
I am trying to select multiple items from a list on the load of a page. The list is loaded like the following:
<CFSELECT NAME="lstName" QUERY="QueryName" SIZE=6 MULTIPLE />
If I select only one item it works.
<CFSELECT NAME="lstName"...
Thanks webmigit,
That is also what I have discovered after visting a few other sites.
But, is their a way it can be done? Even if not with a connection string?
Thanks again.
I am creating a web page (CF MX) that uses Basic Authentication and resides on our internal network.
I need to be able to access our SQL Server (version 2000, if that matters) as the current person logged into the site.
I have done this before in .NET by using the a connection string, but I...
Have you tried using Error Handling to capture (and possible ignore) the error?
Other than that, I would say disable the Timer (you have already done that) and then maybe a "DoEvents" to make sure it takes effect.
-Bill
Here is the code that I get the error on.
------------------------------------------
Public Sub Test()
Dim cn As ADODB.Connection
Dim rs As ADODB.Recordset
Set cn = New ADODB.Connection
cn.Open "Provider=MSDASQL.1" _
& ";Persist Security...
If you have a variable of "name" some where in your program VB likes to make everything consistent and changes them all.
To fix this, create another variable:
-------
Dim Name As String
-------
And you should get back your "N".
- Bill
I'm not sure if this is a VB problem, but I was hoping someone here could help me.
I'm trying to connect to a Remedy (a CRM product) Database.
It has it's own ODBC Datasource. I can connect to it successfully, but when I try to retrieve information (SELECT ...) I get the following error...
If you are using the event that I think you are, it should have a variable with it (Cancel As Integer).
If you change Cancel to equal one(1) it should cancel the window unload:
---------------------------------------------
Private Sub Form_Unload(Cancel As Integer)
...
Cancel = 1...
I am trying to SELECT information out of a Remedy Database from a Visual Basic 6 program.
I am using ADODB and connecting to the Remedy ODBC Data Source.
I can open the connection with out error, but when I try to Execute my SQL Statment ("SELECT ...") I get the following error...
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.