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 bkrike 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
  • Content: Threads
  • 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

    Can anybody recommend a free multi-column dropdownlist control? Thanks, Mike
  5. 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
  6. 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
  7. 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
  8. 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...
  9. 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
  10. 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
  11. 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...
  12. 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
  13. 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
  14. monkeymeister

    Photoshop 7 books/resources

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

    Photoshop v Fireworks

    I need to learn a graphics package for web development. Can someone tell me what are the advantages of Photoshop v Fireworks? Cheers, Mike
  16. monkeymeister

    fireworks v photoshop

    I need to learn a graphics package for web development. Can someone tell me what are the advantages of Fireworks v Photoshop? Cheers, Mike
  17. monkeymeister

    ordering alphanumeric fields

    How do you get alphanumberic fields to order themselves based on the numeric value? For example, I have a varchar field with values such as RAC1, RAC2, RAC3, RAC10 etc but when I do an order by I always get the order RAC1, RAC10, RAC2 etc. Do I need to cast the field as a numeric value and...
  18. monkeymeister

    execute query timeout

    How do you change the timeout set for queries/stored procedures to execute? It seems to be set to 30 seconds by default and my stored procedure goes slightly over this, causing a timeout error page. Cheers, Mike
  19. monkeymeister

    returning array of values from stored procedure

    Is it possible to return an array of values from a stored procedure? I have a situation where a stored procedure is going to insert any number of records into a table. I need to grab the identity field from each of these added records and insert these into another table. Does anybody know how...
  20. monkeymeister

    exporting excel data to dataset

    How do you go about exporting data in excel to a C# dataset? Any help would be really appreciated. Cheers, Mike

Part and Inventory Search

Back
Top