Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7664131
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T14:13:38+00:00 2026-05-31T14:13:38+00:00

im working on a .NET application that would allow me (and subsequent users) to

  • 0

im working on a .NET application that would allow me (and subsequent users) to input audio and picture assets and then organize them on a 2D grid. This was assigned to a 4 person group, of which 2 can program and one (myself) knows C#. None of us have experience making Windows applications and i don’t even know what kind of things to Google that will help me out. I was able to “design” a GUI for it (not too hard with Visual Studio) but i have no idea on how to make it import and display assets nor how to make a 2D grid and be able to assign locations there. Any advice/assistance would be greatly appreciated. Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T14:13:39+00:00Added an answer on May 31, 2026 at 2:13 pm

    Open the tool box and Drag Drop a DataGridView onto your winform.

    Obviously all the Grid Properties are in the proerties dialogue and if you click the little button in the properties window with the “Lightning Bolt” thats how you add Events.

    Then whip up some code to populate the DataGridView, eg (off the top of my head):

    DataTable dt = new DataTable("Name");
    dt.Columns.Add("Audio Asset");
    dt.Columns.Add("Image Asset");
    
    const int audioColIndex = 0;
    const int imageColIndex = 1;
    
    DataRow dr = dt.NewRow();
    dr[audioColIndex] = "A MP3";
    dr[imageColIndex] = "A picture";
    dt.Rows.Add(dr);
    
    dr = dt.NewRow();
    dr[audioColIndex] = "A MP4";
    dr[imageColIndex] = "A image";
    dt.Rows.Add(dr);
    
    DataGridView1.Datasource = dt;
    

    The datatable is just an example to get you going. Better to fetch your data from the database and “bind” your grid to the datasource so that you can unit test your business logic.

    The real solution tho is to buy a winform development book, I’m not being condescending or anything but if you cant get started pick up a book. Programming is a fusion of Art, Math, Science & Technology – its a complex subject that you cant google around for all the answers. You have to invest some time in education.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on a .NET application that displays multiple charts. My users would
I am working on a web application (ASP.NET) game that would consist of a
I have a small VB.NET application that I'm working on using the full version
I am working on localization for a asp.net application that consists of several projects.
I am working on an ASP.NET application that make a lot of jquery and
I just started working on an asp.net / C#.net application that is going to
I am working on an ASP.Net web application that must print dynamically created labels
I am working on an ASP.NET MVC application that contains a header and menu
I am working on an ASP.NET web application that is required to bring up
I'm working on a Windows Forms (.NET 3.5) application that has a built-in exception

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.