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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: oaklandar
  • Order by date
  1. oaklandar

    Outlook Calendar link from web page

    I am trying to grab an Outlook Calendar on a CF web page. The below links to my local Outlook calendar. Please advise how I can get a Group Calendar instead of fetching my local Calendar? <object classid="clsid:0006F063-0000-0000-C000-000000000046" id="ViewCtlFolder" width="100%"...
  2. oaklandar

    Passing multiple selections to database

    I have a page that populates an Access 2000 database. It works great but when I try and put in more than one value for the select multiple options it only passes one value to my database. Please advise how I can get this to work where it will pass all option values that are selected? HTML...
  3. oaklandar

    Resultset not working

    thanks!
  4. oaklandar

    Resultset not working

    It does compute correctly on my page for under 10 pages. Do you or anyone have something better I can use? Thanks.
  5. oaklandar

    Resultset not working

    ...<cfparam name="myStart" default="1"> <cfparam name="myDisplay" default="10"> <cfquery name="myQuery" datasource="myQuery" dbtype="ODBC"> select * from myQuery </cfquery> <cfoutput query="myQuery" startrow="#myStart#" maxrows="#myDisplay#"> <table width="60%" align="center">...
  6. oaklandar

    Find data in Oracle 7.2.3

    Thanks!!!
  7. oaklandar

    Find data in Oracle 7.2.3

    1) Are your target words in the table names or in row data? In Row data type 2) Are you looking for a single string of three words, or are you looking for three separate strings, one word each? Three separate strings such as: San Francisco Bay and the other one will be: AB/3DK/000/19934 3) As...
  8. oaklandar

    Find data in Oracle 7.2.3

    I need to make a report but not sure where the data is located. I did a command to find all my tables: select * from all_tables Anyway to do a search to find information in my Oracle 7.2.3 database? I need to find three words and there are over 150 tables to search. Please advise.
  9. oaklandar

    Update page not showing any record info

    ...the correct argument ID in URL but the update page doesnt show the record. Here is what I have: Record viewing page: <%@ page import="java.sql.*" %> <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); %> <% Connection connection = DriverManager.getConnection("jdbc:odbc:theDSN", "", "")...
  10. oaklandar

    cfgrid link to record

    I already tried that and it didnt work. Any other advise?
  11. oaklandar

    cfgrid link to record

    ...<cfgridcolumn name="ID" header="ID" href="test.cfm?ID=ID" dataalign="LEFT" select="No" display="Yes" type="STRING_NOCASE"> test.cfm page select * from tableOne where ID = #url.id# Please advise because it keeps showing the first record only.
  12. oaklandar

    Save word doc as a PDF

    How do I make a Microsoft Word document save as a PDF?
  13. oaklandar

    One to many relationships between primary keys in two tables

    Thanks, I thought two tables would be related by a primary key one to many relationship to another table. How are they related if I do a one to many relationship? Example: Customer Table customer_id [primary key] Product Table product_id [primary key] customer_id [foreign/secondary...
  14. oaklandar

    One to many relationships between primary keys in two tables

    I just started using mySQL server 4.1 and have a Client GUI tool called mySQL Query Browser. My background has always been with Access 2000 and I was able to create one to many relationships with GUI tool between tables. So if I have TableOne and TableTwo I could create a one to many...
  15. oaklandar

    Insert data from three tables into a new table

    How would I insert data from three tables into one table using a query? My attempt: insert into TableFour select * From TableOne, TableTwo, TableThree It keeps saying duplicate problem. Please advise.
  16. oaklandar

    Spreadsheet options

    I have an Excel spreadsheet (using Office 2000) where I want about 100 people to enter information info into about 25 columns. It will be located on a shared folder that is clicked from a web page. As many as 5 or 10 people might be accessing this spreadsheet at once to update or add info...

Part and Inventory Search

Back
Top