Paul Betts

8,329
reputation
550 views

Registered User

name Paul Betts
member for 1 year
seen 12 hours ago
website
location US
age 25
SDE at Microsoft working in Windows Serviceability (i.e. Hotfixes and Updates)
21h
comment Cross-compile from (open)Solaris to Windows?
Interesting - I'd heard that this existed, but it was a hacky patchset and wasn't usable. Has this changed?
22h
comment How can C++/CLI make this situation easier?
@David If you've got the library's PDBs, that should be good enough
22h
comment How can C++/CLI make this situation easier?
@Pavel Hmmm, I suppose you may be right, I'm used to seeing those as wchar_t's @David: Now's the time where I would bust out WinDbg - set a breakpoint on the native function and check the structs/params passed into it. Of course, if you don't know WinDbg this might be too tricky :( Attach a native VS debugger perhaps? (i.e. just run the app, then "Attach" from the DLL's VS project)
22h
answered Cross-compile from (open)Solaris to Windows?
22h
comment How can C++/CLI make this situation easier?
(Can't edit this, so adding a new one) - Yeah, your problem is Definitely the marshalling of those strings. You're declaring them as Unicode, so it's 2x the space, so you're overwriting the rest of the structure. 1 Char Unicode = 2 Chars ANSI.
22h
comment How can C++/CLI make this situation easier?
How about CharSet.ASCII?
22h
answered How can C++/CLI make this situation easier?
1d
accepted Operation on different data types
1d
comment how do i make that dang wpf popup go away?
So I'm not saying it's impossible, only that this behavior must be explicitly coded for - try expanding the ComboBox template using Blend
1d
answered Reading .ppt (MS PowerPoint) file in Objective-C
1d
answered how do i make that dang wpf popup go away?
1d
answered Operation on different data types
1d
answered Hot get the name of an object?
Dec
6
awarded  Mortarboard
Dec
5
comment Incrementing an Integer in SQL Server
That's interesting as well, thanks for the tip! In this case though, I want to update the row's container as well (I have a treeish structure in the table), but using a time instead of a revision might be a good idea too
Dec
4
asked Incrementing an Integer in SQL Server
Dec
3
accepted WPF resizing TextBlock
Dec
1
accepted Run a program as a Service?
Nov
29
answered How to read a display name from a DLL?
Nov
29
accepted Stream Audio from Linux Server with Silverlight
Nov
29
answered Stream Audio from Linux Server with Silverlight
Nov
29
answered Run a program as a Service?
Nov
28
comment Shutdown exception handling for Win32/C++
Did this actually work? The dialog he's describing above sounds like a CRT dialog, yet you're using a Win32 API call
Nov
27
answered Hide controls in FlowDocumentReader
Nov
26
comment How to handle this Multithread situation and don’t lock?
Exactly, imagining what a message loop does helps: 1. Reads the dispatcher queue, executes all the items 2. Handles window messages 3. Draws the window 4. Goto #1
Nov
26
accepted How to handle this Multithread situation and don’t lock?
Nov
26
accepted Embedding native win32 resources into .NET assembly?
Nov
25
accepted Thin (ruby) is barfing
Nov
25
comment Thin (ruby) is barfing
That is trickier - maybe try setting "ARCH=x86"? You might have to install it by hand and hack some Rakefiles
Nov
25
comment How to handle this Multithread situation and don’t lock?
Don't "wait", just have the UI do nothing, and have the Timer fire the dispatcher item to finish the rest. You can't block in a UI thread anyways, or else the UI will hang.
Nov
25
answered Thin (ruby) is barfing
Nov
25
answered C++ message passing doubts
Nov
25
answered x86 and x64 stack frames
Nov
25
answered How to handle this Multithread situation and don’t lock?
Nov
25
answered How to access physical memory in linux from userspace ?
Nov
25
answered Bit Shifting, Masking or a Bit Field Struct?
Nov
25
answered MVVM - what is the ideal way for usercontrols to talk to each other
Nov
25
answered Shutdown exception handling for Win32/C++
Nov
25
answered Embedding native win32 resources into .NET assembly?
Nov
25
comment WPF textbox binding issue.
I don't see any question marks in your post. What are you asking?
Nov
25
comment WPF resizing TextBlock
Use Expression Blend "Edit Template", or if you've only got VS, it's at pastie.org/714760
Nov
25
comment Difference between WinMain and wWinMain
Windows NT4 is Unicode by default :)
Nov
25
answered WCF Consumer Website returning The Address property on ChannelFactory.Endpoint was null. The ChannelFactory’s Endpoint must have a valid Address specified.
Nov
25
answered WPF resizing TextBlock
Nov
24
accepted How many threads to create?
Nov
24
answered An idiomatic way of wrapping a possibly-transient object
Nov
24
answered How many threads to create?
Nov
24
answered What does “Unhandled Exception: GLib.GException: Unhandled tag: ‘requires’” mean?
Nov
23
answered Returning an object’s index by dictionary value
Nov
22
answered Prevent Silverlight 3 from caching while debugging