windowing

WPF -- List / Detail Different Windows can they be synchronized and databound to the same collection?

I have a listbox that is bound to a List<T> -- this is working great. I'd like to let my users double click a listbox item and open a new window that will display the "detail" view for that record. I'd like this new window to be databound to the same collection as the listbox on the original window. Because, that window has a timer, wh...

Is a control tree cached after the first call to FindWindowEx/EnumChildWindows?

I noticed that if you call FindWindowEx or EnumChildWindows against a hWnd that belongs to a window that's not in the foreground, i.e. minimized, then they don't report any children. On the other hand if I first call SetForegroundWindow against the window I'm querying, and after that FindWindowEx or EnumChildWindows, they report all the ...

iPad "draggable window"

When you load a view on the iPad it tends to fill the whole screen. Is there a way to create a "draggable windowed view" on the iPad? ...

NSOpenGLView drawRect does not get called

Hi, I am currently trying to create a simple cocoa NSWindow programmatically instead of using Interface builder (I have got my reasons to do so). this is a quick test: int main(int argc, char** argv){ NSWindow *mainwin; CocoaGLView *mainview; NSRect scr_frame; unsigned int style_mask; NSAutoreleasePool *po...

multiple count(substring) with windowing psql 8.4.4

I am trying to create the following view, and I get the error below: I am able to do 1 count statement (if I remove the AS "Mod0") Is it possible to count multiple substrings, with the output count to a new column? create view portcnt as select address, datacenter, ifdesc, count(substring(ifdesc, 'Ethernet0/*')) ...

How can I make a window like the Mac OS X dock's stack?

Hello SO'ers I'm looking to create a window object that looks just like the Dock's Stack. (The grey square one, not the leaning list of pisa). Complete with title, transparency, navigation buttons, large icons with subtitles, and pointy-arrow bit on the bottom. The NSPanel "HUD" didn't really fit... I'd like the thing to pop-up when ...