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: ietprofessional
  • Content: Threads
  • Order by date
  1. ietprofessional

    RegEx Questions

    Hi Everyone, I couldn't find a regex forum so I'm trusting my fellow asp.net-er will have this type of knowledge. I'm trying to validate a date field before I put it into a database. Does anyone have a regex for dates formatted in all of these ways 3/3/2005, 03/3/2005, 3/03/2005 and...
  2. ietprofessional

    How to check to see if a datagrid item has been selected

    How do you check to see if a datagrid item has been selected? I'm creating a editing form where a user will click a update button and if they didn't select a item in the datagrid I want them to receive a message, but I'm not sure how to check and see if a item has been selected in the datagrid...
  3. ietprofessional

    Error When I added message box to my datalist delete button

    Hi Everyone, I have a datalist with an edit and delete button and both of them worked fine, until I wanted to put a message box confirmation for the delete button. Now when I click the Edit button I'm getting this error on the lnkDelete.Attributes.Add... line: Object reference not set to an...
  4. ietprofessional

    Error while trying to get to user control properties

    Hi! Dim i As controlname = New controlname Dim i2 As LinkButton = CType(i.FindControl("lnkServices"), LinkButton) i2.Visible = False I keep getting this error when I try to make a link button invisible that is in a user control: Object reference not set to an instance of an object. Any...
  5. ietprofessional

    DataList - How to start page in edit mode?

    Hello Everyone, I'm using a datalist on a form. I'm comfortable using a datalist as a editing tool, by using the itemtemplate and edittemplate. The user could go to an item click a button (with editcommand) that executes the edit command and the datalist goes to the edittemplate allowing the...
  6. ietprofessional

    Best way of saving radio button value in Database

    Hi Everyone, I have a form that has multiple radio button (yes and no questions). My concern is, what is the best way of saving these values? I'm guessing boolean. I'm wanting to save these values in a database (SQL Server) so that I can retrieve them later on. Just to explain the project...
  7. ietprofessional

    Print Button Inside of IFrame

    HI! Does anyone know how to create a button to print a form inside of an Iframe? I want to create a button that will be clicked inside of an Iframe and only print that portion of the site. Thanks!
  8. ietprofessional

    Delete a row from datagrid without datakeyfield?

    Hi Everyone, I have multiple forms and a datagrid on each one. The last form will take all the data from the previous forms, which I saved in a dataset with multiple datatables, and save it to a database. My problem is I have a form that has 5 fields, none of the fields are required. I save...
  9. ietprofessional

    Looping through a linkbuttons in repeater?

    Hi Everyone, I've created a repeater with linkbuttons that displays a through z. If you click on a link in the repeater a datagrid show only the record accounts that start with that letter. My problem now is I don't want all the links to be enabled if there are only record accounts that start...
  10. ietprofessional

    Problem with DataList font color (fore color)

    Hi Everyone, I'm having an issue with my datalist font color. What I need is alternate fore and back coloring. The back color is working but the font color(forecolor) is not. itemstyle forecolor: black itemstyle backcolor: light blue alternate forecolor: white alternate backcolor: dark blue...
  11. ietprofessional

    Editable Dropdown Question

    Hi Everyone, I've read this article on creating an editable dropdownlist: http://www.codeproject.com/aspnet/combobox.asp#xx1035240xx FYI: I have framework 1.1 and vs.net 2003. I've did everything the article said to do but I keep getting the data without the comboboxes. Here are the steps I...
  12. ietprofessional

    DISTINCT QUERY QUESTION

    Table Data ----------- CompanyName1 - DateEntered John's Furniture - 02/05/05 John's Furniture - 02/02/05 Jack's Furniture - 01/09/05 John's Furniture - 01/03/05 Jack's Furniture - 11/09/04 From this data how could I pull just this Jack's Furniture - 01/09/05 John's Furniture - 02/05/05...
  13. ietprofessional

    For each for a repeater?

    How do you do a "for each" loop for a repeater. Thanks!
  14. ietprofessional

    Can you disable a textbox without greying it out?

    Can you disable a textbox without greying it out? I have a dropdownlist that a user can select and the other textboxes are filled by what item is selected. I don't want them to even try to type into the textboxes so I wanted to disable them (enable=false) but I don't want to grey them out. THANKS!
  15. ietprofessional

    Adding "Select" Text to DropDownList After Dynamically Filled From DB

    Hi Everyone, I've filled a dropdownlist with some values from a db. How do I add a "Select Item" item to the dropdown after filling it from a DB? Thanks!
  16. ietprofessional

    Getting Count of Selected Values in ListBox

    Hi Everyone, Can someone tell me how to get the count of selected values in ListBox? Thanks!
  17. ietprofessional

    Link in IFrame Problem

    I have a link in an iFrame and would like to pull that page --not-- in the iFrame but to a whole new page. How do I do this? THanks!
  18. ietprofessional

    Web Form to PDF Without Crystal Reports

    Has anyone created a fill in the fields form and then transfered the field values over to a pdf without using CR's? Thanks!
  19. ietprofessional

    Web Form to PDF

    Hi Everyone, Can anyone tell me if you can create a web form with fields and a button that will then open a pdf with the field values displayed in the text of the PDF form? If so, can you tell me how you did this? Thanks!
  20. ietprofessional

    TabStrip A though Z

    Hi Everyone, Does anyone have an example of tabstrip code that will allow me to separate my datalist by tabs alphabetically. Thanks! James

Part and Inventory Search

Back
Top