How to create this project [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed yesterday.
Improve this question
How can I create an image gallery in which I can add more than one image, display it, and move between images in C# Windows Form App
How can I create an image gallery in which I can add more than one image, display it, and move between images

Related

I'm working on a project using C#, but when I run the screen there's nothing print on the screen [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
I'm working on a project using C# but I can't print any things in the screen. when i click run enter image description here here's my code
I expected when I click run to print on the screen what I write in the main

Adding and deleting files from my playlist. (WPF) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have tried OpenFileDialog but I just can not do it right. What should be my C# code that would allow me to add and remove files from my playlist?
for your problem in wpf for open file dialog whatch thi link Open file dialog and select a file using WPF controls and C#
and for add and remove items by code watch this link http://www.c-sharpcorner.com/resources/643/how-to-add-and-remove-items-in-a-wpf-listbox.aspx

how to display image filename which is uploaded through fileupload control in asp.net [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have fileupload control to upload image in asp.net.After uploading a file, When i want to see the record I need a image with filename.How i need to get and display in front end.
How about fileUpload1.FileName?
fileUpload1.SaveAs(Server.MapPath("~\\images")+"\\"+fileUpload1.FileName);

How to import images to my application in C#? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am new in C# programming, I just wanted to know how can I import some bitmap images to my form application for future processing and then show it to my image box?
You can add the bitmap image as an embedded resource and access it from code for processing.

Retrieve Image From Program Resources [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am trying to add a image to an image list from a PNG stored in the program resource file. How might I go about doing that at runtime?
Try it like this:
imageList1.Images.Add(Properties.Resources.myImage);

Categories