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

C#

 
AnswerRe: xml reading Pin
SeMartens7-Apr-10 21:03
SeMartens7-Apr-10 21:03 
GeneralRe: xml reading Pin
arun_pk8-Apr-10 1:36
arun_pk8-Apr-10 1:36 
AnswerRe: xml reading Pin
Mirko19807-Apr-10 23:23
Mirko19807-Apr-10 23:23 
QuestionCSV files in C# Pin
i gr87-Apr-10 20:11
i gr87-Apr-10 20:11 
AnswerRe: CSV files in C# Pin
SeMartens7-Apr-10 21:05
SeMartens7-Apr-10 21:05 
AnswerRe: CSV files in C# Pin
yujianchi7-Apr-10 23:29
yujianchi7-Apr-10 23:29 
AnswerRe: CSV files in C# Pin
PIEBALDconsult8-Apr-10 3:40
mvePIEBALDconsult8-Apr-10 3:40 
QuestionHow to Find the Control of a window opened in c# Pin
svt gdwl7-Apr-10 18:22
svt gdwl7-Apr-10 18:22 
Hi,
I had window Form application in which some text is entered in TextBox and On a button Click, the text in the textbox should be copied through clipboard and those text has to be pasted on other window which has been opened.
I have copied the text through

if(String.IsEmptyORNull(TextBox1.Text))
string CopiedText = ClipBoard.SetText(TextBox1.Text);

i.e., For example, If I want to paste the copied text in the internet explorer in which http;//www.google.com/ is opened, I have to paste that copied text in the searchbox of google site opened in internet explorer.

I have tried to Find the handle through
IntPtr IEHwnd = FindWindow("IEFrame", Null);

and there after

If(IEHwnd != IntPtr.Zero)
{
MessageBox.Show("Handle Found");
SendMessage(IEHwnd, WM_PASTE,0,0);
}

But This is also doesn't effect?

How to approach?
AnswerRe: How to Find the Control of a window opened in c# Pin
Ravi Bhavnani7-Apr-10 18:51
professionalRavi Bhavnani7-Apr-10 18:51 
QuestionPublic Enum in UserControl is crashing Visual Studio 2008 Pin
Corayzon7-Apr-10 15:08
Corayzon7-Apr-10 15:08 
AnswerRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Dan Mos7-Apr-10 15:32
Dan Mos7-Apr-10 15:32 
GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Corayzon7-Apr-10 15:43
Corayzon7-Apr-10 15:43 
GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
PIEBALDconsult7-Apr-10 17:21
mvePIEBALDconsult7-Apr-10 17:21 
GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Dan Mos7-Apr-10 18:34
Dan Mos7-Apr-10 18:34 
AnswerRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Not Active7-Apr-10 15:32
mentorNot Active7-Apr-10 15:32 
GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Corayzon7-Apr-10 15:47
Corayzon7-Apr-10 15:47 
AnswerRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
DaveyM697-Apr-10 16:03
professionalDaveyM697-Apr-10 16:03 
GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Corayzon7-Apr-10 16:30
Corayzon7-Apr-10 16:30 
GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
DaveyM697-Apr-10 16:34
professionalDaveyM697-Apr-10 16:34 
QuestionMessage Removed Pin
7-Apr-10 15:06
arucied7-Apr-10 15:06 
AnswerRe: How to jion points into a smoothing curve in WPF Pin
AspDotNetDev7-Apr-10 15:55
protectorAspDotNetDev7-Apr-10 15:55 
Questionaccess data base Pin
adrian5647-Apr-10 10:11
adrian5647-Apr-10 10:11 
AnswerRe: access data base Pin
PIEBALDconsult7-Apr-10 10:38
mvePIEBALDconsult7-Apr-10 10:38 
GeneralRe: access data base Pin
adrian5647-Apr-10 11:44
adrian5647-Apr-10 11:44 
GeneralRe: access data base Pin
PIEBALDconsult7-Apr-10 13:25
mvePIEBALDconsult7-Apr-10 13:25 

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.