Search:
Type: Posts; User: PlausiblyDamp
Search:
Search took 0.05 seconds.
-
https://docs.microsoft.com/en-us/sysinternals/downloads/disk2vhd might be useful as well. If the laptop hard drives are already setup correctly that tool can convert the physical hard drive to a...
-
So .Net has the entirety of nuget.org as a major feature, so you can't forsee how powerful .Net is because you can't foresee what other nuget packages will appear. Who is ignorant?
-
If you consider an owner drawn control easier than a few lines of XML to modify the appearance of an existing control then good for you. Your familiarity with VB6 and lack of familiarity with .Net /...
-
This may come as a shock, but an owner drawn control can draw any UI even in WPF! Could you owner draw a control, that looks like a combobox, behaves like a combobox, and actually is exactly a...
-
So show an example of using your component to customise the drop down of a combobox, rather than just putting a grid onto a form. Just a combobox, that when you click on the drop down will display...
-
But you are comparing a 3rd party component, that isn't actually doing the same thing anyway.
The WPF sample showed how to do a simple thing, customise the look of a combobox's drop down - that...
-
Simple concepts...
You say they are different but haven't actually checked to prove this or identify what those differences are. So how do you know they are different? Belief is something for...
-
That is because they are entirely different things, I am guessing mySpread is a spreadsheet component and a ComboBox.ItemTemplate is a way of changing the appearance of a combobox.
Plus the WPF...
-
So two files with the same size are identical? Wow, I should be able to save on disk space by deleting all but one file for each unique file size!
-
Build a version on Windows 10, build a version from the same source on Windows 7 and do a binary file compare. If they come out the same then they are the same, if there are differences then at least...
-
The later versions have improved a lot, the sql generation is certainly better although by no means perfect. The ability to integrate stored procs etc. with EF make a good compromise, use Linq when...
-
It was more off the top of my head assuming I was using Entity Framework - would probably work though if you used VS to generate the context for you.
-
I much prefer the C# syntax as well.
-
Or working with Linq and an ORM it could be as simple as
dim db as new AdventureWorksContext
dim products = (from p in ctx.Products select p).ToList()
dim cheapProducts = (from p in...
-
I can probably manage to do that, although the source file is only a 3 or 4 thousand lines, not really enough for a decent performance comparison.
If we are always going to be aiming for the best...
-
Also if you are holding the data as a collection of objects, the objects can contain functionality above and beyond a simple in memory data store.
-
Unless the performance difference is significant I would go for the easier to read and write option every time. If performance is an issue (proven by benchmarking) then a more performance targeted...
-
My previous reply was before I saw you asking for an example.
Just knocked up a quick one using a file I had on my hard drive from some benchmarks I was running
Imports System
Imports...
-
Or I could use Linq with an in memory database, as part of the built in framework, often with comparable performance.
Linq provides a lot more than just querying databases, the fact you get...
-
The point with Linq is that I can use NoSQL (which has some good use cases), I can use files (when appropriate), databases, webservices, in memory collections, etc. and abstract out the underlying...
-
Also don't forget about the entire Async / Await approach that is built into the compiler / framework now, an absolute game changer compared to handling your own threading etc.
-
I remember reading some comments from a senior MS employee regarding this and apparently the usage of VB.Net with MVC was tiny. It just wasn't worth their dev time to continue supporting it in .Net...
-
VS 2019 handles it really well, when you start typing an identifier it highlights the match in the intellisense but doesn't autocomplete it for you. Once it has highlighted an entry though you can...
-
Don't forget the built in refactoring hints, renaming of identifiers, support for .editorconfig, integrated unit tests, live unit testing, git integration, code lens, and it showing you all errors...
-
Winforms is only going to be supported on Windows, later this year we should get https://devblogs.microsoft.com/dotnet/introducing-net-multi-platform-app-ui/ which will allow for proper multiplatform...
-
Or if you want to really mix things up https://www.peachpie.io/
-
VSCode - https://github.com/microsoft/vscode - core IDE, core language support for VB etc
If I was going cross platform I would probably consider https://github.com/AvaloniaUI/Avalonia rather...
-
https://docs.microsoft.com/en-us/windows/win32/uxguide/ctrl-command-buttons#recommended-sizing-and-spacing
Not sure how useful that is but it is MS' recommendation.
-
Hard to say without knowing exactly what you are meaning, if you are simply talking about using a class to access an array then it is possible that the performance would be very similar. If you are...
-
https://github.com/dotnet - I would say that is pretty "Open".
-
Generalisations are not a good idea, choosing the correct tool for the job is a good idea.
If the overheads for a Collection don't work in specific scenario then don't use them in that scenario....
-
Collections are generally easier than arrays, performance is often comparable unless you are dealing with very large amounts of data. Resizing arrays however can be a lot slower than adding to a list...
-
That isn't what I would call a big disadvantage, I don't think I have ever used a negative index. It isn't exactly difficult to convert a negative index into an offset either.
Then again, if I was...
-
The potential problem then is that in another decade things will have moved on even further, you run the risk of potentially always playing catch-up with whatever is the new requirements.
-
Personally I find so many of the language features of .Net so useful and intuitive these days that I would hate to lose them..
Generics are especially powerful when it comes to writing strongly...
-
If your application is running under IIS then it will be the identity of the App Pool that needs to be given permissions....
-
Which is a shock, these threads trying to develop a new VB6 never normally devolve into petty bickering and everyone having different priorities and ideas that can't be reconciled. :D
-
As a quick experiment.. is it possible to create and instance of ServiceReference1.DataClient and pass in the address of either the ServiceReference2 or ServiceReference3 servers? If so does that...
-
Sockets are a pretty fundamental TCP/IP mechanism, pretty much what underlies any higher level protocol like HTTP. Again, depending on your cloud provider and how you choose to build the server side...
-
Just to make sure I have understood things....
1. You have a local application that is a client to three remote services.
2. These remote services are all different instances of the same service....
|
Click Here to Expand Forum to Full Width
|