User Profile

Collapse

Profile Sidebar

Collapse
jcas1411
jcas1411
Last Activity: Mar 13 '08, 03:47 PM
Joined: Mar 13 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • jcas1411
    replied to Get Data from Repeater Control
    in .NET
    Sweet, figured out my own problem after a little sleep. Basically my repeater didn't contain a datarowview object, it contained a UserControl that contained the datarowview object.... so my solution, add a getData() function in my user control and return the object it contains. In the codebehind for the form find user control and assign it to an object...workes and is clean.

    Code:
      Function GetData() As objFilingDetails
    ...
    See more | Go to post

    Leave a comment:


  • jcas1411
    started a topic Get Data from Repeater Control
    in .NET

    Get Data from Repeater Control

    Okay, I have found a suggested C# solution that syntatically ported to VB.NET seemed to look right however getting a Null pointer exception when i try to get data from the control..
    Code:
    Dim details As New objFilingDetails
    Dim item As RepeaterItem
            
    For Each item In Repeater1.Items
            'the repeater contains datarow views, each row 3 textboxes, 1 label
    
           Dim dtrow As Data.DataRowView
    ...
    See more | Go to post

  • jcas1411
    replied to picking subject from mail
    This is what I used in one of my applications... . opens up mail message in outlook with subject and some text.. ASP.NET with VB.NET codebehind maybe it will help

    Code:
    'Open an empty email. Make sure you write "mailto:" before
            'your e-mail address.
    
            Dim processInfo As New System.Diagnostics.ProcessStartInfo()
            processInfo.FileName = "mailto:mooreshovels@utulsa.edu?"
    ...
    See more | Go to post

    Leave a comment:


  • jcas1411
    started a topic Get Data from Repeater Control - ASP.NET - VB.NET
    in .NET

    Get Data from Repeater Control - ASP.NET - VB.NET

    Okay, I have found a suggested C# solution that syntatically ported to VB.NET seemed to look right however getting a Null pointer exception when i try to get data from the control..

    Dim details As New objFilingDetail s
    Dim item As RepeaterItem

    For Each item In Repeater1.Items
    'the repeater contains datarow views, each row 3 textboxes, 1 label

    Dim dtrow As Data.DataRowVie w...
    See more | Go to post
    Last edited by jcas1411; Mar 13 '08, 06:33 AM. Reason: Moved to .NET, sorry
No activity results to display
Show More
Working...