User Profile

Collapse

Profile Sidebar

Collapse
rocksam2003
rocksam2003
Last Activity: Sep 4 '13, 05:07 PM
Joined: Aug 21 '13
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • rocksam2003
    replied to XAML ObjectDataProvider, ObjectType Error
    in XAML
    That actually didn't fix it.

    Thanks, though; you saved me an error later one, I'm sure.
    See more | Go to post

    Leave a comment:


  • rocksam2003
    started a topic XAML ObjectDataProvider, ObjectType Error
    in XAML

    XAML ObjectDataProvider, ObjectType Error

    I'm a trying to instantiate an object (that was created in C#) in XAML using the ObjectDataProvi der. Unfortunately, I'm receiving the following error: "The type reference cannot find a public type named 'TYPENAME'". I have a .cs file of the same name as the the TYPENAME.

    Here's my XAML:
    Code:
    <Window x:Class="PROJECTNAME.PROJECTFILE"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    ...
    See more | Go to post

  • I should stated that this code is in C#. In C#, pointers are only allowed in unsafe mode. I would like to avoid that. Surely, there's a way I can return an array without a pointer in C#?
    See more | Go to post

    Leave a comment:


  • rocksam2003
    started a topic Method returning a two dimensional array

    Method returning a two dimensional array

    I have the following method:

    Code:
    public string[,] StringConvert_tblVFWPost(DataTable dt1)
                {
                    string[,] stringArray = new string[dt1.Rows.Count, dt1.Columns.Count];
    
                    for(int row = 0; row < dt1.Rows.Count; ++row)
                    {
                        for(int col = 0; col < dt1.Columns.Count; col++)
                        {
    ...
    See more | Go to post
No activity results to display
Show More
Working...