Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在アクティブなウィンドウへの参照を取得したい。たとえば、アプリケーションの上に 1 ウィンドウがある場合、どのウィンドウが現在アクティブであるかをどのように判断できますか?
私は自分で答えを得ました。アクティブなウィンドウを取得するには、次のコードを参照してください。
var activeWindow:NativeWindow = mx.core.Application.application.nativeApplication.activeWindow; var parent:Sprite = (activeWindow.stage.getChildAt(0) as WindowedSystemManager).document as Sprite;
I am migrating an existing .NET 2.0, SQL Server codebase to a .NET 4.0, SQL Server 2008 environment.
The design pattern is that all app calls to the database go th