Hos Computerworld it-jobbank er vi stolte af at fortsætte det gode partnerskab med folkene bag IT-DAY – efter vores mening Danmarks bedste karrieremesse for unge og erfarne it-kandidater.
using System; using System.Runtime.InteropServices;
namespace e680746 { class Class1 { [DllImport("user32.dll")] private static extern int FindWindow( string lpClassName, // Window class string lpWindowName // Window text );
[DllImport("user32.dll")] public static extern bool SetWindowPos( int hwnd, // Window handle int hWndInsertAfter, // Placement-order handle int x, // Horizontal position int y, // Vertical position int cx, // Width int cy, // Height uint wFlags // Window positioning flags );
public const int HWND_NOTOPMOST = -0x10; public const int HWND_TOPMOST = -0x1; public const int HWND_TOP = 0x0; public const int HWND_BOTTOM = 0x1;
public const uint SWP_NOSIZE = 0x1; public const uint SWP_NOMOVE = 0x2; public const uint SWP_SHOWWINDOW = 0x40;
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.