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 monkeymeister

  1. monkeymeister

    .net javascript validation

    I have a method that I use in my C# for Javascript validation (see below). What I want to do is change the alert title, buttons, icon etc. Does anybody know the correct syntax to do this? private void Gen_Alert(string Key, string msg) { string str = ""; str += "<script...
  2. monkeymeister

    URL regex

    Does anybody have a good regualr expresion for validating a web address? Thanks, Mike
  3. monkeymeister

    populating dropdown in datagrid

    I am populating a drop down column in a datagrid on page load. Here is my code : <asp:TemplateColumn> <ItemTemplate> <asp:DropDownList ID="ddlUserName" Font-Name="Verdana" Font-Size="8pt" Runat=server DataValueField="UserName"...
  4. monkeymeister

    multi-column dropdownlist

    Thanks, that was the link I was looking for...I knew I'd seen it somewhere before!
  5. monkeymeister

    multi-column dropdownlist

    Can anybody recommend a free multi-column dropdownlist control? Thanks, Mike
  6. monkeymeister

    rounded table edges

    Thanks Dan, I would've thought that the default for cellpadding and cellspacing would be 0 anyway, that's why I didn't try setting them to 0. Mike
  7. monkeymeister

    rounded table edges

    I still get the same problem. Here is my code : <table width="550" bgcolor="blue" border="0"> <tr> <td width="100"><img src="images/header1.jpg" Width="100" Height="10" style="border:none;"></td> <td width="150"></td> <td width="50"></td> <td width="100"></td> <td...
  8. monkeymeister

    rounded table edges

    I have created 4 images for each corner of my table to make the table look like it has rounded edges. But when I add the images to my HTML I get a border around them. Does anybody know how to get rid of this? Thanks, Mike
  9. monkeymeister

    getting excel worksheet name

    How do get at the name of an Excel worksheet in C#? Any help would be really appreciated. Cheers, Mike
  10. monkeymeister

    radio button list labels

    In a radio button list, how do you remove the labels from the radio buttons? I'm trying to get a list of radio buttons that looks like that on the MSDN site used to rate pages (e.g. Poor [button] [button] [button] Excellent) Cheers, Mike
  11. monkeymeister

    validation controls on a screen with multiple buttons

    I am working on a site that has a number of image buttons as links, and I need to add a page to the project that uses validation controls. Is it possible to do this, since whenever I press any of the image buttons the validation is triggered? Will I have to get rid of the image button links...
  12. monkeymeister

    cut and paste as new image

    Is there a way to cut a part of an image and then paste it as a new image? Cheers, Mike
  13. monkeymeister

    what version number is CS?

    I'm new to Photoshop and I'm using Photoshop 7 at work. What I want to know is, I know Photoshop CS is the latest version, but how old is the version I'm using? Is CS version 8 or 9? Is there a lot of stuff I'm missing by not having CS? Cheers, Mike
  14. monkeymeister

    empty fields

    Doh! Figured it out...should be '' for SQL instead of ""...
  15. monkeymeister

    empty fields

    How do you specify empty fields in an SQL query? For example, I have a lot of fields in a database which aren't null but are just empty. I've tried WHERE FIELD <> "" to remove any records which have an empty field from the query results, but it doesn't work. What is the correct way to do...

Part and Inventory Search

Back
Top