Click here to Skip to main content
15,907,326 members
Home / Discussions / C#
   

C#

 
Question[C#] Infix to Postfix calculator Pin
Sottyoru27-Oct-13 5:14
Sottyoru27-Oct-13 5:14 
AnswerRe: [C#] Infix to Postfix calculator Pin
Richard MacCutchan27-Oct-13 6:15
mveRichard MacCutchan27-Oct-13 6:15 
AnswerRe: [C#] Infix to Postfix calculator Pin
codestar00727-Oct-13 23:03
professionalcodestar00727-Oct-13 23:03 
QuestionDll Files in .NET Pin
Amit Saini27-Oct-13 2:30
professionalAmit Saini27-Oct-13 2:30 
AnswerRe: Dll Files in .NET Pin
Abhinav S27-Oct-13 3:34
Abhinav S27-Oct-13 3:34 
GeneralRe: Dll Files in .NET Pin
harold aptroot27-Oct-13 7:21
harold aptroot27-Oct-13 7:21 
GeneralRe: Dll Files in .NET Pin
Mycroft Holmes27-Oct-13 14:19
professionalMycroft Holmes27-Oct-13 14:19 
GeneralRe: Dll Files in .NET Pin
harold aptroot27-Oct-13 20:49
harold aptroot27-Oct-13 20:49 
GeneralRe: Dll Files in .NET Pin
Amit Saini28-Oct-13 4:00
professionalAmit Saini28-Oct-13 4:00 
GeneralRe: Dll Files in .NET Pin
Pete O'Hanlon28-Oct-13 4:18
mvePete O'Hanlon28-Oct-13 4:18 
GeneralRe: Dll Files in .NET Pin
Dave Kreskowiak28-Oct-13 7:05
mveDave Kreskowiak28-Oct-13 7:05 
Questionsedna xml & exist-db sample code? Pin
Moustafa Farhat27-Oct-13 1:56
Moustafa Farhat27-Oct-13 1:56 
AnswerRe: sedna xml & exist-db sample code? Pin
Richard MacCutchan27-Oct-13 2:02
mveRichard MacCutchan27-Oct-13 2:02 
GeneralRe: sedna xml & exist-db sample code? Pin
Moustafa Farhat27-Oct-13 2:13
Moustafa Farhat27-Oct-13 2:13 
GeneralRe: sedna xml & exist-db sample code? Pin
Richard MacCutchan27-Oct-13 2:27
mveRichard MacCutchan27-Oct-13 2:27 
QuestionHow to pass string from C# to PHP web page using PHP nusoap server Pin
Mudassar Tufail26-Oct-13 2:09
Mudassar Tufail26-Oct-13 2:09 
Questionchange from Textbox to datetimepicker Pin
ankisxn25-Oct-13 20:29
ankisxn25-Oct-13 20:29 
AnswerRe: change from Textbox to datetimepicker Pin
Mycroft Holmes25-Oct-13 21:37
professionalMycroft Holmes25-Oct-13 21:37 
GeneralRe: change from Textbox to datetimepicker Pin
OriginalGriff25-Oct-13 21:43
mveOriginalGriff25-Oct-13 21:43 
GeneralRe: change from Textbox to datetimepicker Pin
Mycroft Holmes26-Oct-13 0:43
professionalMycroft Holmes26-Oct-13 0:43 
GeneralRe: change from Textbox to datetimepicker Pin
OriginalGriff26-Oct-13 0:51
mveOriginalGriff26-Oct-13 0:51 
AnswerRe: change from Textbox to datetimepicker Pin
OriginalGriff25-Oct-13 21:41
mveOriginalGriff25-Oct-13 21:41 
QuestionLost Child Handle in DLL Pin
RickiB25-Oct-13 10:42
RickiB25-Oct-13 10:42 
We have a managed C# DLL registered for COM interop. This DLL can be called from either a managed or unmanaged application where the customer can control the size and position of the DLL. In our demo application, we use the following win32 API functions to call the DLL. The problem we're running against is that we're losing mouse functions on toolstrip menu items after clicking in the form, even though the hot keys will still work using the keyboard. All controls work initially until clicking on the title bar (which I omitted) or certain controls on the main form.

[DllImport("user32.dll")]
public static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);

[DllImport("user32.dll", SetLastError = true)]
public static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);

[DllImport("user32.dll", SetLastError = true)]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);

private void btnAdopt_Click(object sender, EventArgs e)
{
hWndDocked = (IntPtr)FindWindow(null, "DLL-Title";);
hWndOriginalParent = SetParent(hWndDocked, this.Handle);
MoveWindow(hWndDocked, 125, 25, iWidth, iHeight, true);
}

Some of the DLL dropdowns we can make work by changing the Parent Handle below in close event:
SetForegroundWindow(Global.ParentHandle);

Hopefully my explanation is clear, but has anyone run across this problem? Is there a better way of setting and controlling the DLL handles without losing certain mouse functionality? How can I make this work or what am I doing wrong?

Thanks in Advance,
Rick
AnswerRe: Lost Child Handle in DLL Pin
Richard MacCutchan25-Oct-13 22:55
mveRichard MacCutchan25-Oct-13 22:55 
GeneralRe: Lost Child Handle in DLL Pin
RickiB28-Oct-13 9:36
RickiB28-Oct-13 9:36 

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.