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

C#

 
GeneralRe: C# app using a C++ dll Pin
LCI24-Oct-07 2:59
LCI24-Oct-07 2:59 
QuestionI can't make a music play with WMP in an aspx page. [modified] Pin
whale8423-Oct-07 7:50
whale8423-Oct-07 7:50 
AnswerRe: I can't make a music play with WMP in an aspx page. Pin
Dave Sexton23-Oct-07 12:16
Dave Sexton23-Oct-07 12:16 
Questionsetup in c# with installation folder not in programfiles Pin
sujithkumarsl23-Oct-07 7:21
sujithkumarsl23-Oct-07 7:21 
AnswerRe: setup in c# with installation folder not in programfiles Pin
il_masacratore23-Oct-07 11:15
il_masacratore23-Oct-07 11:15 
QuestionListBox item Flickering Pin
topksharma198223-Oct-07 6:55
topksharma198223-Oct-07 6:55 
AnswerRe: ListBox item Flickering Pin
Luc Pattyn23-Oct-07 12:12
sitebuilderLuc Pattyn23-Oct-07 12:12 
QuestionOnly see "Content Files" not "Primary Output" Pin
ONeil Tomlinson23-Oct-07 5:32
ONeil Tomlinson23-Oct-07 5:32 
AnswerRe: Only see "Content Files" not "Primary Output" Pin
sujithkumarsl23-Oct-07 5:49
sujithkumarsl23-Oct-07 5:49 
GeneralRe: Only see "Content Files" not "Primary Output" Pin
ONeil Tomlinson23-Oct-07 5:52
ONeil Tomlinson23-Oct-07 5:52 
GeneralRe: Only see "Content Files" not "Primary Output" Pin
sujithkumarsl23-Oct-07 6:05
sujithkumarsl23-Oct-07 6:05 
QuestionProbleme mouse event When hosting Win32 in WPF Pin
k_samsamsam_k23-Oct-07 4:04
k_samsamsam_k23-Oct-07 4:04 
AnswerRe: Probleme mouse event When hosting Win32 in WPF Pin
Fred Griggs15-Jun-08 0:50
Fred Griggs15-Jun-08 0:50 
Questionhow to access a ms access database in c# and use the fetched infos Pin
stephan_00723-Oct-07 3:33
stephan_00723-Oct-07 3:33 
AnswerRe: how to access a ms access database in c# and use the fetched infos Pin
pmarfleet23-Oct-07 4:03
pmarfleet23-Oct-07 4:03 
GeneralRe: how to access a ms access database in c# and use the fetched infos Pin
stephan_00723-Oct-07 4:21
stephan_00723-Oct-07 4:21 
GeneralRe: how to access a ms access database in c# and use the fetched infos Pin
pmarfleet23-Oct-07 4:54
pmarfleet23-Oct-07 4:54 
QuestionAccessing control of another form Pin
Rahul Babu23-Oct-07 2:46
Rahul Babu23-Oct-07 2:46 
AnswerRe: Accessing control of another form Pin
J4amieC23-Oct-07 3:01
J4amieC23-Oct-07 3:01 
2 options really.

1) Expose the whole control as a property of form 2.

on form2:
public TextBox TextBox
{
   get{ return this.textBox; }
}


then in form1:

Form2 form2 = new Form2();<br />
form2.TextBox.Text = "Hello World";



2) Expose just that functionality that you need, without exposing the whole control (this way is arguably preferable)

on form2:
public string SomeTextBoxInfo
{
   get{ return this.textBox.Text; }
   set{ this.textBox.Text = value
}


then in form1:

Form2 form2 = new Form2();<br />
form2.SomeTextBoxInfo = "Hello World";



AnswerRe: Accessing control of another form Pin
Martin#23-Oct-07 3:01
Martin#23-Oct-07 3:01 
QuestionInstallation: store Serial Number Pin
JoZ CaVaLLo23-Oct-07 2:08
JoZ CaVaLLo23-Oct-07 2:08 
AnswerRe: Installation: store Serial Number Pin
martin_hughes23-Oct-07 5:28
martin_hughes23-Oct-07 5:28 
GeneralRe: Installation: store Serial Number Pin
JoZ CaVaLLo23-Oct-07 5:41
JoZ CaVaLLo23-Oct-07 5:41 
QuestionConverting Image to Object Pin
sindhutiwari23-Oct-07 1:53
sindhutiwari23-Oct-07 1:53 
AnswerRe: Converting Image to Object Pin
Guffa23-Oct-07 1:56
Guffa23-Oct-07 1:56 

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.