Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by wmd3

  1. wmd3

    CSS for different <input> types?

    I have found some examples of... <style> input[type=button] {...} </style> But, I can't get this to work either. :( Any other ideas?
  2. wmd3

    non-selectable text

    You could try... <a onSelect=&quot;return false;&quot;> Your Text Here... </a> Hope this helps.
  3. wmd3

    CSS for different &lt;input&gt; types?

    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...
  4. wmd3

    Selecting Multiple items from a List(CFSELECT) on load?

    That is what I have eventually done, Carl. Here is my code if anyone else has the same problem. <CFOUTPUT> <CFSelect NAME=&quot;lstName&quot; query=&quot;queryName&quot; value=&quot;valueColumn&quot; display=&quot;displayColumn&quot; size=14 multiple...
  5. wmd3

    Selecting Multiple items from a List(CFSELECT) on load?

    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=&quot;lstName&quot; QUERY=&quot;QueryName&quot; SIZE=6 MULTIPLE /> If I select only one item it works. <CFSELECT NAME=&quot;lstName&quot...
  6. wmd3

    Pass Basic Security from site to SQL Server for CFQUERY?

    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.
  7. wmd3

    Pass Basic Security from site to SQL Server for CFQUERY?

    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...
  8. wmd3

    Crash on exit, Timer did not expire

    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 &quot;DoEvents&quot; to make sure it takes effect. -Bill
  9. wmd3

    Using ADODB to Connect to a ODBC Datasource.

    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 &quot;Provider=MSDASQL.1&quot; _ & &quot;;Persist Security...
  10. wmd3

    Using ADODB to Connect to a ODBC Datasource.

    Thanks, but I know all this. I do it and I get the error &quot;[ISAM]No Data Found.&quot; when I try to Open the Recordset. :( Any ideas? - Bill
  11. wmd3

    Properties

    If you have a variable of &quot;name&quot; 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 &quot;N&quot;. - Bill
  12. wmd3

    Using ADODB to Connect to a ODBC Datasource.

    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...
  13. wmd3

    Stop Windows Shut Down

    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...
  14. wmd3

    Access Remedy Database from VB?

    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 (&quot;SELECT ...&quot;) I get the following error...

Part and Inventory Search

Back
Top