U
UKUCUK
Hi friends
Currently I'm developing an application in a HP thin client with win ce 6.0.
Data comes from rs232 port, and then I send this data to Internet explorer
as a parameter. But I couldn't find a way to send this data to the same IE
window. I could't find DDE related methods , or a method such as findwindowex
with which I may use clipboard to copy the data into the explorer navigation
box. So, for every data , I open a new internet explorer window. But this is
not a good solution. I use C# in compact framework.
Below is a sample of my code related with this..
private void OpenUrl(string url)
{
ProcessInfo pi = new ProcessInfo();
CreateProcess("explorer.exe", url, IntPtr.Zero, IntPtr.Zero, 0, 0,
IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, pi);
}
Thanks, for your help.
Currently I'm developing an application in a HP thin client with win ce 6.0.
Data comes from rs232 port, and then I send this data to Internet explorer
as a parameter. But I couldn't find a way to send this data to the same IE
window. I could't find DDE related methods , or a method such as findwindowex
with which I may use clipboard to copy the data into the explorer navigation
box. So, for every data , I open a new internet explorer window. But this is
not a good solution. I use C# in compact framework.
Below is a sample of my code related with this..
private void OpenUrl(string url)
{
ProcessInfo pi = new ProcessInfo();
CreateProcess("explorer.exe", url, IntPtr.Zero, IntPtr.Zero, 0, 0,
IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, pi);
}
Thanks, for your help.