Autor Beitrag
foxy
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 814

Ubuntu, Gentoo
C++, PHP, Java, Ruby, Perl (Eclipse)
BeitragVerfasst: Do 25.09.08 08:33 
Hi Leute,
weis einer eine Möglichkeit, die vorhandene Betriebsystem eigene virtuelle Tastatur auf zu rufen ? Natürlich bei dem compact Framework :>

Greetz

_________________
"Only wimps use tape backup: real men just upload their important stuff on ftp, and let the rest of the world mirror it." (Linus Torvalds)
OperatingSystem Laptop (Ubuntu Hardy)
foxy Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 814

Ubuntu, Gentoo
C++, PHP, Java, Ruby, Perl (Eclipse)
BeitragVerfasst: Do 25.09.08 10:00 
Für alle die das interessiert

ausblenden C#-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
using System.Runtime.InteropServices;
public class Board{
  [DllImport("coredll.dll")]
  private static extern int SipShowIM(SIPStatus i);
 
  private enum SIPStatus
  {
    SIPF_OFF =0 ,
    SIPF_ON 
  }

  public static void Show()
  {
    SipShowIM(SIPStatus.SIPF_ON);
  }
  public static void Hide()
  {
    SipShowIM(SIPStatus.SIPF_OFF);
  }
}


Moderiert von user profile iconChristian S.: Code- durch C#-Tags ersetzt

_________________
"Only wimps use tape backup: real men just upload their important stuff on ftp, and let the rest of the world mirror it." (Linus Torvalds)
OperatingSystem Laptop (Ubuntu Hardy)