|
|
private int GetChildHandle(int parent, string className)
{
int childafter = FindWindowEx(parent, 0, className, null);
while (childafter != 0 )
{
childafter = FindWindowEx(parent, childafter, className, null);
listBox1.Items.Add(childafter);
}
return childafter;
}
parent takes the hwnd with findwindow()
classname i gave
when i use that functions, it gives the same . It add to listbox only second textbox hwnd, i am going to crayz ???
thanks for everything i have...
|
|
|
|
|
Why are you adding hwnds to the listbox? I thought you wanted to get text from them.
|
|
|
|
|
yes you are right just i wanna see which hwnd i can take just because of this. and always it takes last one hwnd so always takes last one's text
thanks for everything i have...
|
|
|
|
|
You are returning only the last one. Find text for all the hwnds you get by the loop.
|
|
|
|
|
could you help on this? how can i do that?
thanks for everything i have...
|
|
|
|
|
Well, you get text by sending messages to the control identified by the hwnd, don't you? So send those messages to all the childhwnds you get.
|
|
|
|
|
Just throwing my 2 cents in... There is one little problem with using WM_GETTEXT to get the string out of textboxes - reliability.
There is nothing that says that the control has to respond to that message. There are subclassed textbox classes being used that ignore the WM_GETTEXT message, and hence, return nothing. A password textbox sounds like a good candidate for a customized version of a textbox control that ignores the message, doesn't it?
|
|
|
|
|
Hi folks,
Is there any way to display an owned without graying out the title bar of the owner?
|
|
|
|
|
You would have to manipulate aspects of the window with Windows API commands. I do not believe their is an easy way to accomplish this in .NET alone.
Regards,
Thomas Stockwell
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
Visit my Blog
|
|
|
|
|
Thnx 4 da rply. But do u hav any idea of which APIs to call?
modified on Wednesday, October 8, 2008 4:28 AM
|
|
|
|
|
Google[^]
Regards,
Thomas Stockwell
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
Visit my Blog
|
|
|
|
|
Hi!
I'm looking for a free Html Editor control to use in a WinForm application. Anybody can suggest me one?
Therefore, I'm unable to find a free good Grid Control with the same features like Excel.
Thanks in advance for your information.
Mathieu.
|
|
|
|
|
|
Hi there!
I have a rich text box and in the formatting toolbar (that sticks to its upper border) I have a ComboBox that displays the standard Font sizes. Just like it is in MS Word or Excel.
The user after selecting text will click a size. How do I achieve this?
I know how to handle this when the selected text is written in a single font. I put the following code in the SelectedIndexChanged event of the combobox.
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
Font font=new Font(richTextBox1.SelectionFont.FontFamily.ToString(),Convert.ToInt16 (comboBox1.Text),richTextBox1.SelectionFont.Style);
richTextBox1.SelectionFont = font;
}
This works fine when the Selected text consists of only one "rtb.SelectionFont.FontFamily". However, when the user selects a piece of text that consists of more than two font types the rtb.SelectionFont is returning null. And the catch block is catching an ugly NullReferenceException everytime.
I cannot use a font dialogue box or anything that would force me change the UI.
Any suggestion would help.
Best Regards,
Sid
|
|
|
|
|
babai28 wrote: Any suggestion would help.
Suggestions about what? You already seem to know everything there is to know about your situation. Very good job of describing it by the way.
led mike
|
|
|
|
|
"This works fine when the Selected text consists of only one "rtb.SelectionFont.FontFamily". However, when the user selects a piece of text that consists of more than two font types the rtb.SelectionFont is returning null. And the catch block is catching an ugly NullReferenceException everytime.
I cannot use a font dialogue box or anything that would force me change the UI.
Any suggestion would help. "
Hey, I wrote it..Come on Led!!
Best Regards,
Sid
|
|
|
|
|
Hi all,
i found some code retrieve form's caption but i need to get text from a textbox or label on a windows form which i want. how can i do this ? i am really new on api.
thanks...
thanks for everything i have...
|
|
|
|
|
|
thx for your help, but i cant do it Do you have basic example code can retrieve text pls ??
thanks for everything i have...
|
|
|
|
|
You need HWND of the control you want to retrieve text from. Then you need to send WM_GetText message using SendMessage function. I think you have enough keywords now to search on google.
|
|
|
|
|
I am trying to find smt but i think i dont know exactly how to use that i wrote smt like that
public const int WM_GETTEXT = 0X00D;
[DllImport("USER32.DLL", CharSet = CharSet.Auto)]
public static extern int SendMessage(int hWnd, uint msg, int wparam, StringBuilder text);
[DllImport("User32.dll")]
public static extern int FindWindow(String lpClassName, String lpWindowName);
[DllImport("user32.dll")]
private static extern int FindWindowEx(int parentHandle, int childAfter, string className, string windowTitle);
hwnd = FindWindow(null, "Adobe Creative Suite 2 by cvs/SSG");
StringBuilder titletext = new StringBuilder(256);
StringBuilder artisttext = new StringBuilder(256);
StringBuilder timetext = new StringBuilder(256);
StringBuilder totaltimetext = new StringBuilder(256);
hwnd2 = FindWindowEx(hwnd, 0, "obj_BUTTON", "Activation");
hwnd3 = FindWindowEx(hwnd2, 0, "obj_EDIT", null);
MessageBox.Show( SendMessage(hwnd3, WM_GETTEXT, 256, 256).ToString());
i can handle the hwnd that i need in parent then child form. hwnd3 is the textbox's hwnd after that time how can i read what is written in that
thanks for everything i have...
|
|
|
|
|
By the way i found a url that show a code retrieve text
http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/d52b9825-dd13-4fd4-bfa8-722114f2ba44/
thanks for everything i have...
|
|
|
|
|
WM_GETTEXT? Really? How did you deduce that this person is working in native code and not .NET?
led mike
|
|
|
|
|
led mike wrote: How did you deduce that this person is working in native code and not .NET?
Intuition. As you can see from his/her last reply I was correct.
|
|
|
|