Groky
|
Registered User
|
Mainly using WPF these days.
|
|
16h |
comment |
XML vs. SQlite vs. Access Still, I would go for SQLite; been burned too many times with Access. ALthough if it's a small project like you say you may have nothing to lose. If you're going to use the code in a bigger project though I'd suggest the overhead of the repository layer will be worth it. |
|
16h |
comment |
redirecting a webpage from site A to site B without changing url It's naughty but I think i remember back in the day seeing someone using a hidden frame to achieve this? Like I say, naughty, so I'l leave it up to you or someone else to work out how to do that. |
|
16h |
answered | XML vs. SQlite vs. Access |
|
17h |
comment |
WPF and LINQ/SQL - how and where to keep track of changes? Yes, in L2S if you make a change to a property on your model it gets tracked in the DataContext's Updated collection, similarly there are the Inserted and Deleted collections. |
|
1d |
comment |
WPF and LINQ/SQL - how and where to keep track of changes? I'm really struggling on how you'd track changes if you're not using the DataContext to do this. Could you elaborate? |
|
1d |
comment |
Best way to store data locally in .NET (C#) Ouch! I can pretty much guarantee you'd come to regret this decision! Said out of personal experience. |
|
1d |
answered | Inserting a new object into L2S table and databinding to it prior to SubmitChanges() in WPF |
|
1d |
comment |
WPF “Booking chart” Is your "booking" just going to be a block of colour, as in your example? If so, you wouldn't need cell merging; you'd just set each cell's colour. If you wanted text to overlay the colour then that's a different matter. |
|
1d |
accepted | WPF “Booking chart” |
|
1d |
revised |
WPF and LINQ/SQL - how and where to keep track of changes? Made the question a bit more specific and less verbose. |
|
1d |
comment |
WPF “Booking chart” I'm not sure you'd need cell merging for the example you gave though. |
|
1d |
comment |
WPF “Booking chart” Hmm, I'm not sure about cell merging... Might be best to ask a separate question about this. It supports context menus though. |
|
1d |
answered | WPF “Booking chart” |
|
1d |
comment |
WPF - Should a user control be supplied with a ViewModel By the way, thanks for the question - I was asking myself this exact question and answering yours really helped me get my ideas straight in my head :) |
|
1d |
revised |
What class to return from LINQ to SQL classes when using JOIN added 219 characters in body; deleted 1 characters in body |
|
1d |
comment |
What class to return from LINQ to SQL classes when using JOIN If you're just putting the data stright into a grid then an anoymous class would likely be ok: as the grid uses reflection to get the data, it's less important that it has a strongly defined type. However if you're also manipulating the data from code, you'll probably find an explicitly declared class easier to manipulate. |
|
1d |
answered | What class to return from LINQ to SQL classes when using JOIN |
|
1d |
accepted | WPF - Should a user control be supplied with a ViewModel |
|
1d |
answered | WPF - Should a user control be supplied with a ViewModel |
|
1d |
answered | Prevent obsolete properties being added to the designer files |
|
2d |
comment |
How can I make an Image grow in size (give the illusion of selection) through a WPF animation? Regarding your change - I don't think CanterX/Y="0.5" will work - the CenterX/CenterY properties take a pixel value. You need to use RenderTransformOrigin. |
|
2d |
comment |
How can I make an Image grow in size (give the illusion of selection) through a WPF animation? Ah, athough I may be misunderstanding the purpose of your CenterY binding. What is btnKey? |
|
2d |
comment |
How can I make an Image grow in size (give the illusion of selection) through a WPF animation? I added something like this as an afterthought to my answer. Note, you don't need the CenterY="{Binding ElementName=btnKey, Path=ActualHeight}" stuff - you can use RenderTransformOrigin. |
|
2d |
answered | WPF: What is the purpose of having implemented INotifyPropertyChanged on ObservableCollection? |
|
2d |
revised |
How can I make an Image grow in size (give the illusion of selection) through a WPF animation? added 1598 characters in body; added 1 characters in body |
|
2d |
answered | How can I make an Image grow in size (give the illusion of selection) through a WPF animation? |
|
2d |
comment |
What’s the difference between a Resource and an Embedded Resource in a C# application? This diesn't answer the question: what is the difference between an embedded resource and a resource? You answer only addresses Embedded Resources. |
|
2d |
comment |
WPF MVVM: Convention over Configuration for ResourceDictionary ? Excellent! That's cut my App.xaml from a few hundred lines to a few tens :) |
|
Dec 20 |
comment |
Missing features in WPF I've just come across this problem again - it's not that I'm having trouble dropping down a menu when a button is clicked - what I'm really missing is a SplitButton that looks right when dropped on a ToolBar. I've not found anything that works correctly so far. |
|
Dec 19 |
awarded | ● Enlightened |
|
Dec 19 |
awarded | ● Nice Answer |
|
Dec 18 |
comment |
Synchronous vs Asynchronous languages @NSD - what he means is that flex never blocks - all operations that could be blocking on other platforms are implemented asynchonously. |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET I'm not trying to avoid queuing - just saying that I don't think BackgroundWorker would buy me anything, as I need to queue in both scenarios. |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET I do have a windows message loop, but I'd still have to queue my work items etc, so I don't see what I would gain anyway. |
|
Dec 17 |
revised |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET added 5 characters in body |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET @Rageporto: from the msdn docs: " Background threads are identical to foreground threads, except that background threads do not prevent a process from terminating". That is what I want. Are there other side effects? |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET Thanks, and good catch with the error handling! |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET Well, I'm working in WPF, so Dispatcher.BeginInvoke - but interesting idea. I'm not sure how I would go about setting such a thing up though. Could you describe how once would achieve such a thing in an answer? |
|
Dec 17 |
revised |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET added 16 characters in body |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET @Greg D - posting C MSG structures around isn't what I want to be doing in a .NET applications. Or can you pass lambdas to the windows message queue now? ;) |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET I'm using threads because I want the legacy C code to run on a background thread. When I say thread safe I guess I should be using the term re-entrant. Also, I would be interested to hear why I don't appear to be familiar with the concepts of a work or message queue? |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET Thank you Henk. You are the only person who has understood my requirements, and useful advice! |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET @Gred D - serious suggestions please! |
|
Dec 17 |
revised |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET added 11 characters in body |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET Why do I need to lock when acessing m_Terminate? I thought reading/writing a bool would be atomic. |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET No, the threads are calling legacy C code that isn't thread safe. I really wish people would stop asking my if I need something like - YES I DO :) |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET Could you point me to something that already exists Greg? |
|
Dec 17 |
comment |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET That was supposed to read "underscore" and this. |
|
Dec 17 |
revised |
Running Legacy, Non-Reentrant Code on a Background Thread in .NET added 559 characters in body |
|
Dec 17 |
asked | Running Legacy, Non-Reentrant Code on a Background Thread in .NET |
