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 TouchToneTommy 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: *

  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...
  16. tsp1lrk72

    TO field blank

    Hi, I want to send an email to multiple recipients but I don't want them to see each other's email address- I've read about the "Undisclosed Recipient" option but I'd rather leave the "To" field blank- I have seen this before-- how can I get this to work? Outlook 2003... Thanks!
  17. tsp1lrk72

    problem with file download

    I got it-- I forgot to Response.Write the file- Thanks for the tip...
  18. tsp1lrk72

    problem with file download

    Okay, I'll take a look, Thanks for the pointers.
  19. tsp1lrk72

    problem with file download

    Hello- for some reason, my file download is not working correctly- I'm creating folders dynamically on the server based on the ID of the record, that is fine, I have a button with the following code: FuelSurchargeID = Request.QueryString("FuelSurchargeID").ToString Dim root As String...
  20. tsp1lrk72

    Datagrid export to excel: color extends over gridlines

    I got it-- I converted it to hex

Part and Inventory Search

Back
Top