Click here to Skip to main content
15,790,135 members
Home / Discussions / C#
   

C#

 
SuggestionRe: want to add a text box on master page Pin
Richard MacCutchan2-Aug-14 3:53
mveRichard MacCutchan2-Aug-14 3:53 
SuggestionRe: want to add a text box on master page Pin
Richard Deeming4-Aug-14 3:19
mveRichard Deeming4-Aug-14 3:19 
AnswerRe: want to add a text box on master page Pin
Sibeesh KV29-Sep-14 20:50
professionalSibeesh KV29-Sep-14 20:50 
QuestionTreeview control with Newick format Pin
Abolfazl Ghavidel1-Aug-14 22:08
Abolfazl Ghavidel1-Aug-14 22:08 
AnswerRe: Treeview control with Newick format Pin
Eddy Vluggen3-Aug-14 2:54
professionalEddy Vluggen3-Aug-14 2:54 
QuestionHow can we create a photo gallery in C# Pin
Member 109104631-Aug-14 8:59
Member 109104631-Aug-14 8:59 
AnswerRe: How can we create a photo gallery in C# Pin
Richard Andrew x641-Aug-14 10:04
professionalRichard Andrew x641-Aug-14 10:04 
AnswerRe: How can we create a photo gallery in C# Pin
wisdom123-Aug-14 2:45
wisdom123-Aug-14 2:45 
Simple, i would create a new image ... (am not sure if the syntax is grammatically correct since i'm not using an ide but the concept is really easy)

something like this:

C#
PictureBox _Add = new PictureBox();....

then load an image from url into the _Add

byte[] imageData = DownloadData(Url); //DownloadData function from here
MemoryStream stream = new MemoryStream(imageData);
Image img = Image.FromStream(stream);
stream.Close();

_Add.Image = img;


//Finally i would have a flow panel filling the form and insert this ..

FlowPanel.Contorls.Add(_Add);

//you can even put this on a for loop to add more images or just create a button.
//instead of downloading the image, i'm sure you can load an image to picturebox from a direct url.

AnswerRe: How can we create a photo gallery in C# Pin
Ravi Bhavnani3-Aug-14 10:06
professionalRavi Bhavnani3-Aug-14 10:06 
QuestionHow can i make a DVR Server ? i want to connect to more than one DVR from the Internet using ASP.NET Website. Pin
Aimanzaki1-Aug-14 6:36
Aimanzaki1-Aug-14 6:36 
AnswerRe: How can i make a DVR Server ? i want to connect to more than one DVR from the Internet using ASP.NET Website. Pin
Richard Andrew x641-Aug-14 7:25
professionalRichard Andrew x641-Aug-14 7:25 
QuestionGet smart card certificates on a Windows Mobile 6 application and Compact Framework Pin
Wakonda30-Jul-14 21:47
Wakonda30-Jul-14 21:47 
AnswerRe: Get smart card certificates on a Windows Mobile 6 application and Compact Framework Pin
Wakonda8-Sep-14 3:48
Wakonda8-Sep-14 3:48 
QuestionHow to compare the next/previous items in List in C# using linq Pin
Member 1098134230-Jul-14 7:02
Member 1098134230-Jul-14 7:02 
AnswerRe: How to compare the next/previous items in List in C# using linq Pin
Richard Deeming30-Jul-14 8:11
mveRichard Deeming30-Jul-14 8:11 
AnswerRe: How to compare the next/previous items in List in C# using linq Pin
Member 109862521-Aug-14 9:26
Member 109862521-Aug-14 9:26 
QuestionExtract text from PDF in C# using Mupdf library Pin
tmiklos6730-Jul-14 2:19
tmiklos6730-Jul-14 2:19 
AnswerRe: Extract text from PDF in C# using Mupdf library Pin
Ravi Bhavnani30-Jul-14 5:31
professionalRavi Bhavnani30-Jul-14 5:31 
GeneralRe: Extract text from PDF in C# using Mupdf library Pin
tmiklos6730-Jul-14 23:32
tmiklos6730-Jul-14 23:32 
QuestionRe: Extract text from PDF in C# using Mupdf library Pin
Richard MacCutchan30-Jul-14 6:14
mveRichard MacCutchan30-Jul-14 6:14 
AnswerRe: Extract text from PDF in C# using Mupdf library Pin
tmiklos6730-Jul-14 23:25
tmiklos6730-Jul-14 23:25 
Questionwant to export to word with text color and logo image in a single doc file through c# windows application Pin
VIVEK KUMAR PAL30-Jul-14 2:14
VIVEK KUMAR PAL30-Jul-14 2:14 
QuestionRe: want to export to word with text color and logo image in a single doc file through c# windows application Pin
ZurdoDev30-Jul-14 3:01
professionalZurdoDev30-Jul-14 3:01 
AnswerRe: want to export to word with text color and logo image in a single doc file through c# windows application Pin
Dave Kreskowiak30-Jul-14 3:55
mveDave Kreskowiak30-Jul-14 3:55 
QuestionMouse event Handling [SOLVED] Pin
V.30-Jul-14 0:18
professionalV.30-Jul-14 0:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.