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

C#

 
AnswerRe: Straight from CD to mp3 or ogg? Pin
eggie56-Mar-05 15:50
eggie56-Mar-05 15:50 
GeneralRe: Straight from CD to mp3 or ogg? Pin
homerjk7-Mar-05 3:17
homerjk7-Mar-05 3:17 
Generalcontrol camera white c# for proccecing image Pin
mehdipg6-Mar-05 1:36
mehdipg6-Mar-05 1:36 
GeneralRe: control camera white c# for proccecing image Pin
Christian Graus6-Mar-05 13:03
protectorChristian Graus6-Mar-05 13:03 
Generalcontorol camera white c# for proccecing imag Pin
Anonymous6-Mar-05 1:32
Anonymous6-Mar-05 1:32 
QuestionHow to intergrate my project in .NET (help!) Pin
oohungoo6-Mar-05 0:39
oohungoo6-Mar-05 0:39 
QuestionHow can I use files included in my project? Pin
oohungoo6-Mar-05 0:31
oohungoo6-Mar-05 0:31 
AnswerRe: How can I use files included in my project? Pin
mav.northwind6-Mar-05 1:10
mav.northwind6-Mar-05 1:10 
If you set it to be an embedded resource, it's included in your assembly.
You can then, for example, use
Assembly asm = Assembly.GetExecutingAssembly();
Stream str = asm.GetManifestResourceStream("MyNamespace.Readme.txt");
to get a Stream that you can read the embedded resource with.
One important fact is that you have to give the complete name of the embedded resource (including your assembly's namespace) or else it cannot be found and you'll receive null from GetManifestResourceStream().

Regards,
mav
AnswerRe: How can I use files included in my project? Pin
realmontanakid6-Mar-05 1:19
realmontanakid6-Mar-05 1:19 
GeneralRe: How can I use files included in my project? Pin
oohungoo6-Mar-05 4:03
oohungoo6-Mar-05 4:03 
GeneralPrinter Setting In C# Pin
| Muhammad Waqas Butt |5-Mar-05 23:02
professional| Muhammad Waqas Butt |5-Mar-05 23:02 
GeneralDataGrid Column Title Pin
fjlv20055-Mar-05 22:42
fjlv20055-Mar-05 22:42 
GeneralRe: DataGrid Column Title Pin
Kodanda Pani6-Mar-05 16:26
Kodanda Pani6-Mar-05 16:26 
GeneralRe: DataGrid Column Title Pin
Anonymous6-Mar-05 23:00
Anonymous6-Mar-05 23:00 
Questionwnt to palce a button to open command dialog box using c# . ? Pin
chandtec5-Mar-05 20:01
chandtec5-Mar-05 20:01 
AnswerRe: wnt to palce a button to open command dialog box using c# . ? Pin
Anonymous6-Mar-05 3:43
Anonymous6-Mar-05 3:43 
GeneralEnable/Disable Local Area Connection Pin
Radgar5-Mar-05 15:28
Radgar5-Mar-05 15:28 
GeneralRe: Enable/Disable Local Area Connection Pin
Dave Kreskowiak5-Mar-05 17:33
mveDave Kreskowiak5-Mar-05 17:33 
GeneralC# - Double Quotes Pin
econner5-Mar-05 15:22
econner5-Mar-05 15:22 
GeneralRe: C# - Double Quotes Pin
Dave Doknjas5-Mar-05 15:39
Dave Doknjas5-Mar-05 15:39 
GeneralRe: C# - Double Quotes Pin
econner5-Mar-05 15:46
econner5-Mar-05 15:46 
GeneralRe: C# - Double Quotes Pin
econner5-Mar-05 15:54
econner5-Mar-05 15:54 
GeneralTo set a bitmap to full color Pin
Sasuko5-Mar-05 12:40
Sasuko5-Mar-05 12:40 
GeneralRe: To set a bitmap to full color Pin
Mike Dimmick5-Mar-05 12:56
Mike Dimmick5-Mar-05 12:56 
GeneralReturning graphics from user control Pin
Talal Sultan5-Mar-05 10:47
Talal Sultan5-Mar-05 10:47 

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.