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 SkipVought 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: monkeymeister
  • Order by date
  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...
  16. monkeymeister

    adding flash rollover buttons

    what is the syntax for adding a rollover button as an image button? I have saved the button as a .swf file and put it as the ImageUrl, but since it isn't an image, do I need to save it as an image in flash rather than a button? Cheers, Mike
  17. monkeymeister

    adding rollover buttons to web pages

    what is the syntax for adding a rollover button as an image button in an .aspx page? I have saved the button as a .swf file and put it as the ImageUrl, but since it isn't an image, do I need to save it as an image in flash rather than a button? Cheers, Mike
  18. monkeymeister

    Photoshop 7 books/resources

    Can anybody recommend some books/websites for Photoshop 7 beginners? Cheers, Mike
  19. monkeymeister

    Microsoft's Singleton Example

    Bernard, So you've given up stand up now then for a career in software development? ;) Mike
  20. monkeymeister

    ordering alphanumeric fields

    SQLDenis, This works unless I am using a UNION in my SQL (which unfortunately I am doing). This is the error I get : ORDER BY items must appear in the select list if the statement contains a UNION operator This is the relevant part of my SELECT: select ISNULL(c.campaignname, 'RAC11')...

Part and Inventory Search

Back
Top