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 RTDesi

  1. RTDesi

    Hyperlinks in Tables

    For now, a batch job will be fine. Later on I can figure out how to get it to work on the fly on a per addition basis...but like I said, for right now, ANYTHING that works would be great! Thanks in advance
  2. RTDesi

    Hyperlinks in Tables

    I'm trying to throw some links in tables using the 'hyperlink' datatype...basically, the field is the filename (minus the extension)...For example - the record contains the field with the entry 'file1' ..and the hyperlink would be like : http://www.something.com/science/biology/frogs/file1.pdf...
  3. RTDesi

    Converting Publisher to Powerpoint

    Does anyone know of a way to convert Publisher files to Powerpoint? Also, does anyone know how to convert Word documents to Powerpoint? Thanks in advance, Aarti
  4. RTDesi

    Datagrid : Automatically Resizing Cells

    Basically what I'm trying to do is get the cells to automatically size themselves to fit all the text in a certain record. For example, in one record, a certain field will have a lot of text, but in another record, the same field will have not so much text. So I want the cell that has a lot of...
  5. RTDesi

    Datagrid : Automatically Resizing Cells

    Is there a way to resize cells in a Datagrid on the fly based on how much information is in each field in the database? Basically, I want the words to wrap if they exceed n amount of characters so there is no scrolling w/in the cell. (ie all text is visibe at all times) Any help on this will be...
  6. RTDesi

    Inserting Array Values into dbase

    Thanks mikhailwaxman, you da man.
  7. RTDesi

    Inserting Array Values into dbase

    Basically, I have an array of option buttons (radio buttons) and I want to loop through them to see which one is selected, then insert that value into the database (where the field name is TOPICS) The code is as follows : Dim X For X = 0 To Me.optCategory.Count - 1 Select Case...
  8. RTDesi

    Data Repeater

    I'm currently using a Data Repeater to display information from an access backend. I created an activeX control and made an .ocx file. I connected it to the datarepeater and have all the display areas linked to the corresponding fields in the database table. The problem is, it just keeps...
  9. RTDesi

    DataGrid wordwrap

    Basically, I made the cell a specified width and I wanted the text to wrap if it exceeded the width of the cell. So, 'making the cell big enough' wouldnt be a problem. That's what I"m trying to avoid. I dont want to have to size the cell the fit the text, but rather, have the amount of text...
  10. RTDesi

    DataGrid wordwrap

    Hey, I"m using a datagrid trying to display a table from an access database. Basically, I want to show all the records in the table. Some of the fields are quite lengthy (ie memo datatype). I tried using the 'wrap text' option found in the properties under the layout tab. For some reason...
  11. RTDesi

    Uploading Images along with Form Information

    Also, since your form isn't on the same page, take the 'form.' out of your variables. For example, instead of '#form.colors#','#form.description#', try just #colors#, #description#, etc
  12. RTDesi

    Uploading Images along with Form Information

    Aight, try doing this. First of all in your form tag : <form ENCTYPE=&quot;MULTIPART/FORM-DATA&quot; action=&quot;processinfo.cfm&quot; method=&quot;POST&quot;> And as far as the <cftransaction> tag goes, it looks fine as is. Try fixing that form issue and see if that works.
  13. RTDesi

    Uploading Images along with Form Information

    Yeah, its completely possible. Its pretty easy : <cftransaction> <CFQUERY NAME=&quot;whatever&quot; DATASOURCE=&quot;your_dsn&quot;> <cffile action=&quot;UPLOAD&quot; filefield=&quot;picture&quot; destination=&quot;d:&quot; nameconflict=&quot;MAKEUNIQUE&quot;> INSERT INTO...
  14. RTDesi

    Form Issues

    Thanks, that's an excellent tip...I figured out why it wasnt working..I referenced form in the # tag, but the form was on the previous page...so I jus have it as '#txtName#' now instead of '#Form.txtName#' I appreciate all the help
  15. RTDesi

    Form Issues

    Good lookin out on that, but I dont think it even gets that far b/c the error reads : The error occurred while processing an element with a general identifier of (CFQUERY), occupying document position (8:1) to (8:55). So it doesn't even reach that part...although I did add the quotes...thanks...

Part and Inventory Search

Back
Top