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

C#

 
AnswerRe: Unity connection with a smartwatch and getting heart rate data Pin
Gerry Schmitz1-Dec-20 5:34
mveGerry Schmitz1-Dec-20 5:34 
GeneralRe: Unity connection with a smartwatch and getting heart rate data Pin
OriginalGriff1-Dec-20 9:30
mveOriginalGriff1-Dec-20 9:30 
GeneralRe: Unity connection with a smartwatch and getting heart rate data Pin
Gerry Schmitz1-Dec-20 18:23
mveGerry Schmitz1-Dec-20 18:23 
QuestionDifferences Pin
michaelbarb30-Nov-20 5:53
michaelbarb30-Nov-20 5:53 
AnswerRe: Differences Pin
OriginalGriff30-Nov-20 6:20
mveOriginalGriff30-Nov-20 6:20 
GeneralRe: Differences Pin
michaelbarb30-Nov-20 6:39
michaelbarb30-Nov-20 6:39 
QuestionIs my program idea possible? Pin
Dioxazine27-Nov-20 20:09
Dioxazine27-Nov-20 20:09 
AnswerRe: Is my program idea possible? Pin
OriginalGriff27-Nov-20 20:20
mveOriginalGriff27-Nov-20 20:20 
Yes, it's possible: you do not need to use a OpenFileDialog to access the image, that just provides you with a path to the file.

If you want to load the file from a specific location, then you can just specify that:
C#
byte[] data = File.ReadAllBytes(@"D:\Temp\MyImage.bmp");
MemoryStream ms = new MemoryStream(data);
Image im = Image.FromStream(ms);
Or you can load from the application EXE folder:
C#
byte[] data = File.ReadAllBytes(@".\MyImage.bmp");
MemoryStream ms = new MemoryStream(data);
Image im = Image.FromStream(ms);
This has disadvantages in that you can't modify the image reliably as the folder is likely to be read only in production.
Or you can add the image as a resource and embed it in your application:
C#
Image im = Properties.Resources.MyImage;
And now you can't change the image from run to run of your app at all because it is part of your application EXE file.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!

GeneralRe: Is my program idea possible? Pin
Dioxazine28-Nov-20 5:54
Dioxazine28-Nov-20 5:54 
GeneralRe: Is my program idea possible? Pin
OriginalGriff28-Nov-20 6:17
mveOriginalGriff28-Nov-20 6:17 
GeneralRe: Is my program idea possible? Pin
Dioxazine28-Nov-20 8:09
Dioxazine28-Nov-20 8:09 
GeneralRe: Is my program idea possible? Pin
OriginalGriff28-Nov-20 8:22
mveOriginalGriff28-Nov-20 8:22 
GeneralRe: Is my program idea possible? Pin
Liktor Janos11-Dec-20 7:42
Liktor Janos11-Dec-20 7:42 
GeneralRe: Is my program idea possible? Pin
Gerry Schmitz28-Nov-20 7:51
mveGerry Schmitz28-Nov-20 7:51 
QuestionError in SQL Light Compact 4 Pin
Alex Dunlop23-Nov-20 3:47
Alex Dunlop23-Nov-20 3:47 
AnswerRe: Error in SQL Light Compact 4 Pin
Victor Nijegorodov23-Nov-20 3:56
Victor Nijegorodov23-Nov-20 3:56 
GeneralRe: Error in SQL Light Compact 4 Pin
Alex Dunlop23-Nov-20 4:04
Alex Dunlop23-Nov-20 4:04 
GeneralRe: Error in SQL Light Compact 4 Pin
Richard Deeming23-Nov-20 4:18
mveRichard Deeming23-Nov-20 4:18 
GeneralRe: Error in SQL Light Compact 4 Pin
OriginalGriff23-Nov-20 4:29
mveOriginalGriff23-Nov-20 4:29 
GeneralRe: Error in SQL Light Compact 4 Pin
Alex Dunlop23-Nov-20 7:38
Alex Dunlop23-Nov-20 7:38 
GeneralRe: Error in SQL Light Compact 4 Pin
OriginalGriff23-Nov-20 7:53
mveOriginalGriff23-Nov-20 7:53 
GeneralRe: Error in SQL Light Compact 4 Pin
Alex Dunlop23-Nov-20 8:10
Alex Dunlop23-Nov-20 8:10 
GeneralRe: Error in SQL Light Compact 4 Pin
OriginalGriff23-Nov-20 8:19
mveOriginalGriff23-Nov-20 8:19 
GeneralRe: Error in SQL Light Compact 4 Pin
Alex Dunlop23-Nov-20 8:28
Alex Dunlop23-Nov-20 8:28 
GeneralRe: Error in SQL Light Compact 4 Pin
Richard Deeming23-Nov-20 17:43
mveRichard Deeming23-Nov-20 17:43 

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.