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

    Moving Outlook Express Files

    I'm changing computers and want to transfer the contents of several Outlook Express folders to the new machine. I'm running XP Professional and Outlook Express. How do I find these folder on the local drive and copy them to my new machine? I read prior postings that indicated that emails were...
  2. TomTT

    iis and network problem

    I've done this before, but can't seem to get it right this time....... I have a new desktop running XP Professional and IIS. The desktop is on a local network with several other computers. From the computer with the IIS,I can browse to the index.htm file in the root directory...
  3. TomTT

    Validator Controls, Client Side?

    aspx validation controls suchs as the required field validator are client side validators, right? That being the case, is aspx generating javascript (jit) on the client side to perform the validation? If it is, then a client with javascript disabled wouldn't execute the validator code? If all...
  4. TomTT

    Catch as Exception error........

    I have a Try --> Catch --> End try block in which I save input data to a database, send an email to the customer then (depending on payment type selected) transfer to PayPal or not. The block works fine and catches errors properly. The problem is that when I do a transfer to PayPal using a...
  5. TomTT

    Accessing DataGrid ItemStyle BackColor Property

    This may be obvious, but it eludes me. I want to capture the row color or alternating row color of a datagrid during the ItemCreated event. The event handler looks like: Sub dgData_ItemCreated(sender As Object, e As DataGridItemEventArgs) If e.Item.ItemType = ListItemType.Item Or...
  6. TomTT

    buttoncolumn itemstyle-cssclass

    I'm trying to use a ButtonColumn in a datagrid and add some style attributes to the buttons. <ASP:ButtonColumn text=&quot;Send Update&quot; Itemstyle-CssClass=&quot;colbutton&quot; ButtonType=&quot;PushButton&quot; CommandName=&quot;DoUpdate&quot; /> I have a CSS style sheet in the...
  7. TomTT

    ASP:Button in DataGrid

    I have a button in one column of the datagrid and it executes the correct sub when clicked. The thing I just can't figure is how to determine what row the button that was clicked is on. The arguments sent to the button's sub look like this: Sub SendUpDate(obj As object, e As EventArgs) I...
  8. TomTT

    Datagrid label events

    I have worked on this for a few days but just can't find a good approach. I have a datagrid with a template item label. I want to be able to click on the label and open a new window that would show some detail regarding the selected record. I though about using a click event, but that is...
  9. TomTT

    DataGrid editmode textbox ID

    I have a datagrid that I populate from a database. I put the grid into edit mode and change the text in one of the textboxes. I click the update link and go to a sub that does a response.write of the datagrid textbox. Dim LName As textbox Dim strTest As string LName =...
  10. TomTT

    MailTo, Supressing Microsoft Popups

    I'm using a straight forward form and the mailto function to send an e-mail. When I click on submit, I get two pop up messages that I have to click &quot;OK&quot; on. Hope I'm not asking the obvious, but is there a way to supress these messages and just send the email? Thanks Tom T
  11. TomTT

    IFrame Not Recognized.....

    I'm trying to set the src for an IFrame in javascript, but keep getting the error 'document.form1.Fram1' is null or not an object. The following code is being used. It works fine for Img tags and images, but blows up when I try to access the IFrame. What am I missing? Any suggestions would be...
  12. TomTT

    Changing text background with javascript...

    This shouldn't be difficult, but I'm having problems after trying styles, class, etc. I have a input type=text and I want to change the background color based on the option button selected by the user. The option button calls a javascript with an if statement. This is, logically where I would...

Part and Inventory Search

Back
Top