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 Chriss Miller 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 tsp1lrk72

  1. tsp1lrk72

    checkboxlist - gridview

    The first one, chkThursEvents works like I want it to,takes the comma delimited string and updates the table; it's the second one that won't update anything... weird.
  2. tsp1lrk72

    checkboxlist - gridview

    hello, I have a gridview with 2 checkbox lists; I'm editing/updating the database with my new comma delimited string of values. the first part, chkThursEvents, updates with no issues, the second one, chkFridayEvents, does not update at all- not sure what is wrong with the code... help...
  3. tsp1lrk72

    Checkboxlist Formview

    Thanks- most appreciated! :)
  4. tsp1lrk72

    Checkboxlist Formview

    Thanks- not multiple rows, I want to insert the string into one field
  5. tsp1lrk72

    Checkboxlist Formview

    Thanks- I don't want to use Response.Write- I only did that so I could see if my values were there and they are. I just wanted to know how to insert those values (the comma delimited string)into a field in the database.
  6. tsp1lrk72

    Checkboxlist Formview

    Hello- okay I'm trying out the formview... with the checkboxlist control, I can response.write the comma delimited string of values which is fine, how can i insert this to my SQL table? Protected Sub InsertButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Dim FormView...
  7. tsp1lrk72

    gridview/checkbox list

    sorry, not radiobuttonlist, checkboxlist... SORRY
  8. tsp1lrk72

    gridview/checkbox list

    using a detailsview and a radiobutton checklist- trying to loop through checkboxlist and collect the values separating with a comma (I want to add them to one field in a SQL table) Protected Sub HChkEvents_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Dim...
  9. tsp1lrk72

    same file, 2 different sizes when sent

    we just upgraded our office to all Office 2007...
  10. tsp1lrk72

    same file, 2 different sizes when sent

    Yes- same email server...
  11. tsp1lrk72

    same file, 2 different sizes when sent

    Hello, Okay - this is weird, I'm hoping someone can shed some light on this one. Creating an HTML newsletter in Dreamweaver, that's all good. Open it in WORD, choose send to mail recipient, send the file... from my PC to one person- it's 18K - Perfect I do this on another PC, same version of...
  12. tsp1lrk72

    Works in IE, not Firefox - anything obvious here?

    Just using this code to fill in contact info if it's the same to save typing and it works fine in IE but not Firefox... any ideas? <script language="javascript" type="text/javascript"> function fill_contact() { if (frmContact.chbsame.checked == true) { frmContact.vnds_scntct_fnm.value =...
  13. tsp1lrk72

    Need SQL string or SP

    Thanks I'll give it a shot... More of a string building question- I appreciate your assistance-
  14. tsp1lrk72

    Need SQL string or SP

    The results will probably go into a datagrid...if possible
  15. tsp1lrk72

    Need SQL string or SP

    Hello- The following code gives me the data I need, but now I need to get it into my VB.net code- can I call this as a SQL string right in the sub? SELECT SUM(Quantity), CASE Product WHEN 'FIR-UPPERS' THEN 'MBF' WHEN 'Nantucket Beadboard' THEN 'Truckload' WHEN 'Plywood Treads and...

Part and Inventory Search

Back
Top